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

26 lines
873 B
HTML

{{ define "head_meta" }}
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}Категория {{.Title}}{{ end }}">
<meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}Категория {{.Title}}{{ end }}">
{{end}}
{{ define "main" }}
<div class="page-wrapper">
<div class="content-column">
<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>
</div>
{{ partial "sidebar.html" . }}
</div>
{{ end }}