Skip to content

Instantly share code, notes, and snippets.

@pianomanfrazier
Created May 7, 2019 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pianomanfrazier/9f76f42ee77f544bbb6ddfa11a5ad255 to your computer and use it in GitHub Desktop.
Save pianomanfrazier/9f76f42ee77f544bbb6ddfa11a5ad255 to your computer and use it in GitHub Desktop.
Zola config

+++ paginate_by = 2 sort_by = "date" +++

# The URL the site will be built for
base_url = "https://pianomanfrazier.com"
# Whether to automatically compile all Sass files in the sass directory
# compile_sass = false
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
theme = "even"
taxonomies = [
{name = "tags", rss = false},
{name = "categories", rss = true}
]
[extra]
# Put all your custom variables here
katex_enable = true
katex_auto_render = true
even_title = "Ryan Frazier's Blog"
even_menu = [
{name = "tags", url = "$BASE_URL/tags"},
{name = "archive", url = "$BASE_URL/archive"},
{name = "about", url = "$BASE_URL/about"},
]

+++ title = "My First Post" description = "A first post that is posty" date = 2019-05-04 draft = true template = "page.html"

[taxonomies] tags = ["first", "python"] categories = ["post"] +++

This is my very first post. Here is a link.

A block quote -- Some Dude

import BigLib

print("hello zola!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment