blob: fd160ce24292afd4a32a6eb5bb4d2282a019ce4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{{ define "hero" }}
{{ partial "hero.html" . }}
{{ end }}
{{ define "main" }}
{{ range (where .Pages "Type" "in" .Site.Params.mainSections).ByWeight }}
{{ if gt (len .Pages) 0 }}
<div class="stripe-dark">
<div class="max-w-screen-md mx-auto p-1">
<h2
id="{{ anchorize .Title | safeURL }}"
class="baskerville lh-title f2"
>
{{ .Title }}
</h2>
{{ range first 3 .Pages.ByPublishDate.Reverse }}
{{ partial "post.html" . }}
{{ end }}
<div class="tc p-4">
<i class="fas fa-angle-right"></i>
<a href="{{ .Type }}" class="f3 near-black"
>{{ T "see_all" | humanize }}</a
>
</div>
</div>
</div>
{{ end }}
{{ end }}
{{ end }}
|