blob: f285b41f0a67bd77ec5bb760bfcb64dca374b5c0 (
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 "main" }}
{{ partial "hero.html" . }}
<div class="container feed-section">
<div class="feed-label">Latest</div>
<div class="feed-grid">
{{ $articlesSection := .Site.GetPage "/articles" }}
{{ if $articlesSection }}
{{ $articles := $articlesSection.Pages }}
{{ $articles := sort $articles "Date" "desc" }}
{{ range first 6 $articles }}
{{ $type := .Params.type }}
{{ if not $type }}{{ $type = "article" }}{{ end }}
{{ $excerpt := .Params.excerpt }}
{{ if not $excerpt }}
{{ $excerpt = .Summary | plainify | truncate 150 }}
{{ end }}
{{ $data := dict "title" .Title "type" $type "description" $excerpt "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 }}
|