portfolio/themes/warwick_portfolio/layouts/partials/header.html

28 lines
1,001 B
HTML

<header id="header" class="header">
<div class="flex-wrap-container" style="align-items:center">
{{ $logo := (resources.Get "/img/logo.png").Resize "100x100" }}
<a href="/">
<img style="padding-right: 1em" src="{{ $logo.RelPermalink }}" alt="logo">
</a>
<div>
<a style="text-decoration: none" href="/">
<h1 style="display:inline; color:var(--primary)">{{.Site.Title}}</h1>
<nav aria-label="breadcrumb" >
{{ range $index, $value := .Ancestors.Reverse }}
{{ if (ne $index 0) }}
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
&#8594;
{{ end }}
{{ end }}
<a aria-current="page" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
</nav>
</a>
</div>
<span style="margin-left: auto;">
{{ range .Site.Sections.Reverse }}
<a href="{{ .Permalink }}"><h4 style="display: inline-block; padding-left:.75em;">{{ .Title }}</h4></a>
{{ end }}
</span>
</div>
</header>