diff options
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 59 |
1 files changed, 37 insertions, 22 deletions
diff --git a/config.toml b/config.toml index ca8d27a..840625f 100644 --- a/config.toml +++ b/config.toml @@ -1,34 +1,49 @@ -title = "Zola ʕ•ᴥ•ʔ Bear Blog" -base_url = "https://alanpearce.codeberg.page/zola-bearblog" -description = "" +default_language = "en-GB" +base_url = "https://alanpearce.eu" -# Whether to automatically compile all Sass files in the sass directory -compile_sass = false +# this stops the directory being removed on each build. wat +preserve_dotfiles_in_output = true -# Whether to build a search index to be used later on by a JavaScript library -build_search_index = false +title = "Alan Pearce" +description = "Developer, Emacs User" -taxonomies = [ - {name = "categories", feed = true}, - {name = "tags", feed = true}, -] +generate_feed = true + +theme = "bear" [markdown] -# 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 = "idle" + +[[taxonomies]] +name = "tags" +feed = true [extra] -date_format="%d %b, %Y" +gpg_fingerprint = "48E6 576C 0707 388C B8BE FD0C CD4B EB92 A8D4 6583" +gpg_url = "/public_key.asc" +author_name = "Alan Pearce" +author_image = "/img/me-thumb.jpg" +hide_made_with_line = true +date_format = "%F" [[extra.main_menu]] -name = "Bear" -url = "@/bear.md" - + name = "Posts" + url = "/post/" [[extra.main_menu]] -name = "Zola" -url = "@/zola.md" - + name = "Tags" + url = "/tags/" [[extra.main_menu]] -name = "Blog" -url = "@/blog/_index.md" + name = "Repositories" + url = "https://git.alanpearce.eu" + +[[extra.contact_menu]] + name = "alan@alanpearce.eu" + url = "mailto:alan@alanpearce.eu" + weight = 1 +[[extra.contact_menu]] + name = "Codeberg" + url = "https://codeberg.org/alanpearce" +[[extra.contact_menu]] + name = "GitHub" + url = "https://github.com/alanpearce" |