mirror of
https://git.sr.ht/~ashkeel/strimertul-website
synced 2024-10-31 21:33:09 +00:00
25 lines
662 B
HTML
25 lines
662 B
HTML
<header class="site-nav">
|
|
<a href="/" class="appname">
|
|
<img src="/brand/icon-logo.svg" height="30" /> strimertül
|
|
</a>
|
|
<nav>
|
|
<a
|
|
href="{{ relURL "" }}"
|
|
{{ if .IsHome }}class="current"{{ end }}
|
|
>Overview</a
|
|
>
|
|
{{ $currentPage := . }}
|
|
{{ $section := .Site.GetPage $currentPage.Section }}
|
|
{{ range .Site.Menus.main }}
|
|
<a
|
|
class="navbar-item {{ if $section.IsMenuCurrent "main" . }}
|
|
current
|
|
{{ end }}"
|
|
href="{{ .URL | absLangURL | safeURL }}"
|
|
>
|
|
{{ .Name }}
|
|
</a>
|
|
{{ end }}
|
|
<a href="https://github.com/strimertul/strimertul">GitHub</a>
|
|
</nav>
|
|
</header>
|