# The URL the site will be built for
base_url = "https://blog.craftyguy.net"
title = "craftyguy's blog"
description = "A blog, by none other than craftyguy"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
theme = "terminimal"
taxonomies = [
{name = "tags"},
]
generate_feed = true
feed_filename = "atom.xml"
[markdown]
highlight_code = true
highlight_theme = "gray-matter-dark"
[extra]
########### vars related to terminimal theme ###########
# The logo text - defaults to "Terminimal theme"
logo_text = "craftyguy's blog"
# One of: blue, green, orange, pink, red.
accent_color = "green"
# One of: blue, dark, green, orange, pink, red.
# Enabling dark background will also modify primary font color
# to be darker.
background_color = "dark"
author = "Clayton Craft"
# menu is enabled by adding menu_items (optional)
menu_items = [
# each of these is optional, name and url are required
# $BASE_URL is going to be substituted by base_url from configuration
{name = "home", url = "$BASE_URL"},
{name = "tags", url = "$BASE_URL/tags"},
{name = "archive", url = "$BASE_URL/archive"},
{name = "about me", url = "$BASE_URL/about"},
{name = "feed", url = "$BASE_URL/atom.xml"},
]
favicon = "images/favicon.png"
favicon_mimetype = "image/png"