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