Files
maupassant-hugo/layouts/_default/terms.html
T
飞雪无情 84967b462a a href _blank
2022-09-04 16:49:04 +08:00

26 lines
753 B
HTML

{{ define "content"}}
<header>
{{ if eq .Data.Singular "category" }}
<h1>共有{{ len .Data.Terms }}个分类</h1>
{{ else if eq .Data.Singular "tag" }}
<h1>共有{{ len .Data.Terms }}个标签</h1>
{{ end }}
</header>
<div class="post-archive">
{{ range .Data.Terms.ByCount }}
<h2>
<a href="{{ path.Join $.Data.Plural .Term | urlize | absLangURL }}" target="_blank">{{ .Term }}</a>
({{ .Count }})
</h2>
<ul class="listing">
{{ range .Pages }}
<li>
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
<a href="{{ .Permalink }}" title="{{ .Title }}" target="_blank">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}
</div>
{{ end }}