diff --git a/config.toml b/config.toml index 23f30b8..44d4a16 100644 --- a/config.toml +++ b/config.toml @@ -1,12 +1,33 @@ base_url = "https://tiskifer.dk" +title = "Dan Tiskifer" +description = "Dan Tiskifer writes stories, adventures and settings for tabletop roleplaying games, as well as leads regular rounds. They prefer rules-light systems, like Mothership and Cthulhu Dark." + +generate_feed = true compile_sass = false build_search_index = true +minify_html = true theme = "shadharon" +taxonomies = [ + {name = "tags", feed = true}, +] + [markdown] -# Whether to do syntax highlighting -# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola highlight_code = true [extra] -# Put all your custom variables here +toc = false +use_cdn = false +favicon = "/menu_icon/avatar.png" +headerImage = "/menu_icon/avatar.png" + +menu = [ + { name = "Campaign Log", url = "/tags/campaign", weight = 1, icon = "campaign.png" }, + { name = "Projects", url = "/projects", weight = 1, icon = "projects.png" }, + { name = "About", url = "/about", weight = 2, icon = "avatar.png" }, +] + +socials = [ + { name = "fediverse", url = "https://m.k0r.in/@rpg", icon = "mastodon" }, + { name = "discord", url = "https://discord.gg/fGqa8JCqZM", icon = "discord" }, +] diff --git a/static/avatar.jpg b/static/avatar.jpg new file mode 100644 index 0000000..8905163 Binary files /dev/null and b/static/avatar.jpg differ diff --git a/static/menu_icon/avatar.png b/static/menu_icon/avatar.png new file mode 100644 index 0000000..7ba531f Binary files /dev/null and b/static/menu_icon/avatar.png differ diff --git a/static/menu_icon/campaign.png b/static/menu_icon/campaign.png new file mode 100644 index 0000000..339626a Binary files /dev/null and b/static/menu_icon/campaign.png differ diff --git a/static/menu_icon/projects.png b/static/menu_icon/projects.png new file mode 100644 index 0000000..acc13d7 Binary files /dev/null and b/static/menu_icon/projects.png differ