hugo-theme-readable/layouts/index.html

18 lines
386 B
HTML

{{ define "main" }}
<!-- <br><br> -->
<article>
</article>
<div>
{{ range where .Site.RegularPages "Section" "in" .Site.MainSections }}
<section class="articles">
<h3><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h3>
{{ partial "metadata.html" . }}
<div class="summary">
{{ .Summary }}
</div>
</section>
{{ end }}
</div>
{{ end }}