Fix links by using Hugo modules tag
The link is broken as the config.toml is not using module.mounts. To fix this need to add [module] section to point to the deploy/ folder as the README.md files are inside that folder Put the different directory as separate module.mount and upgrade hugo version to 0.59.0pull/5702/head
parent
989dc02ec3
commit
bd3956b8a6
|
@ -0,0 +1,5 @@
|
|||
{{ define "main" }}
|
||||
<div style="padding-top:20px">
|
||||
{{ .Render "content" }}
|
||||
</div>
|
||||
{{ end }}
|
|
@ -0,0 +1,5 @@
|
|||
{{ define "main" }}
|
||||
<div style="padding-top:20px">
|
||||
{{ .Render "content" }}
|
||||
</div>
|
||||
{{ end }}
|
|
@ -0,0 +1,5 @@
|
|||
{{ define "main" }}
|
||||
<div style="padding-top:60px">
|
||||
{{ .Render "content" }}
|
||||
</div>
|
||||
{{ end }}
|
|
@ -0,0 +1,5 @@
|
|||
{{ define "main" }}
|
||||
<div style="padding-top:20px">
|
||||
{{ .Render "content" }}
|
||||
</div>
|
||||
{{ end }}
|
|
@ -4,7 +4,7 @@ publish = "site/public/"
|
|||
command = "pwd && cd themes/docsy && git submodule update -f --init && cd ../.. && hugo"
|
||||
|
||||
[build.environment]
|
||||
HUGO_VERSION = "0.55.6"
|
||||
HUGO_VERSION = "0.59.0"
|
||||
|
||||
[context.production.environment]
|
||||
HUGO_ENV = "production"
|
||||
|
|
|
@ -9,7 +9,7 @@ theme = ["docsy"]
|
|||
enableGitInfo = true
|
||||
|
||||
# Language settings
|
||||
contentDir = "content/en"
|
||||
contentDir = "content/en"
|
||||
defaultContentLanguage = "en"
|
||||
defaultContentLanguageInSubdir = false
|
||||
# Useful when translating.
|
||||
|
@ -33,6 +33,30 @@ pygmentsStyle = "tango"
|
|||
[permalinks]
|
||||
blog = "/:section/:year/:month/:day/:slug/"
|
||||
|
||||
[module]
|
||||
[[module.mounts]]
|
||||
source = "../deploy/addons/gvisor/"
|
||||
target = "content/gvisor/"
|
||||
[[module.mounts]]
|
||||
source = "../deploy/addons/helm-tiller/"
|
||||
target = "content/helm-tiller/"
|
||||
[[module.mounts]]
|
||||
source = "../deploy/addons/ingress-dns/"
|
||||
target = "content/ingress-dns/"
|
||||
[[module.mounts]]
|
||||
source = "../deploy/addons/storage-provisioner-gluster/"
|
||||
target = "content/storage-provisioner-gluster/"
|
||||
[[module.mounts]]
|
||||
source = "../deploy/addons/layouts/"
|
||||
target = "layouts"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "content/en"
|
||||
target = "content"
|
||||
[[module.mounts]]
|
||||
source = "layouts"
|
||||
target = "layouts"
|
||||
|
||||
## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday
|
||||
[blackfriday]
|
||||
plainIDAnchors = true
|
||||
|
|
|
@ -20,10 +20,10 @@ minikube has a set of built-in addons that, when enabled, can be used within Kub
|
|||
* [nvidia-driver-installer](https://github.com/GoogleCloudPlatform/container-engine-accelerators/tree/master/nvidia-driver-installer/minikube)
|
||||
* [nvidia-gpu-device-plugin](https://github.com/GoogleCloudPlatform/container-engine-accelerators/tree/master/cmd/nvidia_gpu)
|
||||
* [logviewer](https://github.com/ivans3/minikube-log-viewer)
|
||||
* [gvisor](../deploy/addons/gvisor/README.md)
|
||||
* [storage-provisioner-gluster](../deploy/addons/storage-provisioner-gluster/README.md)
|
||||
* [helm-tiller](../deploy/addons/helm-tiller/README.md)
|
||||
* [ingress-dns](../deploy/addons/ingress-dns/README.md)
|
||||
* [gvisor](../../../gvisor/readme/)
|
||||
* [storage-provisioner-gluster](../../../storage-provisioner-gluster/readme)
|
||||
* [helm-tiller](../../../helm-tiller/readme)
|
||||
* [ingress-dns](../../../ingress-dns/readme)
|
||||
|
||||
## Listing available addons
|
||||
|
||||
|
|
Loading…
Reference in New Issue