abdullahtarawneh.com/layouts/partials/site-header.html
2021-10-18 03:33:36 -05:00

26 lines
683 B
HTML

<header class="site-header">
<div class="container">
<a href="/" class="site-masthead">
<img class="site-icon" src="/images/avatar.png">
<p class="site-title">i'm abdullah tarawneh, freelance creative and consultant.</p>
</a>
<nav class="site-nav">
<ul>
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<li class='
{{ if or ($currentPage.IsMenuCurrent "main" .) (eq $currentPage.Section .Identifier) }}
active
{{ end }}'>
<a href="{{ .URL | absLangURL }}">
{{ .Pre }}
<span>{{ .Name }}</span>
{{ .Post }}
</a>
</li>
{{ end }}
</ul>
{{ partial "i18nlist.html" . }}
</nav>
</div>
</header>