docs/content/themes/kita/index.md
+++ title = "Kita" description = "Kita is a clean, elegant and simple blog theme for Zola." template = "theme.html" date = 2025-10-02T20:07:02+08:00
[taxonomies] theme-tags = []
[extra] created = 2025-10-02T20:07:02+08:00 updated = 2025-10-02T20:07:02+08:00 repository = "https://github.com/st1020/kita.git" homepage = "https://github.com/st1020/kita" minimum_version = "0.17.0" license = "MIT" demo = "https://kita-zola.pages.dev"
[extra.author] name = "st1020" homepage = "https://st1020.com" +++
Kita is a clean, elegant and simple blog theme for Zola.
This theme is based on Hugo theme hugo-paper with some features added.
The easiest way to install this theme is to clone this repository in the themes directory:
git clone https://github.com/st1020/kita.git themes/kita
Or to use it as a submodule:
git submodule add https://github.com/st1020/kita.git themes/kita
Then set kita as your theme in config.toml.
theme = "kita"
See the extra section in config.toml as a example.
You can easily use inject to add new features to your side without modifying the theme itself.
To use inject, you need to add some HTML files to the templates/injects directory.
The available inject points are: head, header_nav, body_start, body_end, page_start, page_end, footer, page_info.
For example, to load a custom script, you can add a templates/injects/head.html file:
<script src="js-file-path-or-cdn-url.js"></script>
Copyright (c) 2023-present, st1020