{{ define "main" }} {{ if not hugo.IsProduction }} {{ end }}

{{ .Title }}

{{ with .Params.location }}

Venue

{{ partial "svg/mdi.map-marker.html" . }} {{ if .url }} {{ .name }} {{ else }} {{/* no url */}} {{ .name }} {{ end }} {{/* url check */}}

{{ partial "svg/mdi.map.html" . }} {{ .locality }}, {{ index . "country-name" }}

{{ end }} {{/* with location */}} {{ if and .Params.location .Date }} {{ with .Date }}

{{ partial "svg/mdi.calendar-time.html" . }}

{{ end }} {{/* with date */}} {{ end }} {{/* event check */}} {{ with .Params.openers }}

Openers

    {{ range . }}
  • {{ partial "svg/mdi.artist.html" . }} {{ if .url }} {{ .name }} {{ else }} {{/* no url */}} {{ .name }} {{ end }} {{/* url */}}
  • {{ end }} {{/* range */}}
{{ end }} {{/* with openers */}} {{ with .Params.headliners }}

Headliners

    {{ range . }}
  • {{ partial "svg/mdi.artist.html" . }} {{ partial "svg/mdi.star.html" . }} {{ if .url }} {{ .name }} {{ else }} {{/* no url */}} {{ .name }} {{ end }} {{/* url */}}
  • {{ end }} {{/* range */}}
{{ end }} {{/* with headliners */}}
{{ with .Content }}

Notes

{{ . }}
{{ end }} {{ with .Params.tags }}

Tagged with

    {{ range . }}
  • #{{.}}
  • {{ end }} {{/* range */}}
{{ end }} {{/* with tags */}}

Photos ({{ .Pages.Len }})

{{ partial "photos-grid.html" .Pages.Reverse }}
{{ end }}