hugo-theme-bioarchlinux/layouts/reports/list.html
2022-07-29 21:47:17 +01:00

12 lines
339 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" .URL | safeHTMLAttr }}>{{ default .Title .Params.heading }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
{{ partial "footer.html" . }}