mmote.ru/themes/mmotium/layouts/categories/taxonomy.html

20 lines
393 B
HTML
Raw Normal View History

2023-01-01 18:21:01 +03:00
{{ define "main" }}
<div class="single post">
<header>
<h1>Категория - {{ .Title }}</h1>
<p class="subhead">{{ .Params.description }}</p>
</header>
<p>Тут есть:</p>
<ul>
{{ range .Pages }}
<li hugo-nav="{{ .RelPermalink}}"><a href="{{ .Permalink}}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>
</div>
{{ end }}