From 92e3b5f49f6f5336530988e7839ab3ed283b86e4 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 19 Mar 2023 00:53:31 +0100 Subject: Big site update --- config.toml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 60 insertions(+), 4 deletions(-) (limited to 'config.toml') diff --git a/config.toml b/config.toml index b89e674..388e05b 100644 --- a/config.toml +++ b/config.toml @@ -1,7 +1,63 @@ -baseURL = "https://blog.jaseg.de/" +baseURL = "http://jaseg.de/" languageCode = "en-us" -title = "blog.jaseg.de" -theme = "blog.jaseg.de" +title = "Home" +copyright = "Jan Sebastian Götte" +theme = "conspiracy" + +[taxonomies] +category = "Categories" +blog = "Posts" + +[[menu.main]] +name = "Home" +url = "/" +weight = 1 + +[[menu.main]] +name = "Blog" +url = "/blog/" +weight = 2 + +[[menu.main]] +name = "Projects" +url = "/projects/" +weight = 3 + +[[menu.main]] +name = "About" +url = "/about/" +weight = 4 + +[[params.profile_links]] +name = "cgit" +url = "https://git.jaseg.de/" +weight = 1 + +[[params.profile_links]] +name = "Github" +url = "https://github.com/jaseg" +weight = 2 + +[[params.profile_links]] +name = "Gitlab" +url = "https://gitlab.com/neinseg" +weight = 3 + +[[params.profile_links]] +name = "Mastodon" +url = "https://chaos.social/jaseg" +weight = 4 + +[[params.footer_links]] +name = "About" +url = "/about/" +weight = 1 + +[[params.footer_links]] +name = "Imprint" +url = "/imprint/" +weight = 2 + [security.exec] - allow = ['^rst2html$', '^go$', '^npx$', '^postcss$', '^pandoc$'] +allow = ["^dart-sass-embedded$", "^go$", "^npx$", "^postcss$", "^rst2html$"] -- cgit