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

31 lines
734 B
HTML
Raw Normal View History

2022-11-14 11:16:26 -05:00
<header class="intro-and-nav" role="banner">
<div>
<div class="intro">
<a
class="logo"
href="{{ .Site.BaseURL }}"
aria-label="{{ .Site.Title }} home page"
>
{{ with .Site.Params.navTitleText }}
<h2>{{ . }}</h2>
{{ else }}
<img
src="{{ "images/logo.svg" | relURL }}"
alt="{{ .Site.Params.logoAlt | default "Logo" }}"
>
{{ end }}
</a>
<!--
<p class="library-desc">
{{ with .Site.Params.description }} {{ . | markdownify }} {{ end }}
</p>
-->
<h3> {{ with .Site.Params.description }} {{ . }} {{ end}} </h3>
</div>
{{ partial "nav.html" . }}
</div>
</header>