{{ $featured_image := .Param "featured_image"}} {{ if $featured_image }} {{/* Trimming the slash and adding absURL make sure the image works no matter where our site lives */}} {{ $featured_image := (trim $featured_image "/") | absURL }}
{{ partial "site-navigation.html" .}}

{{/* Determinate if is a taxonomy page so put the tag is in uppercase on the title */}} {{ if .Data.Singular }} {{ .Title | default .Site.Title | upper }} {{ else }} {{ .Title | default .Site.Title }} {{ end }}

{{ with .Params.description }}

{{ . }}

{{ end }}
{{ else }}
{{ partial "site-navigation.html" . }}

{{ .Title | default .Site.Title }}

{{ with .Params.description }}

{{ . }}

{{ end }}
{{ end }}