mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 23:10:29 -04:00
15 lines
834 B
HTML
15 lines
834 B
HTML
<header>
|
|
<nav>
|
|
<a class="no-underline" href="{{ .Site.BaseURL }}" id="logo" rel="me author" title="{{ .Site.Title }}" aria-label="{{ .Site.Title }}">
|
|
{{ partial "logo.html" . }}
|
|
<h1 id="name">{{ .Site.Title }}</h1>
|
|
</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">👨‍💻</a></li>
|
|
<li><a class="no-underline" href="mailto:jake@jarv.is" title="Email Me">💌</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|