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] 17 18[markdown] 19highlight_code = true 20highlight_theme = "css" 21# TODO: Write custom theme that will fit the overall colouring better 22highlight_themes_css = [ 23 { theme = "nord", filename = "syntax-theme.css" }, 24] 25 26[extra] 27author = "Hauleth" 28for_hire = false 29theme_color = "blue" 30 31logo_text = "~hauleth" 32logo_home_link = "/" 33 34show_author = false 35show_categories = true 36show_tags = true 37 38# set theme to full screen width. 39full_width = false 40 41# center theme with default width. 42center = true 43 44# Set a custom preview image for your website when posted as a link. 45# Must be placed in root of static/ directory... 46# og_preview_img = "" 47 48copyright = "copyright by <a href=\"https://hauleth.dev\" rel=me>hauleth</a>" 49 50# Menu items to display. You define a url and the name of the menu item. 51main_menu = [ 52 {url="https://plan.cat/~hauleth", name=".plan", rel="me"}, 53 # {url="https://twitter.com/hauleth", name="twitter", rel="me"}, 54 {url="https://fosstodon.org/@hauleth", name="toots", rel="me"}, 55 {url="https://github.com/hauleth", name="github", rel="me"}, 56 {url="https://gitlab.com/hauleth", name="gitlab", rel="me"}, 57] 58 59# Displayed after teaser text for a blog post. 60read_more = "read more" 61 62# not currently used from previous theme, but leaving here for now in case I 63# feel like adding it. 64read_other_posts = "read other posts" 65 66favicon = "favicon-32x32.png" 67og_preview_img = "banner.png" 68 69webmention = "https://webmention.io/hauleth.dev/webmention" 70 71[extra.twitter] 72 site = "@hauleth" 73 creator = "@hauleth"