summaryrefslogtreecommitdiffstats
path: root/layouts/home.html
blob: 6328ee591f6f15f8fd83fafd011d6ab2ad8d03b5 (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
{{ define "canvas-mode" }}hero{{ end }}

{{ define "main" }}
  {{ partial "hero.html" . }}

  <section id="articles" class="section-container reveal-group">
    {{ $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 }}

    <a href="/articles/" class="btn btn-outline">View All Articles</a>
  </section>
{{ end }}