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
[[module.mounts]]
source = 'config'
target = 'static/config'
target = 'assets/config'
# just for this documentation to expose the GitHub hero image in the docs
[[module.mounts]]
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.
{{< multiconfig fm=true >}}
{{% include "cont/frontmatter/frontmatter.toml" %}}
{{% include "frontmatter.toml" %}}
{{< /multiconfig >}}
## Annotated Frontmatter Options
````toml {title="toml"}
+++
{{% include "cont/frontmatter/frontmatter.toml" %}}+++
{{% include "frontmatter.toml" %}}+++
````
## 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" %}}
````go
{{%/* include file="shortcodes/INCLUDE_ME.md" */%}}
{{%/* include file="shortcodes/include/INCLUDE_ME.md" */%}}
````
{{% /tab %}}
{{% tab title="shortcode (positional)" %}}
````go
{{%/* include "shortcodes/INCLUDE_ME.md" */%}}
{{%/* include "shortcodes/include/INCLUDE_ME.md" */%}}
````
{{% /tab %}}
@ -29,7 +29,7 @@ While the examples are using shortcodes with named parameter you are free to use
````go
{{ partial "shortcodes/include .html" (dict
"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
````go
{{%/* include "shortcodes/INCLUDE_ME.md" */%}}
{{%/* include "shortcodes/include/INCLUDE_ME.md" */%}}
````
{{% include "shortcodes/INCLUDE_ME.md" %}}
{{% include "shortcodes/include/INCLUDE_ME.md" %}}