129 lines
2.9 KiB
Markdown
129 lines
2.9 KiB
Markdown
|
|
+++
|
|
title = "juice"
|
|
description = "An intuitive, elegant, and lightweight Zola™ theme for product sites."
|
|
template = "theme.html"
|
|
date = 2021-01-09T22:53:10+09:00
|
|
|
|
[extra]
|
|
created = 2021-01-09T22:53:10+09:00
|
|
updated = 2021-01-09T22:53:10+09:00
|
|
repository = "https://github.com/huhu/juice"
|
|
homepage = "https://github.com/huhu/juice"
|
|
minimum_version = "0.11.0"
|
|
license = "MIT"
|
|
demo = "https://juice.huhu.io"
|
|
|
|
[extra.author]
|
|
name = "Huhu teams"
|
|
homepage = "https://huhu.io"
|
|
+++
|
|
|
|
# Juice
|
|
|
|
<img align="right" width="150" height="150" src="/static/juice.svg">
|
|
|
|
**Juice** is an intuitive, elegant, and responsive Zola™ theme for product sites.
|
|
|
|
- Build for product sites
|
|
- Simple and intuitive structure
|
|
- Clean and elegant design
|
|
- Responsive and mobile device compatible
|
|
- Customize and extend friendly
|
|
|
|
https://juice.huhu.io
|
|
|
|
# Installation
|
|
|
|
First download this theme to your `themes` directory:
|
|
|
|
```bash
|
|
$ cd themes
|
|
$ git clone https://github.com/huhu/juice.git
|
|
```
|
|
|
|
or add as a submodule
|
|
```bash
|
|
$ git submodule add https://github.com/huhu/juice themes/juice
|
|
```
|
|
|
|
and then enable it in your `config.toml`:
|
|
|
|
```toml
|
|
theme = "juice"
|
|
```
|
|
|
|
# Structure
|
|
|
|
### Hero
|
|
|
|
**Juice** is designed for product websites, hence we let **hero** part fills whole of screen.
|
|
You can customize your **hero** by using `hero` block in the `index.html`.
|
|
|
|
```html
|
|
{%/* block hero */%}
|
|
<div>
|
|
Your cool hero html...
|
|
</div>
|
|
{%/* endblock hero */%}
|
|
```
|
|
|
|
### Page
|
|
|
|
Every markdown file located in `content` directory will become a **Page**. There also will display as
|
|
a navigate link on the top-right corner.
|
|
You can change the frontmatter's `weight` value to sort the order (ascending order).
|
|
|
|
```
|
|
+++
|
|
title = "Changelog"
|
|
description = "Changelog"
|
|
weight = 3
|
|
+++
|
|
|
|
```
|
|
|
|
### CSS variables
|
|
|
|
You can override theme variable by creating a file named `_variables.html` in your `templates` directory.
|
|
|
|
```html
|
|
<style>
|
|
:root {
|
|
/* Primary theme color */
|
|
--primary-color: #FED43F;
|
|
/* Primary theme text color */
|
|
--primary-text-color: #543631;
|
|
/* Primary theme link color */
|
|
--primary-link-color: #F9BB2D;
|
|
/* Secondary color: the background body color */
|
|
--secondary-color: #fcfaf6;
|
|
--secondary-text-color: #303030;
|
|
/* Highlight text color of table of content */
|
|
--toc-highlight-text-color: #d46e13;
|
|
}
|
|
</style>
|
|
```
|
|
|
|
# Configuration
|
|
|
|
You can customize some builtin property in `config.toml` file:
|
|
|
|
```toml
|
|
[extra]
|
|
juice_logo_name = "Juice"
|
|
juice_logo_path = "juice.svg"
|
|
juice_extra_menu = [
|
|
{ title = "Github", link = "https://github.com/huhu/juice"}
|
|
]
|
|
```
|
|
|
|
# Contributing
|
|
|
|
Thank you very much for considering contributing to this project!
|
|
|
|
We appreciate any form of contribution:
|
|
|
|
- New issues (feature requests, bug reports, questions, ideas, ...)
|
|
- Pull requests (documentation improvements, code improvements, new features, ...)
|
|
|