{{/* Footer menu */}} {{ if .Site.Params.footer.showMenu | default true }} {{ if .Site.Menus.footer }} {{ $onlyIcon := true }} {{ range .Site.Menus.footer }} {{ if .Name }} {{ $onlyIcon = false }} {{ break }} {{ end }} {{ end }} {{ $navClass := printf "flex flex-row pb-4 text-base font-medium text-neutral-500 dark:text-neutral-400 %s" (cond $onlyIcon "overflow-x-auto py-2" "") }} {{ $ulClass := printf "flex list-none %s" (cond $onlyIcon "flex-row" "flex-col sm:flex-row") }} {{ $liClass := printf "flex mb-1 text-end sm:mb-0 sm:me-7 sm:last:me-0 %s" (cond $onlyIcon "me-4" "") }}
    {{ range .Site.Menus.footer }}
  • {{ if .Pre }} {{ partial "icon.html" .Pre }} {{ end }} {{ .Name | markdownify }}
  • {{ end }}
{{ end }} {{ end }}
{{/* Copyright */}} {{ if .Site.Params.footer.showCopyright | default true }}

{{- with replace .Site.Params.copyright "{ year }" now.Year }} {{ . | markdownify }} {{- else }} © {{ now.Format "2006" }} {{ .Site.Params.Author.name | markdownify }} {{- end }}

{{ end }} {{/* Theme attribution */}} {{ if .Site.Params.footer.showThemeAttribution | default true }}

Powered by Your Mom

{{ end }}
{{ if not .Site.Params.disableImageZoom | default true }} {{ end }} {{/* Extend footer - eg. for extra scripts, etc. */}} {{ if templates.Exists "partials/extend-footer.html" }} {{ partialCached "extend-footer.html" . }} {{ end }}