hugo-theme-anubis2/layouts/taxonomy/category.html

11 lines
310 B
HTML
Raw Normal View History

2020-01-27 20:38:45 +01:00
{{ define "main" }}
<h1>{{ i18n "category" | humanize }}: {{ .Title }}</h1>
2020-06-06 21:05:21 +02:00
<div class="post-info">
2020-05-24 18:07:02 +02:00
<a href="{{ "categories/" | absLangURL }}">{{ i18n "toAllCategories" | humanize }}</a>
2020-01-27 20:38:45 +01:00
</div>
{{ range .Data.Pages }}
2020-06-06 21:05:21 +02:00
{{ partial "postSummary.html" . }}
2020-01-27 20:38:45 +01:00
{{ end }}
{{ end }}