mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-04-21 14:12:45 +00:00
13 lines
379 B
HTML
Executable File
13 lines
379 B
HTML
Executable File
{{ define "main" }}
|
|
{{ $section := where .Data.Pages "Section" "article" }}
|
|
<main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide-l lh-copy mid-gray">
|
|
{{ .Content }}
|
|
</main>
|
|
|
|
<section class="flex-ns flex-wrap justify-between w-100 mh4-l mt5 v-top">
|
|
{{ range sort $section "Date" "desc" }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|