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

1234567891011121314151617181920212223242526
  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. a(href="/")
  7. h3 navigation
  8. li.f-grow
  9. p &nbsp;
  10. li
  11. a(href="/") home
  12. li
  13. a(href="/posts") news
  14. li
  15. a(href="/artists") artists
  16. li
  17. a(href="/episodes") episodes
  18. </template>
  19. <style lang="postcss">
  20. @import '../../sss/variables.sss'
  21. nav.main
  22. ul
  23. width: $max-width
  24. </style>