2023-01-11 13:36:19 +00:00
|
|
|
<header class="site-nav">
|
|
|
|
<div class="appname">
|
|
|
|
<img src="/brand/icon-logo.svg" height="30" />
|
|
|
|
strimertül
|
|
|
|
</div>
|
|
|
|
<nav>
|
2023-02-18 00:04:20 +00:00
|
|
|
<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 }}
|
2023-01-11 13:36:19 +00:00
|
|
|
<a href="https://github.com/strimertul/strimertul">GitHub</a>
|
|
|
|
</nav>
|
|
|
|
</header>
|