54 lines
1.1 KiB
HTML
Executable file
54 lines
1.1 KiB
HTML
Executable file
{{ define "main" }}
|
|
|
|
<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 w-70 center">
|
|
|
|
<h1 class="flex-none db">Recent Articles</h1>
|
|
|
|
<div class="flex">
|
|
{{ $section := where .Data.Pages "Section" "article" }}
|
|
|
|
<section class="w-60 pa4 bg-white">
|
|
{{ range sort (first 1 $section) "Date" "desc" }}
|
|
{{ if .Date }}
|
|
<date class="f6">
|
|
{{ .Date.Format "January 2, 2006" }}
|
|
</date>
|
|
{{ end }}
|
|
<h2 class="f3 near-black">
|
|
<a href="{{ .URL }}" class="link black dim">
|
|
{{ .Title }}
|
|
</a>
|
|
</h2>
|
|
<div class="nested-links f5 nested-copy-line-height">
|
|
<p>
|
|
{{ .Summary }}
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
</section>
|
|
|
|
<section class="w-30 ph4">
|
|
{{ range sort (first 4 (after 1 $section)) "Date" "desc" }}
|
|
<h2 class="f5 fw4 mb4">
|
|
<a href="{{ .URL }}" class="link black dim">
|
|
{{ .Title }}
|
|
</a>
|
|
</h2>
|
|
{{ end }}
|
|
</section>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{{ end }}
|