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> -->
|
2023-02-23 14:04:33 -06:00
|
|
|
<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>
|
2024-05-20 10:20:24 -05:00
|
|
|
{{ partial "metadata.html" . }}
|
2024-05-18 17:43:45 -05:00
|
|
|
<p class="summary">{{ .Summary }}</p>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2023-02-23 14:04:33 -06:00
|
|
|
{{ end }}
|