{{ define "main" }} {{ $pages := where .Site.RegularPages "Type" "timeline" }} {{ $paginator := .Paginate $pages }}

{{ .Title }}

{{ if .Content }}
{{ .Content }}
{{ end }} {{ partial "social-icons.html" $.Site.Params.social }}
{{ range $paginator.Pages.ByWeight.Reverse }}
{{ if .Param "shouldLink" }}

{{.Title}}

{{ else }}

{{.Title}}

{{ end }} {{ if .Param "cardCategory" }}
{{ .Param "cardCategory" }}
{{ else }}
{{ .Date.Format "Jan 2, 2006"}}
{{ end }}

{{.Summary}}

{{ end }}
{{ end }}