diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-19 23:35:55 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-19 23:35:55 +0200 |
commit | 978e7fdeccd0ba92948c413099aa0d88f221f6b0 (patch) | |
tree | 53c6ac8d6063c1459aae3e0cbefa1d43eae78b99 /config.toml | |
parent | 8628a4ae2e7c8998c8d2ffe2ecc51f2624aa66b1 (diff) |
Better 404 paging with police door reference + unification of configs.
Changes to be committed:
modified: config.toml
modified: templates/404.html
deleted: themes/404.html
deleted: themes/config.toml
Changes not staged for commit:
modified: themes/emily_zola_theme (modified content)
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/config.toml b/config.toml index b759759..fd62718 100644 --- a/config.toml +++ b/config.toml @@ -1,10 +1,11 @@ # Base URL of the site, the only required config argument -base_url = "https://example.com/blog" +base_url = "https://alphara.art" # Used in RSS by default -title = "Hermit Zola" -description = "My blog" -# The default language, used in RSS +title = "Alphara's Blog" +description = "My blog dedicated to my stuff" + +# The default language, used in RSS and as a fallback value default_language = "en" # Theme name to use @@ -12,7 +13,7 @@ default_language = "en" # Highlight all code blocks found # Or enable the highlight.js in the 'extra' config section -highlight_code = false +highlight_code = true # Which theme to use for the code highlighting. # See below for list of accepted values @@ -38,11 +39,12 @@ taxonomies = [ {name = "tags", rss = true} ] -# Whether to compile the Sass files found in the `sass` directory +# Whether to automatically compile all sass files found in the `sass` directory compile_sass = true # Whether to build a search index out of the pages and section # content for the `default_language` +# or whether to build a search index to be used later on by a JavaScript library build_search_index = false # A list of glob patterns specifying asset files to ignore when @@ -61,6 +63,10 @@ extra_syntaxes = [] # You can put any kind of data in there and it # will be accessible in all templates [extra] +# Put all your custom variables here + +# MathJax rendering support +math = true home_subtitle = "Some profound and catchy statement" @@ -95,9 +101,8 @@ shortname = "my-supa-dupa-blog" # # in the posts front-matter - [extra.author] -name = "The Author" +name = "Iustin Raznic" email = "author@domain.com" [extra.google_analytics] |