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

18 lines
449 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"
>
2020-11-25 03:51:01 +01:00
<img src="{{ "images/logo.svg" | relURL }}" alt="">
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" . }}
</div>
2020-06-14 21:05:19 +02:00
</header>