Page resources are available for page bundles only, i.e. a directory with either a
index.md
, or_index.md
file at its root. Resources are only attached to the lowest page they are bundled with, and simple which names does not containindex.md
are not attached any resource.
the above documentation indicates that I can bundle a bunch of image files in a directory at the same level as an _index.md
or index.md
file and access it through a shortcode. It works with index.md files but I cannot access the images unless they are spilled into the same directory as the _index.md
file.
It would be nice to avoid having an exception for ‘list’ pages. I also have a fetish for wrapping everything in directories for better management by absent minded maintainers.
Any pointers appreciated.
Sample shortcode:
{{ $_path := ( .Get "path" ) | default "gallery/pic*.jpg" }}
{{ warnf "Checking %q for pictures..." $.Page.File.Path }}
{{ with .Page.Resources.Match $_path }}
{{ warnf "Located picture gallery at %q" $_path }}
{{ partial "collections/gallery/c" . }}
{{ else }}
{{ warnf "Failed to get picture gallery at %q" $_path }}
{{ end }}
{{ with .Inner }}
{{ . | markdownify }}
{{ end }}
compilation output:
Start building sites …
WARN 2021/01/22 15:50:25 Checking "about/lead/index.md" for pictures...
WARN 2021/01/22 15:50:25 Located picture gallery at "gallery/pic*.jpg"
WARN 2021/01/22 15:50:25 Checking "services/_index.md" for pictures...
WARN 2021/01/22 15:50:25 Located picture gallery at "pic*.jpg"
WARN 2021/01/22 15:50:28 Checking "about/_index.md" for pictures...
WARN 2021/01/22 15:50:28 Failed to get picture gallery at "gallery/pic*.jpg"
content tree:
$ tree
.
|-- _index.md
|-- about
| |-- _assets
| | `-- pic.jpg
| |-- _index.md
| |-- affiliations
| | `-- index.md
| |-- pic.jpg
| |-- gallery
| | |-- pic1.jpg
| | |-- pic2.jpg
| | |-- pic3.jpg
| | |-- pic4.jpg
| | `-- pic5.jpg
| |-- lead
| | |-- gallery
| | | |-- pic1.jpg
| | | |-- pic2.jpg
| | | |-- pic3.jpg
| | | |-- pic4.jpg
| | | `-- pic5.jpg
| | `-- index.md
| `-- follow
| `-- index.md
|-- contact-us
| `-- index.md
|-- impressum
| |-- _index.md
| |-- copyright
| | `-- index.md
| |-- legal
| | `-- index.md
| |-- privacy
| | `-- index.md
| `-- sitemap
| `-- index.md
`-- services
|-- _index.md
|-- commercial
| |-- chaplin.jpg
| `-- index.md
|-- corporate
| |-- chaplin.jpg
| `-- index.md
|-- gallery
|-- moarr
| |-- pic.jpg
| `-- index.md
|-- pic1.jpg
|-- pic2.jpg
|-- pic3.jpg
|-- pic4.jpg
|-- pic5.jpg
`-- lesss
|-- pic.jpg
`-- index.md