summaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicksphere.ch>2022-04-28 00:00:00 +0000
committerNicholas Johnson <nick@nicksphere.ch>2022-04-29 00:00:00 +0000
commit6727c3087307c00f39f7f618f7fb1a42326595573a57d775c2da2f7ae91a6492 (patch)
tree801524b017861e4ace0cba8b042e58c69fb7ae657ba71fecdddddf471d4d7e41 /config.toml
downloadjournal-6727c3087307c00f39f7f618f7fb1a42326595573a57d775c2da2f7ae91a6492.tar.gz
journal-6727c3087307c00f39f7f618f7fb1a42326595573a57d775c2da2f7ae91a6492.zip
Initial commit
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml62
1 files changed, 62 insertions, 0 deletions
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..cf54528
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,62 @@
+theme = "hugo-theme-nicksphere"
+baseURL = "https://nicksphere.ch"
+title = "Nick's Journal"
+copyright = "CC BY-SA 4.0"
+languageCode = "en-us"
+disablePathToLower = true
+enableRobotsTXT = true
+disableKinds = ['taxonomy', 'term', 'RSS', 'section']
+relativeURLs = true
+rssLimit = 20
+
+[author]
+ name = "Nicholas Johnson"
+ email = "nick@nicksphere.ch"
+
+[params]
+ description = "Online journal about computing, philosophy, spirituality, privacy, and society."
+ keywords = "computing, computers, philosophy, spirituality, privacy, surveillance, mass surveillance, free software, libre software, technology, society, politics, opinion, education, educational, blog, blogging, gemini, geminispace, gemini capsule"
+ logo = " _ _ _\n _ _ (_)__| |__ ____ __| |_ ___ _ _ ___\n| ' \\| / _| / /(_-< '_ \\ ' \\/ -_) '_/ -_)\n|_||_|_\\__|_\\_\\/__/ .__/_||_\\___|_| \\___|\n |_|"
+ indexTitle = "WELCOME TO THE NICKSPHERE!"
+ indexIntro = "Hello and welcome to my journal! Here I write about my own ideas and promote others' ideas. I mostly talk about computing, philosophy, spirituality, privacy, and society but this journal is not limited to those topics."
+ beginCopyrightYear = 2019
+
+[permalinks]
+ post = "/:year/:month/:day/:filename"
+
+[menu]
+ [[menu.main]]
+ name = "About The Nicksphere"
+ url = "/about/"
+ weight = 1
+ [[menu.main]]
+ name = "Promoted Links"
+ url = "/promoted/"
+ weight = 2
+ [[menu.main]]
+ name = "Atom Feed"
+ url = "/atom.xml"
+ weight = 3
+ [[menu.main]]
+ name = "Privacy Notice"
+ url = "/privacy-notice/"
+ weight = 4
+
+[mediaTypes]
+[mediaTypes."application/atom"]
+ suffixes = ["xml"]
+
+[outputFormats.Atom]
+ mediaType = "application/atom"
+ baseName = "atom"
+ isPlainText = false
+
+[markup]
+ [markup.goldmark]
+ [markup.goldmark.renderer]
+ hardWraps = true
+ [markup.goldmark.extensions]
+ linkify = false
+
+[outputs]
+ home = ["HTML", "Atom"]