hugo-theme-nocolor/layouts/_default/list.html

18 lines
478 B
HTML
Raw Normal View History

2019-11-20 19:56:22 +01:00
{{- define "main" }}
2021-08-09 17:14:31 +02:00
<section class="list" aria-labelledby="nocolor_list">
<h1 id="nocolor_list">{{ .Title }}:</h1>
2019-11-20 19:56:22 +01:00
<ul>
{{- range .Paginator.Pages }}
2021-03-23 02:45:30 +01:00
<li role="article">
<section class="post-title" aria-label="Title">
2019-11-20 19:56:22 +01:00
{{- if .Draft }}DRAFT: {{ end }}
2020-12-28 20:12:36 +01:00
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
2021-03-23 02:45:30 +01:00
</section>
2019-11-20 19:56:22 +01:00
{{ partial "post_meta.html" . }}
</li>
{{- end }}
</ul>
</section>
2019-11-20 19:56:22 +01:00
{{ partial "pagination.html" . }}
{{- end }}