NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
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.

navigation.vue 689B

12345678910111213141516171819202122232425262728293031
  1. // Replace with calls to menu system
  2. <template lang="pug">
  3. nav.main.f-row.center
  4. ul.f-row.between
  5. li
  6. router-link(to="/")
  7. h1.t-up x
  8. span.t-up &nbsp;navigation
  9. li.f-grow
  10. p &nbsp;
  11. li
  12. router-link(to="/")
  13. p.t-up home
  14. li
  15. router-link(to="/posts")
  16. p.t-up news
  17. li
  18. router-link(to="/artists")
  19. p.t-up artists
  20. li
  21. router-link(to="/episodes")
  22. p.t-up episodes
  23. </template>
  24. <style lang="postcss">
  25. @import '../../sss/variables.sss'
  26. nav.main
  27. ul
  28. width: $max-width
  29. </style>