mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-28 05:10:31 -04:00
15 lines
833 B
HTML
15 lines
833 B
HTML
<header>
|
|
<nav>
|
|
<a class="no-underline" href="{{ .Site.BaseURL }}" id="logo" title="{{ .Site.Title }}" aria-label="{{ .Site.Title }}">
|
|
{{ partial "logo.html" . }}
|
|
<span id="name">{{ .Site.Title }}</span>
|
|
</a>
|
|
<ul>
|
|
<li><a class="no-underline" href="{{ .Site.BaseURL }}" title="Home">🏠</a></li>
|
|
<li><a class="no-underline" href="{{ "notes/" | absURL }}" title="Notes">📝</a></li>
|
|
<li><a class="no-underline" href="https://github.com/{{ .Site.Author.github }}" title="GitHub" target="_blank" rel="me noopener noreferrer">👨‍💻</a></li>
|
|
<li><a class="no-underline" href="mailto:jake@jarv.is" title="Email Me">💌</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|