24 lines
838 B
HTML
24 lines
838 B
HTML
<header class="c-global-header">
|
|
<div class="c-container c-container--medium">
|
|
<div class="c-global-header__inner">
|
|
<div class="c-global-header__primary">
|
|
<h1 class="c-brand">
|
|
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
|
</h1>
|
|
<p class="c-description">{{ .Site.Params.description }}</p>
|
|
</div>
|
|
<div class="c-global-header__utility">
|
|
<button type="button" class="c-menu">
|
|
<svg class="icon icon-menu">
|
|
<use xlink:href="#icon-menu"></use>
|
|
<symbol id="icon-menu" viewBox="0 0 32 32">
|
|
<title>menu</title>
|
|
<path d="M2 6h28v6h-28zM2 14h28v6h-28zM2 22h28v6h-28z"></path>
|
|
</symbol>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
{{ partial "global-nav.html" . }}
|
|
</div>
|
|
</div>
|
|
</header>
|