Files
bobatheme/layouts/_partials/page-list.html
BBaoVanC 6251b033d5 Move article.page wrapping to summary.html instead of at list template
I am trying to make various templates and partials act more like
self-contained components.

This is in preparation for #113.
2025-09-01 00:50:54 -05:00

12 lines
216 B
HTML

<div class="page-list">
{{ with . }}
{{ range . }}
{{ .Render "summary" }}
{{ end }}
{{ else }}
<div>
{{ i18n "no_posts" }}
</div>
{{ end }}
</div>