this repo has no description
1base_url = "https://hauleth.dev/" 2default_language = "en" 3 4title = "Hauleth's blog" 5description = "Blog about BEAM, Rust, fantasy & stuff" 6 7compile_sass = true 8 9theme = "zerm" 10 11generate_feed = true 12minify_html = true 13 14taxonomies = [ 15 {name = "tags"}, 16 {name = "categories"}, 17] 18 19[markdown] 20highlight_code = true 21highlight_theme = "css" 22# TODO: Write custom theme that will fit the overall colouring better 23highlight_themes_css = [ 24 { theme = "nord", filename = "syntax-theme.css" }, 25] 26 27[extra] 28author = "Hauleth" 29for_hire = false 30theme_color = "blue" 31 32logo_text = "~hauleth" 33logo_home_link = "/" 34 35show_author = false 36show_categories = true 37show_tags = true 38 39# set theme to full screen width. 40full_width = false 41 42# center theme with default width. 43center = true 44 45# Set a custom preview image for your website when posted as a link. 46# Must be placed in root of static/ directory... 47# og_preview_img = "" 48 49copyright = "copyright by <a href=\"https://hauleth.dev\" rel=me>hauleth</a>" 50 51# Menu items to display. You define a url and the name of the menu item. 52main_menu = [ 53 {url="https://plan.cat/~hauleth", name=".plan", rel="me"}, 54 {url="https://twitter.com/hauleth", name="twitter", rel="me"}, 55 {url="https://fosstodon.org/@hauleth", name="mastodon", rel="me"}, 56 {url="https://github.com/hauleth", name="github", rel="me"}, 57 {url="https://gitlab.com/hauleth", name="gitlab", rel="me"}, 58] 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" 66 67favicon = "favicon-32x32.png" 68og_preview_img = "banner.png" 69 70webmention = "https://webmention.io/hauleth.dev/webmention" 71 72[extra.twitter] 73 site = "@hauleth" 74 creator = "@hauleth"