2018-03-01 01:38:59 +00:00
|
|
|
<section class="container list">
|
2018-10-27 12:43:26 +00:00
|
|
|
<h1 class="title">
|
|
|
|
{{- .Title -}}
|
|
|
|
</h1>
|
2020-02-19 12:10:13 +00:00
|
|
|
{{- if eq .Kind "taxonomy" -}}
|
|
|
|
<div class="list-meta">
|
|
|
|
<span class="meta-tag">
|
|
|
|
{{- if eq .Data.Singular "category" -}}
|
|
|
|
<i class="icon fas fa-folder"></i>
|
|
|
|
{{- else if eq .Data.Singular "tag" -}}
|
|
|
|
<i class="icon fas fa-tag"></i>
|
|
|
|
{{- end -}}
|
|
|
|
{{- .Data.Term -}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{- end -}}
|
2018-03-01 01:38:59 +00:00
|
|
|
<ul>
|
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
<li>
|
2019-01-16 15:16:24 +00:00
|
|
|
<span class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span>
|
2019-05-01 17:01:25 +00:00
|
|
|
<a class="title" href="{{ .Params.ExternalLink | default .RelPermalink }}">{{ .Title }}</a>
|
2018-03-01 01:38:59 +00:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
</section>
|