This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
coopcloud.tech/themes/coopcloud.tech/layouts/partials/header.html

13 lines
400 B
HTML

<nav id="header" class="level is-mobile">
<a class="level-item has-text-centered" href="{{ .Site.BaseURL }}">
<img src="/svg/coopcloud_logo_grey.svg" alt="CoopCloud Logo" style="height: 100px;">
</a>
<div>
{{ range .Site.Menus.main }}
<a class="nav-link" href="{{ .URL }}">
{{ $text := print .Name | safeHTML }}
{{ $text }}
</a>
{{ end }}
</div>
</nav>