NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

footer.vue 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template lang="pug">
  2. .footer-wrapper.f-col.between.t-up.t-sans
  3. footer.f-row
  4. //- address contact
  5. ul
  6. li
  7. h5 Craft in America
  8. ul
  9. li 8415 W. Third St.
  10. li Los Angeles, CA 90048
  11. li Tues–Sat, 12PM–6PM
  12. li (310) 659-9022 office
  13. li (323) 951-0610 center
  14. li
  15. router-link(to="mailto:info@craftinamerica.org") info@craftinamerica.org
  16. //- menu links
  17. ul.f-row
  18. li
  19. h5
  20. router-link(to="/episodes") PBS Series
  21. ul
  22. li Episodes
  23. li Shorts
  24. li Techniques
  25. li
  26. h5
  27. router-link(to="/artists") Artists
  28. ul
  29. li
  30. router-link(to="/artists/by-alpha") A-Z
  31. li
  32. router-link(to="/artists/by-material") By Material
  33. li
  34. h5
  35. router-link(to="/exhibitions") Exhibitions
  36. ul
  37. li Current/Upcoming
  38. li Past
  39. li Permanent Collection
  40. li Explore Craft Objects
  41. li
  42. h5
  43. router-link(to="/events") Events
  44. ul
  45. li Talks
  46. li
  47. h5
  48. router-link(to="/center") Center
  49. ul
  50. li Publications
  51. li Library
  52. li
  53. h5
  54. router-link(to="/support") Support
  55. ul
  56. li Donate
  57. li Shop
  58. li
  59. h5
  60. router-link(to="/about") About
  61. ul
  62. li Mission
  63. li Staff
  64. li Board
  65. li Contact
  66. li
  67. h5
  68. router-link(to="/posts") News
  69. ul
  70. li Blog Posts
  71. li Press Releases
  72. li In the News
  73. //- mailing social links
  74. ul
  75. li
  76. h5 Connect with Us
  77. ul
  78. li
  79. a(href="https://www.facebook.com/CraftinAmerica") Facebook
  80. li
  81. a(href="http://www.youtube.com/user/craftinamerica") YouTube
  82. li
  83. a(href="http://www.instagram.com/craftinamerica") Instagram
  84. li
  85. a(href="https://twitter.com/CraftinAmerica") Twitter
  86. li
  87. a(href="") Join email list
  88. .sub-footer
  89. p Craft in America &copy; 2010&ndash;2021
  90. </template>
  91. <script>
  92. </script>
  93. <style lang="postcss">
  94. @import '../sss/variables.sss'
  95. .footer-wrapper
  96. > footer
  97. width: $max-width
  98. background-color: $cia_red
  99. padding: 2em 2em 3em // top leftright bottom
  100. > ul.f-row
  101. align-items: left
  102. // ALL <ul> tags
  103. ul
  104. list-style: none
  105. // OUTER <ul> tags
  106. > ul
  107. padding: 0 0 1em
  108. > li
  109. padding: 0 0.5em 0
  110. h5
  111. color: $cia_white
  112. a
  113. color: $cia_white
  114. .sub-footer
  115. width: $max-width
  116. background-color: $cia_black
  117. padding: 0.5em
  118. text-align: center
  119. p
  120. font-size: 0.8em
  121. color: $cia_grey
  122. </style>