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

31 lines
877 B
HTML
Raw Normal View History

2020-01-27 20:38:45 +01:00
{{ define "main" }}
<h1>{{ i18n "category" | humanize }}: {{ .Title }}</h1>
<div class="article-info">
<a href="/categories/">{{ i18n "toAllCategories" | humanize }}</a>
</div>
{{ range .Data.Pages }}
<article class="post-list">
<header>
<h1>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
</header>
<div class="article-info">
{{ if .Params.date }}
<div class="article-date">{{ .Params.date.Format "2006-01-02" }}</div>
{{ end }}
</div>
2020-01-27 21:05:33 +01:00
<div class="content">
{{ .Summary }}
2020-01-27 20:38:45 +01:00
</div>
2020-01-27 21:05:33 +01:00
{{ if .Truncated }}
<div class="read-more">
<a href="{{ .RelPermalink }}">{{ i18n "readMore" | humanize }}</a>
</div>
{{ end }}
2020-01-27 20:38:45 +01:00
</article>
{{ end }}
{{ end }}