https://github.com/noobping/zola-theme
A minimalistic theme for Zola static site generator. It uses the file names as titles and the folder for the menu structure. The theme is designed to be simple and easy to use, with a focus on content.
https://github.com/noobping/zola-theme
pwa pwa-offline zola zola-theme
Last synced: 2 months ago
JSON representation
A minimalistic theme for Zola static site generator. It uses the file names as titles and the folder for the menu structure. The theme is designed to be simple and easy to use, with a focus on content.
- Host: GitHub
- URL: https://github.com/noobping/zola-theme
- Owner: noobping
- License: mit
- Created: 2025-06-14T13:07:39.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-07-29T14:00:56.000Z (2 months ago)
- Last Synced: 2025-07-29T16:07:36.990Z (2 months ago)
- Topics: pwa, pwa-offline, zola, zola-theme
- Language: HTML
- Homepage:
- Size: 46.9 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://opensource.org/licenses/MIT)
# Zola theme
A minimalistic theme for [Zola](https://www.getzola.org/) static site generator. It uses the file names as titles and the folder for the menu structure. The theme is designed to be simple and easy to use, with a focus on content.## Getting started
To use this theme, clone the repository and copy the `theme` folder to your Zola project. Then, update your `config.toml` file to use the new theme:```sh
git submodule add https://github.com/noobping/zola-theme.git themes/noobping
``````toml
theme = "noobping"[extra]
keywords = "key, words, for, your, site"
share = true
webapp = true
theme_color = "#1976D2"
```### Share button
You can enable a share button for your posts by adding the following line to your `config.toml` file:
```toml
share = true
```### Offline support
Set the `webapp` option to `true` in your `config.toml` file to enable offline support for your site. This will generate a service worker that caches your site for offline use.
```toml
webapp = true
```