You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- {{ define "main" }}
- {{ $section := where .Data.Pages "Section" "article" }}
- <main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy mid-gray">
- {{ .Content }}
- </main>
- <div class="pa3 pa4-ns">
- <section class="flex-ns flex-wrap justify-around">
- {{ range sort $section "Date" "desc" }}
- {{ .Render "summary" }}
- {{ end }}
- </section>
- </div>
- {{ end }}
|