https://github.com/hulufei/solar-theme-zola
Port of https://github.com/bake/solar-theme-hugo to Zola.
https://github.com/hulufei/solar-theme-zola
theme zola
Last synced: 9 months ago
JSON representation
Port of https://github.com/bake/solar-theme-hugo to Zola.
- Host: GitHub
- URL: https://github.com/hulufei/solar-theme-zola
- Owner: hulufei
- License: gpl-3.0
- Created: 2020-05-18T03:24:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-20T07:48:51.000Z (over 2 years ago)
- Last Synced: 2025-01-13T19:17:21.459Z (10 months ago)
- Topics: theme, zola
- Language: SCSS
- Homepage:
- Size: 98.6 KB
- Stars: 9
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solar Theme for Zola
Port of [Solar theme for Hugo](https://github.com/bake/solar-theme-hugo) to Zola.

## Installation
First download this theme to your `themes` directory:
```bash
$ cd themes
$ git clone https://github.com/hulufei/solar-theme-zola.git
```
and then enable it in your `config.toml`:
```toml
theme = "solar-theme-zola"
```
Add `title` and `description`:
```toml
title = "Your Blog Title"
description = "Your blog description"
```
## Options
### Color schemes
Set color scheme to (Solarized) `dark` or (Solarized) `light` with `highlight_theme` option:
```toml
highlight_theme = "solarized-dark"
```
### Sidebar menu
Set a field in `extra` with a key of `site_menus`:
```toml
site_menus = [
{ url = "https://github.com/hulufei/solar-theme-zola", name = "Repository" },
{ url = "rss.xml", name = "RSS" },
]
```
Each link needs to have a `url` and a `name`.