hugo-theme-anubis2/layouts/taxonomy/category.html
2020-06-06 22:05:21 +03:00

11 lines
310 B
HTML

{{ define "main" }}
<h1>{{ i18n "category" | humanize }}: {{ .Title }}</h1>
<div class="post-info">
<a href="{{ "categories/" | absLangURL }}">{{ i18n "toAllCategories" | humanize }}</a>
</div>
{{ range .Data.Pages }}
{{ partial "postSummary.html" . }}
{{ end }}
{{ end }}