docs: don't publish unnecessary config files

This commit is contained in:
Sören Weber 2024-04-22 23:14:23 +02:00
parent af29d89995
commit a7321b918c
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
5 changed files with 8 additions and 8 deletions

View file

@ -200,7 +200,7 @@ title = "Hugo Relearn Theme"
# just for this documentation to expose our config in the docs # just for this documentation to expose our config in the docs
[[module.mounts]] [[module.mounts]]
source = 'config' source = 'config'
target = 'static/config' target = 'assets/config'
# just for this documentation to expose the GitHub hero image in the docs # just for this documentation to expose the GitHub hero image in the docs
[[module.mounts]] [[module.mounts]]
source = '../images' source = '../images'

View file

@ -10,14 +10,14 @@ Each Hugo page **has to define** a [frontmatter](https://gohugo.io/content/front
The values reflect example options. The defaults can be taken from the [annotated example](#annotated-frontmatter-options) below. The values reflect example options. The defaults can be taken from the [annotated example](#annotated-frontmatter-options) below.
{{< multiconfig fm=true >}} {{< multiconfig fm=true >}}
{{% include "cont/frontmatter/frontmatter.toml" %}} {{% include "frontmatter.toml" %}}
{{< /multiconfig >}} {{< /multiconfig >}}
## Annotated Frontmatter Options ## Annotated Frontmatter Options
````toml {title="toml"} ````toml {title="toml"}
+++ +++
{{% include "cont/frontmatter/frontmatter.toml" %}}+++ {{% include "frontmatter.toml" %}}+++
```` ````
## Some Detailed Examples ## Some Detailed Examples

View file

@ -13,14 +13,14 @@ While the examples are using shortcodes with named parameter you are free to use
{{% tab title="shortcode" %}} {{% tab title="shortcode" %}}
````go ````go
{{%/* include file="shortcodes/INCLUDE_ME.md" */%}} {{%/* include file="shortcodes/include/INCLUDE_ME.md" */%}}
```` ````
{{% /tab %}} {{% /tab %}}
{{% tab title="shortcode (positional)" %}} {{% tab title="shortcode (positional)" %}}
````go ````go
{{%/* include "shortcodes/INCLUDE_ME.md" */%}} {{%/* include "shortcodes/include/INCLUDE_ME.md" */%}}
```` ````
{{% /tab %}} {{% /tab %}}
@ -29,7 +29,7 @@ While the examples are using shortcodes with named parameter you are free to use
````go ````go
{{ partial "shortcodes/include .html" (dict {{ partial "shortcodes/include .html" (dict
"page" . "page" .
"file" "shortcodes/INCLUDE_ME.md" "file" "shortcodes/include/INCLUDE_ME.md"
)}} )}}
```` ````
@ -50,7 +50,7 @@ The included files can even contain Markdown and will be taken into account when
### Arbitrary Content ### Arbitrary Content
````go ````go
{{%/* include "shortcodes/INCLUDE_ME.md" */%}} {{%/* include "shortcodes/include/INCLUDE_ME.md" */%}}
```` ````
{{% include "shortcodes/INCLUDE_ME.md" %}} {{% include "shortcodes/include/INCLUDE_ME.md" %}}