this repo has no description
at master 4.2 kB view raw
1# The URL the site will be built for 2base_url = "/" 3 4# Used in RSS by default 5title = "My blog!" 6description = "placeholder description text for your blog!" 7 8# The default language, used in RSS 9# TODO: I would love to support more languages and make this easy to handle 10# with other facets of the theme. 11default_language = "en" 12 13# Whether to generate a RSS feed automatically 14generate_feed = true 15# 'atom.xml' (default if unspecified) and 'rss.xml' are officially supported 16# values for feed_filename in this theme. All other filenames will assume a 17# link type of 'application/rss+xml'. 18# feed_filename = "atom.xml" 19 20# Theme name to use. 21# NOTE: should not need to mess with this if you are using zerm directly, i.e. cloning the 22# repository at root and not using as directed by the Zola docs via themes/ directory. 23# theme = "" 24 25# Whether to automatically compile all Sass files in the sass directory 26compile_sass = true 27 28# Whether to do syntax highlighting 29# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola 30highlight_code = true 31 32# Syntax highlighting theme. See: 33# https://www.getzola.org/documentation/getting-started/configuration/#syntax-highlighting 34# for more information and themes built into Zola. 35highlight_theme = "axar" # Other dark themes that work: "1337", "agola-dark", 36 # "visual-studio-dark" 37 38# Whether to build a search index to be used later on by a JavaScript library 39build_search_index = false 40 41# Built in taxonomies of zerm. 42taxonomies = [ 43 {name = "tags"}, 44 {name = "categories"}, 45] 46 47[extra] 48# Put all your custom variables here 49# 50# Many configurations are taken directly from Terminal's config.toml 51# --------------------------------------------------------- 52 53# Author name to be added to posts, if enabled. 54author = "you!" 55 56# Show author's name in blog post meta data. 57show_author = false 58 59# Show categories a blog post is marked with in its meta data. 60show_categories = true 61 62# Show tags a blog post is marked with in its meta data. 63show_tags = true 64 65# Theme color. You can have any color you want, so long as it's... 66# ["orange", "blue", "red", "green", "pink"] 67theme_color = "orange" 68 69# Custom css to style over the defaults. This is useful when you only have a 70# few small tweaks to make rather than a major rehaul to the theme. 71# It would be best to make this a proper .sass or .scss file in sass/ rather 72# than placing in static/ 73# custom_css = "custom.css" 74 75# How many menu items to show on desktop. if you set this to 0, only submenu 76# button will be visible. 77show_menu_items = 2 78 79# set theme to full screen width. 80full_width = false 81 82# center theme with default width. 83center = false 84 85# set a custom favicon. Must be placed in root of static/ directory... 86# favicon = "" 87 88 89# Set a custom preview image for your website when posted as a link. 90# Must be placed in root of static/ directory... 91# og_preview_img = "" 92 93# Copyright notice if desired. Defaults to 94# copyright = "copyright notice here" 95 96# What is displayed in the top left corner of the website. Default is zerm. 97logo_text = "zerm" 98 99# Link in logo. Default returns you to $BASE_URL. 100logo_home_link = "/" 101 102# Menu items to display. You define a url and the name of the menu item. 103# NOTE: `$BASE_URL/` must be included in the url name. 104main_menu = [ 105 {url="/about/", name="about"}, 106 {url="/contact/", name="contact"}, 107 {url="https://google.com", name="Google", external=true}, 108] 109 110# Displayed as title of drop-down menu when size of main_menu > show_menu_items. 111menu_more = "show more" 112 113# Displayed after teaser text for a blog post. 114read_more = "read more" 115 116# not currently used from previous theme, but leaving here for now in case I 117# feel like adding it. 118read_other_posts = "read other posts" 119 120 121# Enable math typesetting with KaTeX 122# Show math in pages with `math=true` in the TOML frontmatter 123enable_katex = true 124 125# Options for disqus 126disqus = { enabled=false, short_name="" } 127 128# generate Table of Contents for all articles 129# Table of Contents can be generated for individual articles 130# by adding `ToC = true` in [extra] section in frontmatter 131# ToC = true