{{ define "main" }} {{- partial "intro.html" . -}} {{ range $section, $taxonomy := .Site.Sections -}} {{ if eq $section 0 -}}

Recent posts

{{ $items := first 3 ($taxonomy.Pages.ByDate.Reverse) -}} {{ $max := sub (len $items) 1 -}} {{ range $index, $element := $items -}}
{{- partial "assets/blog-card.html" $element -}}
{{ if (lt $index $max) -}}

{{ end -}} {{ end -}}
{{ if gt (len $taxonomy.Pages) 3 -}} More {{ $taxonomy.Title }} posts {{ end -}}
{{ else -}}

{{ $taxonomy.Title }}

{{ $items := first 3 ($taxonomy.Pages) -}} {{ range $index, $element := $items -}}
{{- partial "assets/project-card.html" $element -}}
{{ end -}}
{{ if gt (len $taxonomy.Pages) 3 -}} More {{ $taxonomy.Title }} {{ end -}}
{{ end -}} {{ end -}} {{ end -}}