The Attachments shortcode displays a list of files attached to a page. Example :
The shortcode lists files found in a specific folder. Currently, it supports two implementations for pages
If your page is a markdown file, attachments must be placed in a folder named like your page and ending with .files.
- content
- _index.md
- page.files
- attachment.pdf
- page.md
If your page is a folder, attachments must be placed in a nested ‘files’ folder.
- content
- _index.md
- page
- index.md
- files
- attachment.pdf
That’s all !
| Parameter | Default | Description |
|---|---|---|
| title | “Attachments” | List’s title |
| pattern | ”.*” | A regular expressions, used to filter the attachments by file name. The pattern parameter value must be regular expressions. For example:
|
{{%attachments title="Related files" pattern=".*(pdf|mp4)"/%}}
renders as