2024-08-29 10:10:19 +00:00
|
|
|
<header id="header">
|
|
|
|
{{ $currentPath := .Permalink }}
|
2024-10-03 19:43:59 +00:00
|
|
|
<div class="flex-row baseline">
|
2024-08-29 10:10:19 +00:00
|
|
|
<div id="logo">
|
|
|
|
{{- partial (printf "svg/scim.svg") . -}}
|
|
|
|
</div>
|
2024-10-03 19:43:59 +00:00
|
|
|
<div id="logo-menu">
|
|
|
|
<a>{{- partial (printf "svg/menu.svg") . -}}</a>
|
2024-08-29 10:10:19 +00:00
|
|
|
</div>
|
2024-10-03 19:43:59 +00:00
|
|
|
<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">See the official spec ↗</a>
|
|
|
|
</div>
|
|
|
|
</nav>
|
2024-08-29 10:10:19 +00:00
|
|
|
</div>
|
|
|
|
</header>
|