You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

site-navigation.html 898B

1234567891011121314151617181920212223242526
  1. <nav class="pv3 ph3 ph4-ns" role="navigation">
  2. <div class="flex-l justify-between items-center center">
  3. <a href="{{ .Site.Home.RelPermalink }}" class="f3 fw2 hover-white no-underline white-90 dib">
  4. {{ with .Site.Params.site_logo }}
  5. <img src="{{ . }}" class="w100 mw5-ns" alt="{{ $.Site.Title }}" />
  6. {{ else }}
  7. {{ .Site.Title }}
  8. {{ end }}
  9. </a>
  10. <div class="flex-l items-center">
  11. {{ partial "i18nlist.html" . }}
  12. {{ if .Site.Menus.main }}
  13. <ul class="pl0 mr3">
  14. {{ range .Site.Menus.main }}
  15. <li class="list f5 f4-ns fw4 dib pr3">
  16. <a class="hover-white no-underline white-90" href="{{ .URL }}" title="{{ .Name }} page">
  17. {{ .Name }}
  18. </a>
  19. </li>
  20. {{ end }}
  21. </ul>
  22. {{ end }}
  23. {{ partialCached "social-follow.html" . }}
  24. </div>
  25. </div>
  26. </nav>