mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 08:18:28 -04:00
- de-personalize the theme as much as possible, moving personal info into config.toml parameters - extract hard-coded content out layouts and into actual /content (especially home page and all of its assets) - include full text of posts in RSS feed (aka making the world a better place) - use abstract layout for both video pages (/leo and /birthday)
14 lines
878 B
HTML
14 lines
878 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> |