diff options
author | wires <wires@noreply.wires.systems> | 2025-03-06 23:30:44 -0500 |
---|---|---|
committer | wires <wires@noreply.wires.systems> | 2025-03-06 23:30:44 -0500 |
commit | 2b4ca1a88e4df33269e0bd80b4b23ef40d276858 (patch) | |
tree | a8095a18864992d6aec712a02fce1db034b23362 /hugo.toml | |
parent | initial commit (diff) | |
download | blog-2b4ca1a88e4df33269e0bd80b4b23ef40d276858.tar.gz |
first draft of theme
Diffstat (limited to 'hugo.toml')
-rw-r--r-- | hugo.toml | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/hugo.toml b/hugo.toml index 3c4aff7..2199c34 100644 --- a/hugo.toml +++ b/hugo.toml @@ -1,9 +1,13 @@ baseURL = 'https://wires.systems' languageCode = 'en-us' -title = "wires" +title = "~wires" uglyurls = true enableGitInfo = true -disableKinds = ['taxonomy', 'term', 'section'] +disableKinds = ['section', 'taxonomy'] +summaryLength = 10 + +[taxonomies] + tag = 'tags' [markup] highlight.noClasses = false @@ -13,11 +17,10 @@ disableKinds = ['taxonomy', 'term', 'section'] [outputFormats.rss] baseName = 'feed' -[params] - description = "wires within wires, systems within systems" +[[menu.main]] + name = "rss" + url = "/feed.xml" [[menu.main]] name = "git" url = "https://git.wires.systems/wires" - [menu.main.params] - rel = "me" |