diff --git a/docs/config.yaml b/docs/config.yaml index f75c107..4abcd3e 100755 --- a/docs/config.yaml +++ b/docs/config.yaml @@ -1,6 +1,7 @@ baseURL: https://backy.cybershell.xyz/ languageCode: en-us title: A tool for commands +ignoreLogs: 'warning-partial-superfluous-prefix' theme: - hugo-theme-relearn - plausible-hugo @@ -13,6 +14,7 @@ module: imports: - path: github.com/divinerites/plausible-hugo - path: github.com/McShelby/hugo-theme-relearn + version: "v8.2.0" params: themeVariant: - auto: [] diff --git a/docs/go.mod b/docs/go.mod index 8b8a95a..18799a6 100755 --- a/docs/go.mod +++ b/docs/go.mod @@ -3,6 +3,6 @@ module git.andrewnw.xyz/CyberShell/backy/docs go 1.19 require ( - github.com/McShelby/hugo-theme-relearn v0.0.0-20250103114405-80e448e5bdaa // indirect - github.com/divinerites/plausible-hugo v1.21.1 // indirect + github.com/McShelby/hugo-theme-relearn v0.0.0-20251115105808-d9ca8e8d8f59 // indirect + github.com/divinerites/plausible-hugo v1.22.0 // indirect ) diff --git a/docs/go.sum b/docs/go.sum index 5c3f12c..173c611 100755 --- a/docs/go.sum +++ b/docs/go.sum @@ -1,10 +1,4 @@ -github.com/McShelby/hugo-theme-relearn v0.0.0-20230209073138-890d12ea922d h1:weq1mrQ/qNAvGrNgvZVL1K8adbT3bswZf2ABLr/LCIA= -github.com/McShelby/hugo-theme-relearn v0.0.0-20230209073138-890d12ea922d/go.mod h1:mKQQdxZNIlLvAj8X3tMq+RzntIJSr9z7XdzuMomt0IM= -github.com/McShelby/hugo-theme-relearn v0.0.0-20241210183303-16d4de84becf h1:bMx4kwM7Q+dAzvSOWs3XWZ25o+n4mI0GPHqzbzeWb3M= -github.com/McShelby/hugo-theme-relearn v0.0.0-20241210183303-16d4de84becf/go.mod h1:mKQQdxZNIlLvAj8X3tMq+RzntIJSr9z7XdzuMomt0IM= -github.com/McShelby/hugo-theme-relearn v0.0.0-20250102210630-dd0597ffa4b2 h1:sWaC1/dL65v3iRvblEAaBLpKC5TIT0R9JASk1hZNET8= -github.com/McShelby/hugo-theme-relearn v0.0.0-20250102210630-dd0597ffa4b2/go.mod h1:mKQQdxZNIlLvAj8X3tMq+RzntIJSr9z7XdzuMomt0IM= -github.com/McShelby/hugo-theme-relearn v0.0.0-20250103114405-80e448e5bdaa h1:G+OnMEzK4XOzbbcf1SmaGyOYJ0h5idp/IJdguWs8ioU= -github.com/McShelby/hugo-theme-relearn v0.0.0-20250103114405-80e448e5bdaa/go.mod h1:mKQQdxZNIlLvAj8X3tMq+RzntIJSr9z7XdzuMomt0IM= -github.com/divinerites/plausible-hugo v1.21.1 h1:ZTWwjhZ0PmLMacCVGlcGiYFEZW7VaYE767tchDskOug= -github.com/divinerites/plausible-hugo v1.21.1/go.mod h1:cxr+YB3FUwbLon8KCs4pV4Ankbkq6lJxTQUpNb5KqPo= +github.com/McShelby/hugo-theme-relearn v0.0.0-20251115105808-d9ca8e8d8f59 h1:mnEjz/Wrpv6Hea26KeFJPx94w9g9ZHIurUEWvPdaEvs= +github.com/McShelby/hugo-theme-relearn v0.0.0-20251115105808-d9ca8e8d8f59/go.mod h1:mKQQdxZNIlLvAj8X3tMq+RzntIJSr9z7XdzuMomt0IM= +github.com/divinerites/plausible-hugo v1.22.0 h1:2pZheSaIMc+EtwcEeZv0ioU2qBOEZa1Ii7IaR/9II9k= +github.com/divinerites/plausible-hugo v1.22.0/go.mod h1:cxr+YB3FUwbLon8KCs4pV4Ankbkq6lJxTQUpNb5KqPo= diff --git a/docs/layouts/_default/baseof.html b/docs/layouts/_default/baseof.html index 9373b58..92e097a 100755 --- a/docs/layouts/_default/baseof.html +++ b/docs/layouts/_default/baseof.html @@ -1,7 +1,7 @@ {{- block "storeOutputFormat" . }}{{ end }} {{- if .IsHome }} - {{- $hugoVersion := "0.126.0" }} + {{- $hugoVersion := "0.141.0" }} {{- if lt hugo.Version $hugoVersion }} {{- errorf "The Relearn theme requires Hugo %s or later" $hugoVersion }} {{- end }} @@ -36,12 +36,12 @@ {{ (printf $link (partial "permalink.gotmpl" (dict "to" .)) .Rel .MediaType.Type ($title | htmlEscape)) | safeHTML }} {{- end }} {{- end }} + {{- partialCached "favicon.html" . }} - {{- partial "stylesheet.html" . }} - {{- partial "dependencies.gotmpl" (dict "page" . "location" "header") }} + {{- partial "dependencies.html" (dict "page" . "location" "header") }} {{- partial "custom-header.html" . }} -
+