diff options
author | garhve <git@garhve.com> | 2023-01-02 06:02:01 +0800 |
---|---|---|
committer | garhve <git@garhve.com> | 2023-01-02 06:02:01 +0800 |
commit | be772f40c42711de54a3331db2781b1511acba9d (patch) | |
tree | 0808a7750d3c1055b0e86071c219d872775b1f92 /config.toml | |
parent | 3ae5ecf803ed2d4ece2c9da6d91aae0f075c5b0c (diff) |
change to zola
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..cf2078a --- /dev/null +++ b/config.toml @@ -0,0 +1,79 @@ +# The URL the site will be built for +base_url = "https://blog.garhve.com" + +# Set theme +#theme = "" + +# The site title and description; used in feeds by default. +title = "garhve's gibberish" +description = "a place for me to jibber jabber" + +# The default language; used in feeds. +default_language = "en" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# The taxonomies to be rendered for the site and their configuration. +# Example: +# taxonomies = [ +# {name = "tags", feed = true}, # each tag will have its own feed +# {name = "tags", lang = "fr"}, # you can have taxonomies with the same name in multiple languages +# {name = "categories", paginate_by = 5}, # 5 items per page for a term +# {name = "authors"}, # Basic definition: no feed or pagination +# ] +taxonomies = [ + {name = "categories", rss = false}, + {name = "tags", rss = false}, +] + +# The additional languages for the site. +# Example: +# languages = [ +# {code = "fr", feed = true}, # there will be a feed for French content +# {code = "fr", search = true}, # there will be a Search Index for French content +# {code = "it"}, # there won't be a feed for Italian content +# ] + +[markdown] +# When set to "true", all code blocks are highlighted. +highlight_code = true + +# The theme to use for code highlighting. +# See below for list of allowed values. +highlight_theme = "nord" + +# When set to "true", emoji aliases translated to their corresponding +# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄) +render_emoji = false + +[search] +# Whether to include the title of the page/section in the index +include_title = false +# Whether to include the description of the page/section in the index +include_description = false +# Whether to include the rendered content of the page/section in the index +include_content = false + +[extra] +# Author name, appears in footer. +author = "garhve" + +# Path to the header icon / favicon image. +# Please save image to static/images +icon = "/images/logo.ico" + +favicon = "/images/favicon.png" + +# header icon width. +# height will be automatically rendered. +iconsize = 70 + +# number of posts in index.html. +indexposts = 100 + +# switch to dark-theme +dark_mode = true + +# show theme-toggler +theme_toggler = true |