etch/layouts/partials/posts.html
Guillaume 4791a23949
Add basic i18n for list and single (#30)
* add: basic i18n for list and single

* add: apply suggestions

* fix: indent using 4 tabs
2022-02-06 21:54:13 -08:00

7 lines
164 B
HTML

<h3>{{ i18n "posts.title" }}</h3>
<ul id="posts">
{{- range where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ .Render "li" }}
{{- end }}
</ul>