scim-docs/themes/Indiiie/layouts/partials/header.html

18 lines
810 B
HTML
Raw Normal View History

2024-08-29 10:10:19 +00:00
<header id="header">
{{ $currentPath := .Permalink }}
<div class="flex-row space-between baseline">
<div class="flex-row baseline">
<div id="logo">
{{- partial (printf "svg/scim.svg") . -}}
</div>
<nav id="menu" class="flex-row">
<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>
</nav>
</div>
<a class="btn lv2" target="_blank" href="https://simplecloud.info">See the official spec ↗</a>
</div>
</header>