Minimal Zola theme for bloggers
  • HTML 60.9%
  • SCSS 36.1%
  • JavaScript 3%
Find a file
VersBinarii 94faef2295
Merge pull request #35 from OMGtechy/feature/not-everywhere-is-the-us
Use default_language to select HTML lang attribute value
2025-04-06 11:23:44 +02:00
content Show TOC example 2021-04-03 21:03:50 +02:00
sass Fix code outline 2021-03-21 12:13:37 +01:00
static Initial commit 2019-08-25 14:43:58 +02:00
templates Merge pull request #35 from OMGtechy/feature/not-everywhere-is-the-us 2025-04-06 11:23:44 +02:00
.gitignore .gitignore 2019-08-25 16:17:54 +02:00
.travis.yml Update travis build to latest Zola 2021-03-22 17:18:54 +01:00
_config.yml Set theme jekyll-theme-midnight 2019-09-10 16:07:49 +02:00
config.toml Fix typo in config.toml (#34) 2025-04-06 11:23:13 +02:00
LICENSE Initial commit 2019-08-25 14:43:58 +02:00
README.md Update README.md 2022-04-05 12:22:41 -07:00
screenshot.png rename screenshot 2022-04-04 20:46:01 -07:00
theme.toml Initial commit 2019-08-25 14:43:58 +02:00

Build Status

Hermit

this is a port of the Hermit theme for Zola

Hermit is a minimal & fast Zola theme for bloggers.

screenshot

View demo

Installation

First download the theme to your themes directory:

$ cd themes
$ git clone https://github.com/VersBinarii/hermit_zola

and then enable it in your config.toml:

theme = "hermit_zola"

Configuration

[extra]
home_subtitle = "Some profound and catchy statement"

footer_copyright = ' &#183; <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'

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

Thanks to Track3 for creating the original!