mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 06:58:28 -04:00
18 lines
873 B
HTML
18 lines
873 B
HTML
<header>
|
|
<nav>
|
|
<a class="no-underline" href="{{ .Site.BaseURL }}" id="logo" rel="me author" aria-label="{{ .Site.Title }}">
|
|
{{ $meImg := resources.Get .Site.Author.image }}
|
|
{{ $meImgSm := $meImg.Resize "160x160 q90 jpg" }}
|
|
<img id="selfie" src="{{ $meImgSm.Permalink }}" width="54" height="54" alt="Photo of Jake Jarvis">
|
|
|
|
<span id="name">{{ .Site.Title }}</span>
|
|
</a>
|
|
<ul>
|
|
{{- range .Site.Menus.main }}
|
|
<li><a class="no-underline" {{ printf "href=%q" .URL | safeHTMLAttr }} aria-label="{{ .Name }}"{{ if strings.HasPrefix .URL "http" }} target="_blank" rel="me noopener"{{ end }}><span class="icon">{{ .Pre }}</span><span class="text">{{ .Name }}</span></a></li>
|
|
{{- end }}
|
|
<li><button class="dark-mode-toggle" title="Toggle Dark Mode" aria-label="Toggle Dark Mode"></button></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|