NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

navigation.vue 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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;logotype
  9. li.f-grow
  10. p &nbsp;
  11. li
  12. router-link(:to="`/`")
  13. p.t-up home
  14. li
  15. router-link(:to="`/episodes`")
  16. p.t-up pbs series
  17. li
  18. router-link(:to="`/artists`")
  19. p.t-up artists
  20. li
  21. router-link(:to="`/exhibitions`")
  22. p.t-up exhibitions
  23. li
  24. router-link(:to="`/events`")
  25. p.t-up events
  26. li
  27. router-link(:to="`/center`")
  28. p.t-up center
  29. li
  30. router-link(:to="`/education`")
  31. p.t-up education
  32. li
  33. router-link(:to="`/posts`")
  34. p.t-up news
  35. li
  36. router-link(:to="`/support`")
  37. p.t-up support
  38. li
  39. router-link(:to="`/search`")
  40. p.t-up search
  41. </template>
  42. <style lang="postcss">
  43. @import '../../sss/variables.sss'
  44. nav.main
  45. position: sticky
  46. top: 0
  47. ul
  48. width: $max-width
  49. </style>