diff options
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] |