{{ partial "header.html" . }}
{{ partial "head.html" . }} {{ if isset .Data "Term" }}
{{ .Data.Term }}
{{ else }}
{{ .Name }}
{{ end }}
{{- range .Data.Pages -}} {{- if (in (.Site.Params.excludedTypes | default (slice "page")) .Type) -}} {{- else -}}
{{ dateFormat "02" .Date }}
{{ if $.Site.Data.month }}{{ index $.Site.Data.month (printf "%d" .Date.Month) }} {{ .Date.Year }}{{ else }}{{ dateFormat "Jan 2006" .Date }}{{ end }}
{{.Title}}{{ if .Draft }}
DRAFT
{{ end }}
{{ if isset .Params "description" }} {{ .Description }} {{ else if gt (len .RawContent) 120 }} {{ slicestr .RawContent 0 120 }}... {{ else }} {{ .RawContent }} {{ end }}
{{- end -}} {{- end -}}
{{ partial "footer.html" . }}