devroom.io/themes/devroom-2020/layouts/partials/list.html

19 lines
534 B
HTML
Raw Normal View History

2020-03-09 10:40:44 +00:00
<section class="container list">
<h1 class="title">
{{- if eq .Kind "taxonomy" -}}
{{- i18n .Data.Singular | title -}}
{{- print "Tagged " -}}
{{- end -}}
{{- .Title -}}
</h1>
<p>
{{ range .Paginator.Pages }}
<span class="date">{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02" ) }}</span>
-
<a class="title" href="{{ .Params.ExternalLink | default .RelPermalink }}">{{ .Title }}</a>
<br />
{{ end }}
</p>
</section>