summaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml79
1 files changed, 0 insertions, 79 deletions
diff --git a/config.toml b/config.toml
deleted file mode 100644
index 07daa7d..0000000
--- a/config.toml
+++ /dev/null
@@ -1,79 +0,0 @@
-# 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.png"
-
-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