diff --git a/templates/index.html b/templates/index.html index 8db2dc5..086e422 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8,7 +8,6 @@ {% if generate_rss %} {% endif %} - {%- for stylesheet in config.extra.stylesheets %} {%- endfor %} diff --git a/theme.toml b/theme.toml index c8e2f0b..5cf918a 100644 --- a/theme.toml +++ b/theme.toml @@ -12,11 +12,15 @@ demo = "https://thunix.net/~southerntofu/themes/zola/water" # be merged with user data, some kind of prefix or nesting is preferable # Use snake_casing to be consistent with the rest of Zola [extra] +# Base title for pages +title = "water demo" # The default color scheme. Can be either light or dark. # Whichever one you choose, it is overriden if the browser supports it. color = "dark" # A list of additional stylesheets to load from the index template -stylesheets = [] +# By default, some customizations are included as style.css +# Just use stylesheets = [] to remove it entirely. +stylesheets = [ "style.css" ] # Set the max-width for either "main" or "body". Defaults to "main", # switch to "body" for default water.css behavior max_width_for = "main" # Can be either main or body