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 694B

7 anni fa
123456789101112131415161718192021
  1. <nav class="pv3 ph3 ph4-ns" role="navigation">
  2. <div class="flex-l justify-between items-center center">
  3. <a href="{{ .Site.BaseURL }}" class="f3 fw2 hover-white no-underline white-90 dib">
  4. {{ .Site.Title }}
  5. </a>
  6. <div class="flex-l items-center">
  7. {{ if .Site.Menus.main }}
  8. <ul class="pl0 mr3">
  9. {{ range .Site.Menus.main }}
  10. <li class="list f5 f4-ns fw4 dib pr3">
  11. <a class="hover-white no-underline white-90" href="{{ .URL }}" title="{{ .Name }} page">
  12. {{ .Name }}
  13. </a>
  14. </li>
  15. {{ end }}
  16. </ul>
  17. {{ end }}
  18. {{ partial "social-follow.html" . }}
  19. </div>
  20. </div>
  21. </nav>