diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2025-08-03 21:41:49 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2025-08-03 21:41:49 +0700 |
commit | 049db814eb95b70d59ea28ff82fcdfd50cf8183a (patch) | |
tree | 23c189902c416f4f44899d7fd37333d83459aaa0 /config.toml | |
parent | 3eff2d874bc0dc5fa7544e5889a3325336342653 (diff) | |
download | blog-revamp.tar.gz |
Update post headers revamp
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..f36aa8e --- /dev/null +++ b/config.toml @@ -0,0 +1,75 @@ +baseURL = "https://xrvs.net/" +copyright = "CC-BY-SA 4.0" +defaultContentLanguage = "en" +enableRobotsTXT = true +languageCode = "en-us" +summaryLength = 0 +title = "xarvos' site" + +[taxonomies] +category = 'categories' +tag = 'tags' + +# for software notes +program = 'software-notes' + +# for books +genre = 'genres' + +[[menus.main]] +name = "About" +pageRef = "/about" +weight = 10 + +[[menus.main]] +name = "Articles" +pageRef = "/posts" +weight = 20 + +[[menus.main]] +name = "Calendar" +pageRef = "/cal" +weight = 30 + +[[menus.main]] +name = "RSS" +pageRef = "/about/rss" +weight = 90 + +[markup.goldmark.renderer] +unsafe = true + +[markup.highlight] +noclasses = false + +[params] +author = "Ngô Ngọc Đức Huy" +disableSummary = true +email = "huyngo@disroot.org" +mainSections = [ "posts" ] + + [[params.social]] + id = "pleroma" + name = "@xarvos@outerheaven.club" + url = "https://outerheaven.club/xarvos" + + [[params.social]] + id = "mastodon" + name = "@xarvos@treehouse.systems" + url = "https://social.treehouse.systems/@xarvos" + + [[params.social]] + id = "sourcehut" + name = "~huyngo" + url = "https://sr.ht/~huyngo" + + [[params.social]] + id = "matrix" + name = "@huyngo:envs.net" + url = "matrix:u/huyngo:envs.net" + + [[params.social]] + id = "email" + name = "huyngo@disroot.org" + url = "mailto:huyngo@disroot.org" + |