{{ define "title" }}{{ .Site.Title }}{{ end }} {{ define "schema-dot-org" }} {{ end }} {{ define "main" }} {{ $dateFormat := default "Mon Jan 2, 2006" (index .Site.Params "date_format") }} {{ partial "featured.html" . }}

From the Firehose

{{ $truncate := default true .Site.Params.truncate }} {{ $paginator := .Paginate (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }} {{ range $paginator.Pages }} {{ if $truncate }} {{ .Render "summary" }} {{ else }} {{ .Render "content" }} {{ end }} {{ end }} {{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }} {{ partial "pagination.html" . }} {{ end }}
{{ end }} {{- /* vim: set ts=2 sw=2 et: */}}