Minimalistic and Responsive blog theme for hugo. Uses css framework Bulma.
Clone this repository to your hugo theme directory.
mkdir themes
cd themes
git clone https://github.com/natarajmb/charaka-hugo-theme.git
Take a look in the exampleSite folder.
This directory contains an example config file and the content for the demo. It serves as an example setup for your documentation.
Copy the config.toml
in the root directory of your website. Overwrite the existing config file if necessary.
baseurl = "https://example.com"
languageCode = "en"
title = "Charaka"
theme = "charaka-hugo-theme"
copyright = "© <a href=\"https://github.com/natarajmb\">Nataraj Basappa</a> 2025"
disqusShortname = ""
relativeURLs = true
preserveTaxonomyNames = true
[services.googleAnalytics]
ID = ""
[markup.highlight]
codeFences = true
guessSyntax = true
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = false
tabWidth = 4
noClasses = true
style = "vulcan"
[[params.social]]
url = "about.html"
fa_icon = "fas fa-info"
[[params.social]]
url = "https://github.com/natarajmb"
fa_icon = "fab fa-github"
[[params.social]]
url = "https://www.linkedin.com/in/natarajmb/"
fa_icon = "fab fa-linkedin-in"
[[params.social]]
url = "https://twitter.com/natarajmb"
fa_icon = "fab fa-twitter"
Requires Hugo v0.145.0 or higher
hugo server
You can go to localhost:1313 and this theme should be visible.
- Once you have activated the theme as above and running hugo in server mode
- Install npm
- Get inside checked-out theme directory and run
npm install
- Make required changes to style.scss and run
npm run css-build && npm run css-watch
to live update your changes
Charaka is licensed under the MIT License.