scim-docs/themes/Indiiie/layouts/partials/header.html
timothe.jeanne c05dbd1457
All checks were successful
/ build (push) Successful in 22s
/ deploy (push) Successful in 4s
redaction corrections (changing "we"/"us"/"our" for a more neutral explanation)
2024-10-08 17:02:24 +02:00

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>