this repo has no description
1base_url = "/" 2default_language = "en" 3 4title = "Hauleth's blog" 5description = "Blog about BEAM, Rust, fantasy & stuff" 6 7compile_sass = true 8 9theme = "zerm" 10 11highlight_code = true 12highlight_theme = "nord" 13generate_feed = true 14 15taxonomies = [ 16 {name = "tags"}, 17 {name = "categories"}, 18] 19 20[extra] 21author = "Łukasz Niemier" 22theme_color = "blue" 23 24logo_text = "~hauleth" 25logo_home_link = "/" 26 27show_author = false 28show_categories = true 29show_tags = true 30 31# How many menu items to show on desktop. if you set this to 0, only submenu 32# button will be visible. 33show_menu_items = 10 34 35# set theme to full screen width. 36full_width = false 37 38# center theme with default width. 39center = true 40 41# Set a custom preview image for your website when posted as a link. 42# Must be placed in root of static/ directory... 43# og_preview_img = "" 44 45# Copyright notice if desired. Defaults to 46# copyright = "copyright notice here" 47 48# Menu items to display. You define a url and the name of the menu item. 49# NOTE: `$BASE_URL/` must be included in the url name. 50main_menu = [ 51 {url="/about/", name="about"}, 52 {url="https://twitter.com/hauleth", name="twitter"}, 53 {url="https://github.com/hauleth", name="github"}, 54 {url="https://gitlab.com/hauleth", name="gitlab"}, 55] 56 57# Displayed as title of drop-down menu when size of main_menu > show_menu_items. 58menu_more = "show more" 59 60# Displayed after teaser text for a blog post. 61read_more = "read more" 62 63# not currently used from previous theme, but leaving here for now in case I 64# feel like adding it. 65read_other_posts = "read other posts"