diff options
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 63 |
1 files changed, 40 insertions, 23 deletions
diff --git a/config.toml b/config.toml index 78e9f9a..55e8931 100644 --- a/config.toml +++ b/config.toml @@ -1,35 +1,52 @@ -title = "Zola ʕ•ᴥ•ʔ Bear Blog" -base_url = "https://zola-bearblog.netlify.app/" -description = "A Zola-theme based on Bear Blog." +default_language = "en-GB" +base_url = "https://alanpearce.eu" -# Whether to automatically compile all Sass files in the sass directory -compile_sass = false +title = "Alan Pearce" +description = "Developer, Emacs User" -# Whether to build a search index to be used later on by a JavaScript library -build_search_index = false +generate_feed = true -taxonomies = [ - {name = "categories", feed = true}, - {name = "tags", 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" -webserver_sends_csp_headers=true +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" +[[extra.contact_menu]] + name = "Mastodon" + url = "https://ieji.de/@alanpearce" +[[extra.contact_menu]] + name = "Bluesky" + url = "https://bsky.app/profile/alanpearce.eu" |