22 lines
926 B
HTML
22 lines
926 B
HTML
<header id="header">
|
|
{{ $currentPath := .Permalink }}
|
|
<div class="flex-row baseline">
|
|
<div id="logo">
|
|
{{- partial (printf "svg/scim.svg") . -}}
|
|
</div>
|
|
<div id="logo-menu">
|
|
<a>{{- partial (printf "svg/menu.svg") . -}}</a>
|
|
</div>
|
|
<nav id="menu" class="flex-row space-between baseline w-80">
|
|
<div>
|
|
<ul class="flex-row">
|
|
<li><a class="{{ if eq $currentPath (absURL "/") }}active{{ end }}" href="{{ "/" | absURL }}">Overview</a></li>
|
|
<li><a class="{{ if eq $currentPath (absURL "/implementations/") }}active{{ end }}" href="{{ "/implementations/" | absURL }}">Implementations</a></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<a class="btn lv2" target="_blank" href="https://simplecloud.info">Other resources ↗</a>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</header>
|