hugo-theme-readable/layouts/index.html

18 lines
405 B
HTML
Raw Normal View History

2023-01-30 13:14:33 -06:00
{{ define "main" }}
2024-05-18 17:43:45 -05:00
2023-01-30 13:14:33 -06:00
{{ partial "metadata.html" . }}
2024-05-18 17:43:45 -05:00
2023-01-30 13:14:33 -06:00
<!-- <br><br> -->
<article>
</article>
2024-05-18 17:43:45 -05:00
<div>
{{ range where .Site.RegularPages "Section" "in" .Site.MainSections }}
<section class="articles">
<h3><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h3>
{{ partial "metadata.html" . }}
2024-05-18 17:43:45 -05:00
<p class="summary">{{ .Summary }}</p>
</section>
{{ end }}
</div>
{{ end }}