- Dark, Light Themes.
- Search support.
- Multi-language support.
- PWA support.
- SEO support.
- Table of Contents support.
- Responsive design.
- GTag
- Comments
- Giscus
- Utterances
- Disqus
- Shortcodes
- Mermaid chart
- 4 alert boxes
- 7 badges
- Image Diff
- Youtube
- Asciinema
Make your zola app
zola init yoursite
cd yoursite
Add the theme as a git submodule:
git init # if your project is a git repository already, ignore this command
git submodule add https://github.com/hahwul/goyo themes/goyo
git submodule update --init --recursive
git submodule update --remote --merge
Or clone the theme into your themes directory:
git clone https://github.com/hahwul/goyo themes/goyo
Add extra field in config.toml
logo_text = "Goyo"
logo_image_path = "images/goyo.png"
footer_html = "Powered by <a href='https://www.getzola.org'>Zola</a> and <a href='https://github.com/hahwul/goyo'>Goyo</a>"
default_thumbnail = "images/default_thumbnail.jpg"
twitter_site = "@hahwul"
twitter_creator = "@hahwul"
nav = [
{ name = "Home", url = "/" },
{ name = "GitHub", url = "https://github.com/hahwul/goyo" },
]
zola serve
# and open http://localhost:1111 in your browser.