blob: 4d8587a8763f6c35a971a5ea7aba7cd8df97d2c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ define "main" }}
{{ partial "hero.html" . }}
<div class="container feed-section">
<div class="feed-label">Latest</div>
<div class="feed-grid">
{{ range site.RegularPages }}
{{ if eq .Type "articles" }}
{{ $data := dict "title" .Title "type" .Params.type "description" .Summary "date" .Date "url" .RelPermalink "image" .Params.image "featured" .Params.featured }}
{{ partial "post-card.html" $data }}
{{ end }}
{{ end }}
</div>
<a href="/articles/" class="feed-cta">View all articles</a>
</div>
{{ end }}
|