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

7 年之前
12345678910111213141516
  1. <nav class="w-100 flex-ns justify-between items-center pv3" role="navigation">
  2. <a href="/" class="f3 fw8 hover-white no-underline white-90 dib pv2 ph3">
  3. {{ .Site.Title }}
  4. </a>
  5. <div>
  6. <ul>
  7. {{ range .Site.Menus.main }}
  8. <li class="list f5 f4-ns fw4 dib">
  9. <a class="hover-white no-underline white-70 pv2 ph3" href="{{ .URL }}" >
  10. {{ .Name }}
  11. </a>
  12. </li>
  13. {{ end }}
  14. </ul>
  15. </div>
  16. </nav>