d3c3nt

[DORMANT] a fairly decent theme for the zola static site engine
git clone git://git.figbert.com/d3c3nt.git
Log | Files | Refs | README | LICENSE

commit 071c2e37cd61a437afa60c0e5d19c133737d7794
parent c4f22e7985d2301c9c8517711991e3179866d7e8
Author: FIGBERT <figbert@figbert.com>
Date:   Wed, 26 Aug 2020 15:27:57 -0700

:wrench: Add custom zola configuration

Diffstat:
Mconfig.toml | 17++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/config.toml b/config.toml @@ -1,5 +1,13 @@ # The URL the site will be built for -base_url = "https://example.com" +base_url = "https://namal.figbert.com" +title = "Namal by FIGBERT" +description = "A simple, clean, and flexible theme for personal sites." + +# The default language; used in feeds. +default_language = "en" + +# When set to "true", a feed is automatically generated. +generate_feed = true # Whether to automatically compile all Sass files in the sass directory compile_sass = false @@ -7,9 +15,16 @@ compile_sass = false # Whether to do syntax highlighting # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola highlight_code = true +highlight_theme = "two-dark" # Whether to build a search index to be used later on by a JavaScript library build_search_index = false [extra] # Put all your custom variables here +nav = [ + { name = "HOME", path = "/" }, + { name = "POSTS", path = "/posts/" }, + { name = "PROJECTS", path = "/projects/"} +] +