├── .gitignore ├── images ├── tn.png └── screenshot.png ├── archetypes └── default.md ├── layouts ├── shortcodes │ └── gist.html ├── partials │ ├── author.html │ ├── tail.html │ ├── footer.html │ ├── head.html │ └── header.html ├── _default │ ├── summary.html │ ├── list.html │ ├── terms.html │ └── single.html └── index.html ├── theme.toml ├── LICENSE ├── README.md └── static ├── css ├── liquorice.min.css └── liquorice.css └── libraries └── normalize.3.0.1.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasson/liquorice/HEAD/images/tn.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Description = "" 3 | Tags = [] 4 | Categories = [] 5 | +++ 6 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliasson/liquorice/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /layouts/shortcodes/gist.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/partials/author.html: -------------------------------------------------------------------------------- 1 |
6 | -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- 1 | author = "Markus Eliasson" 2 | description = "Liquorice is a small black and white theme for Hugo." 3 | license = "MIT" 4 | licenselink = "https://github.com/eliasson/liquorice/blob/master/LICENSE" 5 | name = "liquorice" 6 | source_repo = "https://github.com/eliasson/liquorice" 7 | tags = ["", ""] 8 | min_version=0.20 9 | -------------------------------------------------------------------------------- /layouts/partials/tail.html: -------------------------------------------------------------------------------- 1 | 9 | {{ template "_internal/google_analytics.html" . }} 10 |