https://github.com/versbinarii/hermit_zola
Minimal Zola theme for bloggers
https://github.com/versbinarii/hermit_zola
blog-theme theme zola zola-theme
Last synced: about 1 year ago
JSON representation
Minimal Zola theme for bloggers
- Host: GitHub
- URL: https://github.com/versbinarii/hermit_zola
- Owner: VersBinarii
- License: mit
- Created: 2019-08-25T02:23:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-04-06T09:23:45.000Z (over 1 year ago)
- Last Synced: 2025-04-06T10:25:52.520Z (over 1 year ago)
- Topics: blog-theme, theme, zola, zola-theme
- Language: HTML
- Size: 114 KB
- Stars: 75
- Watchers: 2
- Forks: 34
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/VersBinarii/hermit_zola)
# Hermit
> this is a port of the [Hermit theme](https://github.com/Track3/hermit) for [Zola](https://www.getzola.org/)
Hermit is a minimal & fast Zola theme for bloggers.

[View demo](https://versbinarii.gitlab.io/blog/)
## Installation
First download the theme to your `themes` directory:
```bash
$ cd themes
$ git clone https://github.com/VersBinarii/hermit_zola
```
and then enable it in your `config.toml`:
```toml
theme = "hermit_zola"
```
## Configuration
```toml
[extra]
home_subtitle = "Some profound and catchy statement"
footer_copyright = ' · CC BY-NC 4.0'
hermit_menu = [
{ link = "/posts", name = "Posts" },
{ link = "/about", name = "About" }
]
hermit_social = [
{ name = "twitter", link = "https://twitter.com" },
{ name = "github", link = "https://github.com" },
{ name = "email", link = "mailto:author@domain.com" }
]
[extra.highlightjs]
enable = true
clipboard = true
theme = "vs2015"
[extra.disqus]
enable = false
# Take this from your Disqus account
shortname = "my-supa-dupa-blog"
[extra.author]
name = "The Author"
email = "author@domain.com"
[extra.google_analytics]
enable = false
id = "UA-4XXXXXXX-X"
```
### Table of content
Table of content can be enabled by adding
```
+++
[extra]
toc=true
+++
```
to the page front matter. Icon will then appear above the page title that will
allow to toggle the ToC.
## License
[MIT](LICENSE)
Thanks to [Track3](https://github.com/Track3) for creating the original!