bobatheme/layouts/partials/page-list.html
BBaoVanC 6f140f096b
Organize summary template files
Also a small CSS patch to fix margin around post-title
2023-02-28 18:24:19 -06:00

14 lines
278 B
HTML

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