transfeminine-science/themes/tfsci/layouts/_default/archives.html

24 lines
622 B
HTML

{{- define "main" }}
{{- $page := .Site.GetPage "articles" -}}
<section class="container py-4">
{{ partial "page-header" . }}
<article class="content mt-6 archives">
{{- .Content }}
<ul>
{{- range $page.Pages.ByPublishDate.Reverse }}
{{- if .Params.hidden }}{{- continue -}}{{- end }}
<li data-author="{{ .Params.author }}">
<p>
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
<span class="is-inline-block">({{ .Params.author }}, {{ .PublishDate.Format "2006/1" }})</span>
{{- with .Params.description }}
<br>
<span class="description">{{ . }}</span>
{{- end }}
</p>
</li>
{{- end }}
</ul>
</article>
</section>
{{- end }}