hugo-theme-bioarchlinux/layouts/reports/list.html
2022-07-29 22:58:04 +01:00

12 lines
345 B
HTML

{{ partial "header.html" . }}
<div class="news-article box">
{{ with .Data.Pages }}
<h2>Previous Arch Conf reports</h2>
{{ range .ByDate}}
<li><a {{ printf "href=%q" .Permalink | safeHTMLAttr }}>{{ default .Title .Params.heading }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
{{ partial "footer.html" . }}