hugo-theme-anubis2/layouts/taxonomy/category.html
2020-02-18 20:55:17 +03:00

27 lines
760 B
HTML

{{ define "main" }}
<h1>{{ i18n "category" | humanize }}: {{ .Title }}</h1>
<div class="article-info">
<a href="{{ "categories/" | absURL }}">{{ i18n "toAllCategories" | humanize }}</a>
</div>
{{ range .Data.Pages }}
<article class="post-list">
<header>
<h1>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
</header>
<div class="content">
{{ .Summary }}
</div>
{{ partial "articleInfoDate.html" . }}
<!-- {{ if .Truncated }}
<div class="read-more">
<a href="{{ .RelPermalink }}">{{ i18n "readMore" | humanize }}</a>
</div>
{{ end }} -->
</article>
{{ end }}
{{ end }}