{{ define "title" }} {{ if .Content }}

{{ .Title }}

{{ end }} {{ end }} {{ define "main" }} {{ $s := .Site.Params }} {{ $meta := false }} {{- $posts := where (where .Site.RegularPages "Permalink" "!=" .Permalink) "Type" "in" $s.searchSections }} {{- $featured := where (where $posts ".Params.featured" "=" true) "Type" "in" $s.searchSections }} {{- $paginator := slice -}} {{- $paginator = .Paginate $posts.ByDate.Reverse -}} {{ if eq $paginator.PageNumber 1 }} {{ if ne .Content "" }}
{{ .Content }}
{{ end }} {{ range first 3 $featured.ByLastmod.Reverse }} {{ $article_age := sub now.Unix (int .Date.Unix) }} {{ if lt $article_age "1209600" }} {{ partial "contentlayouts/list.html" . }} {{ end }} {{ end }} {{ end }} {{- range first 5 $paginator.Pages -}} {{ $article_age := sub now.Unix (int .Date.Unix) }} {{ if or (ne .Params.featured true) (ge $article_age "1209600") }} {{ partial "contentlayouts/list.html" . }} {{ end }} {{- end }}
{{ partial "structure/paginator" (dict "paginator" $paginator) }}
{{ end }} {{ define "sidebar" }} {{- partial "contentlayouts/menu.html" . }} {{ end }}