mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Patrick Kollitsch
15.08.2026 5679ac9090d194fb3f50aa69496d4aecbc66d46d
fix: update documentation site setup and config

Signed-off-by: Patrick Kollitsch <davidsneighbourdev+gh@gmail.com>
14 files deleted
3 files modified
4 files added
1 files renamed
232 ■■■■ changed files
.frontmatter/database/taxonomyDb.json 1 ●●●● patch | view | raw | blame | history
.gitignore 4 ●●● patch | view | raw | blame | history
config/documentation/hugo.toml 6 ●●●●● patch | view | raw | blame | history
config/documentation/languages.toml 4 ●●●● patch | view | raw | blame | history
config/documentation/markup.toml 2 ●●●●● patch | view | raw | blame | history
config/documentation/module.toml 17 ●●●●● patch | view | raw | blame | history
config/documentation/params.toml patch | view | raw | blame | history
package.json 4 ●●●● patch | view | raw | blame | history
site/.frontmatter/database/pinnedItemsDb.json 1 ●●●● patch | view | raw | blame | history
site/.frontmatter/database/taxonomyDb.json 1 ●●●● patch | view | raw | blame | history
site/.gitignore 3 ●●●●● patch | view | raw | blame | history
site/README.md 17 ●●●●● patch | view | raw | blame | history
site/assets/ananke/css/fixes.css 4 ●●●● patch | view | raw | blame | history
site/assets/ananke/css/highlighting.css 72 ●●●●● patch | view | raw | blame | history
site/config/_default/hugo.toml 15 ●●●●● patch | view | raw | blame | history
site/frontmatter.json 12 ●●●●● patch | view | raw | blame | history
site/go.mod 5 ●●●●● patch | view | raw | blame | history
site/go.sum 2 ●●●●● patch | view | raw | blame | history
site/layouts/_shortcodes/page-index.html 19 ●●●●● patch | view | raw | blame | history
site/partials/site-scripts.html 3 ●●●●● patch | view | raw | blame | history
site/static/assets/styles.css 38 ●●●●● patch | view | raw | blame | history
theme.toml 2 ●●● patch | view | raw | blame | history
.frontmatter/database/taxonomyDb.json
File was deleted
.gitignore
@@ -1,3 +1,5 @@
node_modules
public
.wireit
.wireit
.hugo_build.lock
resources/_gen
config/documentation/hugo.toml
New file
@@ -0,0 +1,6 @@
baseURL = "http://localhost/"
languageCode = "en-us"
title = "Ananke Documentation"
contentDir = "../docs"
enableRobotsTXT = true
config/documentation/languages.toml
New file
@@ -0,0 +1,4 @@
[en]
contentDir = 'docs/en'
label = 'English'
weight = 10
config/documentation/markup.toml
New file
@@ -0,0 +1,2 @@
[highlight]
style = 'tokyonight-day'
config/documentation/module.toml
New file
@@ -0,0 +1,17 @@
[hugoVersion]
min = "0.160.0"
# see below
replacements = ["github.com/theNewDynamic/gohugo-theme-ananke/v2 -> ../../"]
[[mounts]]
source = 'node_modules'
target = 'assets'
[[mounts]]
source = 'assets'
target = 'assets'
[[imports]]
# @todo I have the feeling that this is not required when we run the site inside
# of the theme itself. Test and remove if not required.
path = "github.com/theNewDynamic/gohugo-theme-ananke/v2"
config/documentation/params.toml
package.json
@@ -60,7 +60,7 @@
      "command": "commit-and-tag-version --sign -a -t \"v\" --releaseCommitMessageFormat \"chore(release): v{{currentTag}}\" --prerelease prerelease -- --no-verify"
    },
    "server": {
      "command": "cd site && hugo server"
      "command": "hugo server --environment documentation"
    }
  },
  "cspell": {
@@ -72,4 +72,4 @@
      "node_modules"
    ]
  }
}
}
site/.frontmatter/database/pinnedItemsDb.json
File was deleted
site/.frontmatter/database/taxonomyDb.json
File was deleted
site/.gitignore
File was deleted
site/README.md
File was deleted
site/assets/ananke/css/fixes.css
File was deleted
site/assets/ananke/css/highlighting.css
File was deleted
site/config/_default/hugo.toml
File was deleted
site/frontmatter.json
File was deleted
site/go.mod
File was deleted
site/go.sum
File was deleted
site/layouts/_shortcodes/page-index.html
File was deleted
site/partials/site-scripts.html
File was deleted
site/static/assets/styles.css
File was deleted
theme.toml
@@ -6,7 +6,7 @@
demosite = "https://ananke-theme.netlify.app/"
tags = ["website", "starter", "responsive", "Disqus", "blog", "Tachyons", "Multilingual"]
features = ["posts", "shortcodes", "related content", "comments"]
min_version = "0.128.0"
min_version = "0.160.0"
authors = [
  {name = "Patrick Kollitsch", homepage = "https://github.com/davidsneighbour"},