Fixed broken menu items and added new content
Some checks failed
Deploy to Netlify / Deploy Hugo site to Netlify (push) Failing after 11s
Some checks failed
Deploy to Netlify / Deploy Hugo site to Netlify (push) Failing after 11s
This commit is contained in:
32
layouts/partials/site-navigation.html
Normal file
32
layouts/partials/site-navigation.html
Normal file
@ -0,0 +1,32 @@
|
||||
<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>
|
Reference in New Issue
Block a user