{{ $featured_image := .Param.featured_image | default "images/gohugo-default-sample-hero-image.jpg" }} {{ $description := .Param.description | default "" }} {{ 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" .}}

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

{{ with $description }}

{{ . }}

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

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

{{ with $description }}

{{ . }}

{{ end }}
{{ end }}