Files
maupassant-hugo/layouts/_default/taxonomy.html
T
I'M YourOnly.One a314b017a7 新的国际化支持 | New Internationalization support (#159)
* new: i18n translation support

* new: Traditional Chinese, Japanese, and Korean translations

* upd: casing
2022-10-25 11:11:39 +08:00

38 lines
1.1 KiB
HTML

{{ define "content"}}
<div class="res-cons">
{{ if eq .Data.Singular "category" }}
<h3 class="archive-title">
{{ range .Site.Taxonomies.categories.ByCount }}
<span>{{ .Count }}</span>
{{ end }}
<span class="keyword">{{ .Data.Term }}</span>
{{ i18n "Articles" }}
</h3>
{{ else if eq .Data.Singular "tag" }}
<h3 class="archive-title">
{{ range .Site.Taxonomies.tags.ByCount }}
<span>{{ .Count }}</span>
{{ end }}
<span class="keyword">{{ .Data.Term }}</span>
{{ i18n "Articles" }}
</h3>
{{ end }}
{{ range $index,$data := .Paginator.Pages }}
<article class="post">
<header>
<h1 class="post-title">
<a href="{{ .Permalink }}" target="_blank">{{ .Title }}</a>
</h1>
</header>
{{ partial "post-meta.html" . }}
<div class="post-content">
{{ .Summary }}……
<p class="readmore"><a href="{{ .Permalink }}" target="_blank">{{ i18n "continueReading" }}</a></p>
</div>
</article>
{{ end }}
{{ partial "paginator" . }}
</div>
{{ end }}