mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-01-18 19:00:24 +00:00
docs: interchange leaf/branch bundle handling
this was an unoticed docs error
This commit is contained in:
parent
43e9a8c376
commit
b262c0b1a3
1 changed files with 5 additions and 9 deletions
|
@ -9,7 +9,7 @@ The `attachments` shortcode displays a list of files attached to a page with adj
|
||||||
{{% attachments sort="asc" /%}}
|
{{% attachments sort="asc" /%}}
|
||||||
|
|
||||||
{{% notice warning %}}
|
{{% notice warning %}}
|
||||||
This shortcode is deprecated in favor of the new the [`resources` shortcode](shortcodes/resources). See [migration instructions](#migration) below.
|
This shortcode is deprecated in favor of the new [`resources` shortcode](shortcodes/resources). See [migration instructions](#migration) below.
|
||||||
{{% /notice %}}
|
{{% /notice %}}
|
||||||
|
|
||||||
## Migration
|
## Migration
|
||||||
|
@ -28,10 +28,6 @@ Multilanguage features are not supported directly by the shortcode anymore but r
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
{{% notice warning %}}
|
|
||||||
Since Hugo {{% badge color="fuchsia" icon="fa-fw fab fa-hackerrank" title=" " %}}0.112.0{{% /badge %}} this only works for leaf bundles. Branch bundles and simple pages must be switched to leaf bundles or you are currently locked to a Hugo version < `0.112.0`.
|
|
||||||
{{% /notice %}}
|
|
||||||
|
|
||||||
While the examples are using shortcodes with named parameter you are free to also call this shortcode from your own partials.
|
While the examples are using shortcodes with named parameter you are free to also call this shortcode from your own partials.
|
||||||
|
|
||||||
{{< tabs groupid="shortcode-parameter">}}
|
{{< tabs groupid="shortcode-parameter">}}
|
||||||
|
@ -76,8 +72,8 @@ The shortcode lists files found in a specific folder. The name of the folder dep
|
||||||
> * content
|
> * content
|
||||||
> * _index.md
|
> * _index.md
|
||||||
> * page
|
> * page
|
||||||
> * _index.md
|
> * index.md
|
||||||
> * **_index.files**
|
> * **index.files**
|
||||||
> * attachment.pdf
|
> * attachment.pdf
|
||||||
|
|
||||||
2. If your page is a branch bundle, attachments must be placed in a nested `_index.files` folder, accordingly.
|
2. If your page is a branch bundle, attachments must be placed in a nested `_index.files` folder, accordingly.
|
||||||
|
@ -87,8 +83,8 @@ The shortcode lists files found in a specific folder. The name of the folder dep
|
||||||
> * content
|
> * content
|
||||||
> * _index.md
|
> * _index.md
|
||||||
> * page
|
> * page
|
||||||
> * index.md
|
> * _index.md
|
||||||
> * **index.files**
|
> * **_index.files**
|
||||||
> * attachment.pdf
|
> * attachment.pdf
|
||||||
|
|
||||||
3. For simple pages, attachments must be placed in a folder named like your page and ending with `.files`.
|
3. For simple pages, attachments must be placed in a folder named like your page and ending with `.files`.
|
||||||
|
|
Loading…
Reference in a new issue