{{ define "main" }}

At a Glance

{{ $params := .Params }} {{ range $taxonomyname, $taxonomy := .Site.Taxonomies }} {{ $terms := index $params $taxonomyname }} {{ if $terms }} {{ end }} {{ end }}
{{ $taxonomyname | strings.FirstUpper }} {{ range $term := $terms }} {{ partial "term-link.html" (dict "name" $term "taxonomy" $taxonomyname) }} {{ end }}
{{ if .Content }}

Description

{{ .Content }}
{{ end }} {{ with .Params.publications}}

Publications

{{ end }} {{ if .Date }} {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} {{ $dateHuman := .Date | time.Format ":date_long" }}

Updated

{{ end }} {{ end }}