diff --git a/README.md b/README.md index 5f8a9b6..ccabe02 100644 --- a/README.md +++ b/README.md @@ -882,6 +882,9 @@ unified domain, while each pack deploys and previews independently. not already there. The dashboard schema is at `nebari-dev/software-pack-dashboard/schema/pack-metadata.schema.json`. +4. **Set `params.logoLink = "https://packs.nebari.dev/"` in `hugo.toml`** so the header + logo returns to the portal. + ### How it works - **Production:** push to `main` builds Hugo with `baseURL https://packs.nebari.dev//` diff --git a/docs/site/go.mod b/docs/site/go.mod index 8c67866..763145a 100644 --- a/docs/site/go.mod +++ b/docs/site/go.mod @@ -2,4 +2,4 @@ module github.com/nebari-dev/nebari-software-pack-template/docs/site go 1.26.3 -require github.com/nebari-dev/nebari-hugo-theme v0.1.1 // indirect +require github.com/nebari-dev/nebari-hugo-theme v0.2.0 // indirect diff --git a/docs/site/go.sum b/docs/site/go.sum index 40007d8..71cac60 100644 --- a/docs/site/go.sum +++ b/docs/site/go.sum @@ -4,3 +4,5 @@ github.com/nebari-dev/nebari-hugo-theme v0.1.0 h1:xfzAx5ZEjjn5jrxKox8FtmnaDaBGi8 github.com/nebari-dev/nebari-hugo-theme v0.1.0/go.mod h1:N0PJCjHPJ69fOjfhNfaZsXcr+0CryBTJ7xEx7pmARSk= github.com/nebari-dev/nebari-hugo-theme v0.1.1 h1:yhWGv1J1ipsGW9jZRKo/J7cN84neh4w+jIwBe6mAmXc= github.com/nebari-dev/nebari-hugo-theme v0.1.1/go.mod h1:N0PJCjHPJ69fOjfhNfaZsXcr+0CryBTJ7xEx7pmARSk= +github.com/nebari-dev/nebari-hugo-theme v0.2.0 h1:OsqVFwvwhmjJCtLe60OIk4lPZb1OUviHHvb4nozWlxE= +github.com/nebari-dev/nebari-hugo-theme v0.2.0/go.mod h1:N0PJCjHPJ69fOjfhNfaZsXcr+0CryBTJ7xEx7pmARSk= diff --git a/docs/site/hugo.toml b/docs/site/hugo.toml index f6a903d..1bfb9fc 100644 --- a/docs/site/hugo.toml +++ b/docs/site/hugo.toml @@ -3,7 +3,7 @@ languageCode = "en-us" title = "Building a Software Pack" enableGitInfo = true -# Theme imported as a Hugo Module, pinned to a release tag in go.mod (currently v0.1.1). +# Theme imported as a Hugo Module, pinned to a release tag in go.mod (currently v0.2.0). [module] [[module.imports]] path = "github.com/nebari-dev/nebari-hugo-theme" @@ -23,6 +23,7 @@ enableGitInfo = true home = ["HTML", "RSS", "JSON"] [params] + logoLink = "https://packs.nebari.dev/" description = "A deep-dive guide to building, deploying, and maintaining Nebari Software Packs - Kubernetes applications with routing, TLS, and OIDC wired in." repo = "https://github.com/nebari-dev/nebari-software-pack-template" editBase = "https://github.com/nebari-dev/nebari-software-pack-template/edit/main/docs/site/content"