I’m building an archive view and my approach is to use a section.
I named the section ‘blogarchive’ for the time being - I’m not sure wether ‘archive’ is somehow a reserved word.
├── content │ ├── about.md │ ├── blogarchive │ │ └── _index.org │ └── post ├── layouts │ ├── _default │ │ └── mysummary.html │ ├── blogarchive │ │ ├── list.html │ │ └── summary.html
In list.html
I’m using {{ .Render "summary" }}
and I would expect that summary.html
out of my section would be used. Instead it loads summary.html
from _default
. Which is in my case located in the theme’s directory.
Do I miss something here? Is it correct what is written in the documentation? Maybe it’s not true for my case?
I’m using a workaround by placing mysummary.html
in _default
and referencing that. That works fine but I would like to know if there is any misconception on my side.