cupper-hugo-theme/layouts/partials/header.html

23 lines
617 B
HTML
Raw Normal View History

2019-02-13 06:11:59 +01:00
<header class="intro-and-nav" role="banner">
<div>
<div class="intro">
2020-06-14 21:05:19 +02:00
<a
class="logo"
href="{{ .Site.BaseURL }}"
aria-label="{{ .Site.Title }} home page"
>
2021-05-16 08:44:41 +02:00
<img
src="{{ "images/logo.svg" | relURL }}"
alt="{{ .Site.Params.logoAlt | default "Logo" }}">
2019-02-13 06:11:59 +01:00
</a>
<p class="library-desc">
2020-06-14 21:05:19 +02:00
{{ with .Site.Params.description }} {{ . | markdownify }} {{ end }}
2019-02-13 06:11:59 +01:00
</p>
</div>
{{ partial "nav.html" . }}
2021-01-13 22:08:57 +01:00
{{ if eq .Site.Params.moveFooterToHeader true }}
{{ partial "footer.html" . }}
{{ end }}
2019-02-13 06:11:59 +01:00
</div>
2020-06-14 21:05:19 +02:00
</header>