gohugo-theme-ananke/layouts/partials/site-navigation.html

23 lines
738 B
HTML
Raw Normal View History

2017-04-11 14:53:11 +02:00
<nav class="pv3 ph3 ph4-ns" role="navigation">
2017-04-14 18:47:59 +02:00
<div class="flex-l justify-between items-center center">
2017-04-15 15:27:28 +02:00
<a href="{{ .Site.BaseURL }}" class="f3 fw2 hover-white no-underline white-90 dib">
2017-04-11 05:48:09 +02:00
{{ .Site.Title }}
</a>
2017-04-14 18:37:12 +02:00
<div class="flex-l items-center">
{{ partial "i18nlist.html" . }}
2017-04-14 18:37:12 +02:00
{{ if .Site.Menus.main }}
<ul class="pl0 mr3">
{{ range .Site.Menus.main }}
<li class="list f5 f4-ns fw4 dib pr3">
2017-04-14 18:47:59 +02:00
<a class="hover-white no-underline white-90" href="{{ .URL }}" title="{{ .Name }} page">
2017-04-14 18:37:12 +02:00
{{ .Name }}
</a>
</li>
{{ end }}
</ul>
{{ end }}
{{ partialCached "social-follow.html" . }}
2017-04-14 18:37:12 +02:00
</div>
2017-04-11 03:27:13 +02:00
</div>
</nav>