gohugo-theme-ananke-patched/layouts/partials/site-header.html
2022-12-14 09:56:24 -05:00

1.3 KiB

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

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

{{ with .Params.description }}

{{ . }}

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

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

{{ with .Params.description }}

{{ . }}

{{ end }}
{{ end }}