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

7 years ago
7 years ago
1234567891011121314151617181920
  1. <nav class="pv3 ph3 ph4-ns" role="navigation">
  2. <div class="flex-ns justify-between items-center">
  3. <a href="/" class="f3 fw8 hover-white no-underline white-90 dib">
  4. {{ .Site.Title }}
  5. </a>
  6. {{ if .Site.Menus.main }}
  7. <ul class="pl0 mr3">
  8. {{ range .Site.Menus.main }}
  9. <li class="list f5 f4-ns fw4 dib pr3">
  10. <a class="hover-white no-underline white-70" href="{{ .URL }}" >
  11. {{ .Name }}
  12. </a>
  13. </li>
  14. {{ end }}
  15. </ul>
  16. {{ end }}
  17. </div>
  18. </nav>