Files
website-hugo/themes/lhs/layouts/partials/header.html
Kian Ryan fe336dddbd New logo
2024-06-14 16:16:32 +01:00

48 lines
1.9 KiB
HTML

<nav class="navbar is-spaced">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="{{ absURL "" }}">
<img class="site-logo" src="{{ absURL "images/long_logo_solo_whitebg.svg" }}" alt="The logo of Leigh Hackspace" width="150">
</a>
<a role="button" class="navbar-burger" aria-label="open menu" aria-expanded="false" data-target="navbar">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar" class="navbar-menu has-text-centered-touch is-size-5-touch">
<div class="navbar-start is-half">
{{- range site.Menus.main }}
<a href="{{ .URL }}" class="active navbar-item has-shadow is-size-5">{{ .Name }}</a>
{{- end }}
<div class="navbar-item has-shadow">
<div class="buttons is-block-touch is-fullwidth-touch">
<a href="{{ ref . "membership" }}" class="button is-primary is-rounded is-size-5">
<strong>Become a member</strong>
</a>
</div>
</div>
</div>
<div class="navbar-end navbar--social-links">
{{- with .Site.Params.social_links }}
{{ range . -}}
<div class="navbar-item is-inline-block-touch">
<span class="icon">
<a href="{{ .url | safeURL }}" target="_blank" rel="noopener me"
title="{{ .name | humanize }}"><i class="{{ .icon }}" aria-hidden="true"></i></a>
</span>
</div>
{{ end }}
{{- end }}
</div>
</div>
</div>
</nav>