Some checks failed
Deploy to Netlify / Deploy Hugo site to Netlify (push) Failing after 11s
33 lines
1.6 KiB
HTML
33 lines
1.6 KiB
HTML
<nav class="pv3 ph3 ph4-ns" role="navigation">
|
|
<div class="flex-l center items-center justify-between">
|
|
<a href="{{ .Site.Home.RelPermalink }}" class="f3 fw2 hover-white white-90 dib no-underline">
|
|
{{ with .Site.Params.site_logo }}
|
|
<img src="{{ urls.RelURL . }}" class="w100 mw5-ns" alt="{{ $.Site.Title }}" />
|
|
{{ else }}
|
|
{{ .Site.Title }}
|
|
{{ end }}
|
|
</a>
|
|
<div class="flex-l items-center">
|
|
{{ partials.Include "i18nlist.html" . }}
|
|
{{ if .Site.Menus.main }}
|
|
<ul class="{{ compare.Conditional (compare.Eq $.Site.Language.LanguageDirection "rtl") "pr0 ml3" "pl0 mr3" }}">
|
|
{{ range .Site.Menus.main }}
|
|
<li class="list f5 f4-ns fw4 dib {{ compare.Conditional (compare.Eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
|
|
<a class="hover-white white-90 no-underline" href="{{ .URL }}" title="{{ lang.Translate "pageTitle" . }}">
|
|
{{ .Name }}
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
<li class="list f5 f4-ns fw4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
|
|
<a class="hover-white no-underline white-90" href="/tags/Gallery" title="Galleries">Galleries</a>
|
|
</li>
|
|
<li class="list f5 f4-ns fw4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
|
|
<a class="hover-white no-underline white-90" href="https://www.bonfire.com/new-beginnings-community-operations/" target="_blank" rel="noreferrer noopener" title="Fundraising">Fundraising</a>
|
|
</li>
|
|
</ul>
|
|
{{ end }}
|
|
{{ partials.IncludeCached "social/follow.html" . }}
|
|
</div>
|
|
</div>
|
|
</nav>
|