diff options
author | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-11-07 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-11-07 00:00:00 +0000 |
commit | e04c22dbb133e76da41874a8ff93fe7a87e46746bde735b014ef223e68af51c7 (patch) | |
tree | 750c491a3810f0f735fbcaa72c411650ef6857c66ad27228fec168ba63145f64 /config/_default/hugo.toml | |
parent | d3470dad730acbb102b4517903b617f91db72d154454994a4cf38d606736220d (diff) | |
download | journal-e04c22dbb133e76da41874a8ff93fe7a87e46746bde735b014ef223e68af51c7.tar.gz journal-e04c22dbb133e76da41874a8ff93fe7a87e46746bde735b014ef223e68af51c7.zip |
Transition to new config file naming convention
Diffstat (limited to 'config/_default/hugo.toml')
-rw-r--r-- | config/_default/hugo.toml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml new file mode 100644 index 0000000..bdf46e4 --- /dev/null +++ b/config/_default/hugo.toml @@ -0,0 +1,34 @@ +theme = "journal" +baseURL = "https://nicholasjohnson.ch" +title = "Nicholas Johnson" +copyright = "Copyright © 2020-{currentYear} Nicholas Johnson. CC BY-SA 4.0." +languageCode = "en-us" +disablePathToLower = true +rssLimit = 20 +enableEmoji = true +cleanDestinationDir = true +ignoreFiles = ['templates/logo\.txt$'] +disableHugoGeneratorInject = true + +[permalinks] + entry = "/:year/:month/:day/:filename" + +[markup] + _merge = "deep" + +[taxonomies] + tag = "tags" + +[menu] + [[menu.main]] + name = "About Page" + url = "/about/" + weight = 1 + [[menu.main]] + name = "Tags" + url = "/tags/" + weight = 2 + [[menu.main]] + name = "Atom Feed" + url = "/atom.xml" + weight = 3 |