uswds-jekyll 3.0.0 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (756) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +345 -240
  3. data/_includes/analytics.html +7 -10
  4. data/_includes/components/banner.html +36 -13
  5. data/_includes/components/footer--big.html +142 -0
  6. data/_includes/components/footer--default.html +104 -0
  7. data/_includes/components/footer--slim.html +93 -0
  8. data/_includes/components/github-edit.html +3 -0
  9. data/_includes/components/graphic-list.html +13 -11
  10. data/_includes/components/header.html +161 -0
  11. data/_includes/components/hero.html +6 -13
  12. data/_includes/components/search.html +31 -0
  13. data/_includes/footer.html +7 -1
  14. data/_includes/header.html +1 -5
  15. data/_includes/meta.html +7 -1
  16. data/_includes/project-list.html +14 -0
  17. data/_includes/scripts.html +7 -5
  18. data/_includes/sidenav.html +23 -20
  19. data/_includes/styles.html +5 -9
  20. data/_includes/subnav.html +1 -1
  21. data/_includes/team-list.html +13 -0
  22. data/_layouts/default.html +40 -4
  23. data/_layouts/home.html +5 -26
  24. data/_layouts/page.html +19 -13
  25. data/_layouts/post.html +2 -14
  26. data/_layouts/project.html +23 -0
  27. data/_layouts/team-member.html +34 -0
  28. data/_sass/_uswds-theme-custom-styles.scss +0 -0
  29. data/_sass/_uswds-theme-override-settings.scss +2 -0
  30. data/_sass/_uswds-theme-packages.scss +1 -0
  31. data/_sass/_uswds-theme-settings.scss +0 -0
  32. data/_sass/uswds/components/_all.scss +8 -0
  33. data/_sass/uswds/components/_alt-color-section.scss +34 -0
  34. data/_sass/uswds/components/_card.scss +63 -0
  35. data/_sass/uswds/components/_footer.scss +16 -502
  36. data/_sass/uswds/components/_header.scss +30 -198
  37. data/_sass/uswds/components/_hero.scss +37 -29
  38. data/_sass/uswds/components/_nav-buttons.scss +24 -0
  39. data/_sass/uswds/components/_side-nav.scss +48 -0
  40. data/_sass/uswds/components/_site-width.scss +6 -0
  41. data/_sass/uswds/components/_top-nav.scss +84 -0
  42. data/_sass/uswds/components/_usa-banner.scss +30 -0
  43. data/_sass/uswds/custom/_uswds-theme-custom-styles.scss +47 -0
  44. data/_sass/uswds/settings/_uswds-conversion-variables.scss +0 -0
  45. data/_sass/uswds/src/base/_accessibility.scss +3 -0
  46. data/_sass/uswds/src/base/_body.scss +5 -0
  47. data/_sass/uswds/src/components/_accordions.scss +116 -0
  48. data/_sass/uswds/src/components/_alerts.scss +144 -0
  49. data/_sass/uswds/src/components/_banner.scss +226 -0
  50. data/_sass/uswds/src/components/_button-groups.scss +134 -0
  51. data/_sass/uswds/src/components/_card.scss +346 -0
  52. data/_sass/uswds/src/components/_checklist.scss +17 -0
  53. data/_sass/uswds/src/components/_footer.scss +349 -0
  54. data/_sass/uswds/src/components/_forms.scss +54 -0
  55. data/_sass/uswds/src/components/_graphic-list.scss +42 -0
  56. data/_sass/uswds/src/components/_header.scss +287 -0
  57. data/_sass/uswds/src/components/_hero.scss +32 -0
  58. data/_sass/uswds/src/components/_layout.scss +15 -0
  59. data/_sass/uswds/src/components/_media-block.scss +7 -0
  60. data/_sass/uswds/src/components/_megamenu.scss +42 -0
  61. data/_sass/uswds/src/components/_nav-container.scss +7 -0
  62. data/_sass/uswds/src/components/_navbar.scss +16 -0
  63. data/_sass/uswds/src/components/_navigation.scss +348 -0
  64. data/_sass/uswds/src/components/_search.scss +98 -0
  65. data/_sass/uswds/src/components/_section.scss +38 -0
  66. data/_sass/uswds/src/components/_sidenav.scss +19 -0
  67. data/_sass/uswds/{components → src/components}/_skipnav.scss +7 -6
  68. data/_sass/uswds/{core → src/core}/_defaults.scss +1 -1
  69. data/_sass/uswds/src/core/_deprecated.scss +33 -0
  70. data/_sass/uswds/src/core/_functions.scss +1323 -0
  71. data/_sass/uswds/src/core/_notifications.scss +86 -0
  72. data/_sass/uswds/src/core/_properties.scss +687 -0
  73. data/_sass/uswds/src/core/_system-tokens.scss +1673 -0
  74. data/_sass/uswds/src/core/_variables.scss +534 -0
  75. data/_sass/uswds/src/core/mixins/_add-aspect.scss +17 -0
  76. data/_sass/uswds/src/core/mixins/_add-background-svg.scss +9 -0
  77. data/_sass/uswds/src/core/mixins/_add-bar.scss +43 -0
  78. data/_sass/uswds/src/core/mixins/_add-checkbox-placeholder.scss +15 -0
  79. data/_sass/uswds/src/core/mixins/_add-kerning.scss +4 -0
  80. data/_sass/uswds/src/core/mixins/_add-knockout-font-smoothing.scss +9 -0
  81. data/_sass/uswds/src/core/mixins/_add-list-reset.scss +15 -0
  82. data/_sass/uswds/src/core/mixins/_add-responsive-site-margins.scss +6 -0
  83. data/_sass/uswds/src/core/mixins/_add-success-mark.scss +7 -0
  84. data/_sass/uswds/src/core/mixins/_all.scss +86 -0
  85. data/_sass/uswds/src/core/mixins/_at-media.scss +36 -0
  86. data/_sass/uswds/src/core/mixins/_border-box-sizing.scss +19 -0
  87. data/_sass/uswds/src/core/mixins/_button-disabled.scss +17 -0
  88. data/_sass/uswds/src/core/mixins/_button-unstyled.scss +20 -0
  89. data/_sass/uswds/src/core/mixins/_clearfix.scss +7 -0
  90. data/_sass/uswds/src/core/mixins/_embed-container.scss +3 -0
  91. data/_sass/uswds/src/core/mixins/_external-link.scss +21 -0
  92. data/_sass/uswds/src/core/mixins/_focus.scss +14 -0
  93. data/_sass/uswds/src/core/mixins/_font-face.scss +103 -0
  94. data/_sass/uswds/src/core/mixins/_icon.scss +64 -0
  95. data/_sass/uswds/src/core/mixins/_layout-grid.scss +128 -0
  96. data/_sass/uswds/src/core/mixins/_media-block-img.scss +4 -0
  97. data/_sass/uswds/{elements/_figure.scss → src/core/mixins/_media-link.scss} +0 -8
  98. data/_sass/uswds/src/core/mixins/_nav-list.scss +95 -0
  99. data/_sass/uswds/src/core/mixins/_override-prose.scss +6 -0
  100. data/_sass/uswds/src/core/mixins/_screen-reader.scss +23 -0
  101. data/_sass/uswds/src/core/mixins/_typography.scss +161 -0
  102. data/_sass/uswds/src/core/mixins/_unstyled-list.scss +11 -0
  103. data/_sass/uswds/src/core/mixins/_usa-list-styles.scss +10 -0
  104. data/_sass/uswds/src/core/mixins/_usa-table-styles.scss +8 -0
  105. data/_sass/uswds/src/core/mixins/_usa-typography.scss +54 -0
  106. data/_sass/uswds/src/core/mixins/_utility-builder.scss +369 -0
  107. data/_sass/uswds/src/core/mixins/layout-grid/_grid-container.scss +14 -0
  108. data/_sass/uswds/src/core/mixins/layout-grid/_grid-row.scss +7 -0
  109. data/_sass/uswds/src/core/mixins/utilities/_align-items.scss +11 -0
  110. data/_sass/uswds/src/core/mixins/utilities/_background-color.scss +9 -0
  111. data/_sass/uswds/src/core/mixins/utilities/_border-color.scss +11 -0
  112. data/_sass/uswds/src/core/mixins/utilities/_border-radius.scss +55 -0
  113. data/_sass/uswds/src/core/mixins/utilities/_border-width.scss +32 -0
  114. data/_sass/uswds/src/core/mixins/utilities/_border.scss +142 -0
  115. data/_sass/uswds/src/core/mixins/utilities/_bottom.scss +10 -0
  116. data/_sass/uswds/src/core/mixins/utilities/_circle.scss +9 -0
  117. data/_sass/uswds/src/core/mixins/utilities/_color.scss +10 -0
  118. data/_sass/uswds/src/core/mixins/utilities/_cursor.scss +10 -0
  119. data/_sass/uswds/src/core/mixins/utilities/_display.scss +11 -0
  120. data/_sass/uswds/src/core/mixins/utilities/_flex-direction.scss +10 -0
  121. data/_sass/uswds/src/core/mixins/utilities/_flex.scss +50 -0
  122. data/_sass/uswds/src/core/mixins/utilities/_float.scss +10 -0
  123. data/_sass/uswds/src/core/mixins/utilities/_font-weight.scss +10 -0
  124. data/_sass/uswds/src/core/mixins/utilities/_font.scss +42 -0
  125. data/_sass/uswds/src/core/mixins/utilities/_height.scss +11 -0
  126. data/_sass/uswds/src/core/mixins/utilities/_justify-content.scss +10 -0
  127. data/_sass/uswds/src/core/mixins/utilities/_left.scss +10 -0
  128. data/_sass/uswds/src/core/mixins/utilities/_line-height.scss +13 -0
  129. data/_sass/uswds/src/core/mixins/utilities/_margin.scss +85 -0
  130. data/_sass/uswds/src/core/mixins/utilities/_max-height.scss +10 -0
  131. data/_sass/uswds/src/core/mixins/utilities/_max-width.scss +10 -0
  132. data/_sass/uswds/src/core/mixins/utilities/_measure.scss +10 -0
  133. data/_sass/uswds/src/core/mixins/utilities/_min-height.scss +10 -0
  134. data/_sass/uswds/src/core/mixins/utilities/_min-width.scss +10 -0
  135. data/_sass/uswds/src/core/mixins/utilities/_order.scss +10 -0
  136. data/_sass/uswds/src/core/mixins/utilities/_outline-color.scss +10 -0
  137. data/_sass/uswds/src/core/mixins/utilities/_outline.scss +35 -0
  138. data/_sass/uswds/src/core/mixins/utilities/_overflow.scss +28 -0
  139. data/_sass/uswds/src/core/mixins/utilities/_padding.scss +49 -0
  140. data/_sass/uswds/src/core/mixins/utilities/_pin.scss +82 -0
  141. data/_sass/uswds/src/core/mixins/utilities/_position.scss +10 -0
  142. data/_sass/uswds/src/core/mixins/utilities/_right.scss +10 -0
  143. data/_sass/uswds/src/core/mixins/utilities/_shadow.scss +10 -0
  144. data/_sass/uswds/src/core/mixins/utilities/_square.scss +7 -0
  145. data/_sass/uswds/src/core/mixins/utilities/_text-align.scss +10 -0
  146. data/_sass/uswds/src/core/mixins/utilities/_text-decoration-color.scss +10 -0
  147. data/_sass/uswds/src/core/mixins/utilities/_text-decoration.scss +17 -0
  148. data/_sass/uswds/src/core/mixins/utilities/_text-indent.scss +10 -0
  149. data/_sass/uswds/src/core/mixins/utilities/_text.scss +72 -0
  150. data/_sass/uswds/src/core/mixins/utilities/_top.scss +10 -0
  151. data/_sass/uswds/src/core/mixins/utilities/_vertical-align.scss +10 -0
  152. data/_sass/uswds/src/core/mixins/utilities/_white-space.scss +10 -0
  153. data/_sass/uswds/src/core/mixins/utilities/_width.scss +11 -0
  154. data/_sass/uswds/src/core/mixins/utilities/_z-index.scss +10 -0
  155. data/_sass/uswds/src/core/placeholders/_all.scss +2 -0
  156. data/_sass/uswds/src/core/placeholders/_list.scss +18 -0
  157. data/_sass/uswds/src/core/placeholders/_table.scss +58 -0
  158. data/_sass/uswds/src/core/system-tokens/_blue-cool.scss +26 -0
  159. data/_sass/uswds/src/core/system-tokens/_blue-warm.scss +26 -0
  160. data/_sass/uswds/src/core/system-tokens/_blue.scss +26 -0
  161. data/_sass/uswds/src/core/system-tokens/_cyan.scss +26 -0
  162. data/_sass/uswds/src/core/system-tokens/_gold.scss +26 -0
  163. data/_sass/uswds/src/core/system-tokens/_gray-cool.scss +18 -0
  164. data/_sass/uswds/src/core/system-tokens/_gray-warm.scss +18 -0
  165. data/_sass/uswds/src/core/system-tokens/_gray.scss +19 -0
  166. data/_sass/uswds/src/core/system-tokens/_green-cool.scss +26 -0
  167. data/_sass/uswds/src/core/system-tokens/_green-warm.scss +26 -0
  168. data/_sass/uswds/src/core/system-tokens/_green.scss +26 -0
  169. data/_sass/uswds/src/core/system-tokens/_indigo-cool.scss +26 -0
  170. data/_sass/uswds/src/core/system-tokens/_indigo-warm.scss +26 -0
  171. data/_sass/uswds/src/core/system-tokens/_indigo.scss +26 -0
  172. data/_sass/uswds/src/core/system-tokens/_magenta.scss +26 -0
  173. data/_sass/uswds/src/core/system-tokens/_mint-cool.scss +26 -0
  174. data/_sass/uswds/src/core/system-tokens/_mint.scss +26 -0
  175. data/_sass/uswds/src/core/system-tokens/_orange-warm.scss +26 -0
  176. data/_sass/uswds/src/core/system-tokens/_orange.scss +26 -0
  177. data/_sass/uswds/src/core/system-tokens/_red-cool.scss +26 -0
  178. data/_sass/uswds/src/core/system-tokens/_red-warm.scss +26 -0
  179. data/_sass/uswds/src/core/system-tokens/_red.scss +26 -0
  180. data/_sass/uswds/src/core/system-tokens/_violet-warm.scss +26 -0
  181. data/_sass/uswds/src/core/system-tokens/_violet.scss +26 -0
  182. data/_sass/uswds/src/core/system-tokens/_yellow.scss +26 -0
  183. data/_sass/uswds/src/elements/_buttons.scss +217 -0
  184. data/_sass/uswds/{elements → src/elements}/_embed.scss +0 -4
  185. data/_sass/uswds/src/elements/_figure.scss +7 -0
  186. data/_sass/uswds/src/elements/_layout-grid.scss +159 -0
  187. data/_sass/uswds/src/elements/_table.scss +7 -0
  188. data/_sass/uswds/src/elements/_tags.scss +18 -0
  189. data/_sass/uswds/src/elements/form-controls/_all.scss +9 -0
  190. data/_sass/uswds/src/elements/form-controls/_character-count.scss +9 -0
  191. data/_sass/uswds/src/elements/form-controls/_checkbox-and-radio.scss +115 -0
  192. data/_sass/uswds/src/elements/form-controls/_combo-box.scss +55 -0
  193. data/_sass/uswds/src/elements/form-controls/_date-input.scss +31 -0
  194. data/_sass/uswds/src/elements/form-controls/_dropdown.scss +25 -0
  195. data/_sass/uswds/src/elements/form-controls/_file-input.scss +4 -0
  196. data/_sass/uswds/src/elements/form-controls/_global.scss +84 -0
  197. data/_sass/uswds/src/elements/form-controls/_range-input.scss +89 -0
  198. data/_sass/uswds/src/elements/form-controls/_text-input.scss +13 -0
  199. data/_sass/uswds/src/elements/typography/_content.scss +62 -0
  200. data/_sass/uswds/src/elements/typography/_links.scss +15 -0
  201. data/_sass/uswds/src/elements/typography/_list.scss +14 -0
  202. data/_sass/uswds/src/elements/typography/_prose.scss +6 -0
  203. data/_sass/uswds/src/global/_focus.scss +24 -0
  204. data/_sass/uswds/src/global/_font-face.scss +11 -0
  205. data/_sass/uswds/src/global/_sizing.scss +14 -0
  206. data/_sass/uswds/src/global/_typography.scss +32 -0
  207. data/_sass/uswds/src/lib/_normalize.scss +349 -0
  208. data/_sass/uswds/src/packages/_form-controls.scss +4 -0
  209. data/_sass/uswds/src/packages/_form-templates.scss +8 -0
  210. data/_sass/uswds/src/packages/_global.scss +7 -0
  211. data/_sass/uswds/src/packages/_layout-grid.scss +4 -0
  212. data/_sass/uswds/src/packages/_required.scss +21 -0
  213. data/_sass/uswds/src/packages/_typography.scss +7 -0
  214. data/_sass/uswds/src/packages/_usa-accordion.scss +4 -0
  215. data/_sass/uswds/src/packages/_usa-alert.scss +4 -0
  216. data/_sass/uswds/src/packages/_usa-banner.scss +7 -0
  217. data/_sass/uswds/src/packages/_usa-button-group.scss +2 -0
  218. data/_sass/uswds/src/packages/_usa-button.scss +4 -0
  219. data/_sass/uswds/src/packages/_usa-card.scss +4 -0
  220. data/_sass/uswds/src/packages/_usa-checklist.scss +4 -0
  221. data/_sass/uswds/src/packages/_usa-footer.scss +10 -0
  222. data/_sass/uswds/src/packages/_usa-header.scss +13 -0
  223. data/_sass/uswds/src/packages/_usa-hero.scss +6 -0
  224. data/_sass/uswds/src/packages/_usa-media-block.scss +5 -0
  225. data/_sass/uswds/src/packages/_usa-megamenu.scss +4 -0
  226. data/_sass/uswds/src/packages/_usa-nav-container.scss +4 -0
  227. data/_sass/uswds/src/packages/_usa-nav.scss +5 -0
  228. data/_sass/uswds/src/packages/_usa-navbar.scss +4 -0
  229. data/_sass/uswds/src/packages/_usa-search.scss +8 -0
  230. data/_sass/uswds/src/packages/_usa-sidenav.scss +4 -0
  231. data/_sass/uswds/src/packages/_usa-skipnav.scss +4 -0
  232. data/_sass/uswds/src/packages/_usa-table.scss +4 -0
  233. data/_sass/uswds/src/packages/_usa-tag.scss +4 -0
  234. data/_sass/uswds/src/packages/_uswds-components.scss +44 -0
  235. data/_sass/uswds/src/packages/_uswds-fonts.scss +2 -0
  236. data/_sass/uswds/src/packages/_uswds-utilities.scss +6 -0
  237. data/_sass/uswds/src/packages/_validation.scss +8 -0
  238. data/_sass/uswds/src/settings/_settings-color.scss +133 -0
  239. data/_sass/uswds/src/settings/_settings-components.scss +85 -0
  240. data/_sass/uswds/src/settings/_settings-general.scss +101 -0
  241. data/_sass/uswds/src/settings/_settings-spacing.scss +93 -0
  242. data/_sass/uswds/src/settings/_settings-typography.scss +422 -0
  243. data/_sass/uswds/src/settings/_settings-utilities.scss +853 -0
  244. data/_sass/uswds/src/theme/_uswds-theme-color.scss +133 -0
  245. data/_sass/uswds/src/theme/_uswds-theme-components.scss +85 -0
  246. data/_sass/uswds/src/theme/_uswds-theme-custom-styles.scss +21 -0
  247. data/_sass/uswds/src/theme/_uswds-theme-general.scss +101 -0
  248. data/_sass/uswds/src/theme/_uswds-theme-spacing.scss +93 -0
  249. data/_sass/uswds/src/theme/_uswds-theme-typography.scss +422 -0
  250. data/_sass/uswds/src/theme/_uswds-theme-utilities.scss +854 -0
  251. data/_sass/uswds/src/theme/styles.scss +72 -0
  252. data/_sass/uswds/src/uswds.scss +17 -0
  253. data/_sass/uswds/src/utilities/palettes/_all.scss +41 -0
  254. data/_sass/uswds/src/utilities/palettes/_default-palettes.scss +72 -0
  255. data/_sass/uswds/src/utilities/palettes/_font-palettes.scss +2762 -0
  256. data/_sass/uswds/src/utilities/palettes/_palette-registry.scss +46 -0
  257. data/_sass/uswds/src/utilities/palettes/_spacing-palettes.scss +135 -0
  258. data/_sass/uswds/src/utilities/palettes/colors/_all-colors-palettes.scss +56 -0
  259. data/_sass/uswds/src/utilities/palettes/colors/_black-transparent-palettes.scss +16 -0
  260. data/_sass/uswds/src/utilities/palettes/colors/_blue-cool-palettes.scss +69 -0
  261. data/_sass/uswds/src/utilities/palettes/colors/_blue-palettes.scss +66 -0
  262. data/_sass/uswds/src/utilities/palettes/colors/_blue-warm-palettes.scss +69 -0
  263. data/_sass/uswds/src/utilities/palettes/colors/_cyan-palettes.scss +66 -0
  264. data/_sass/uswds/src/utilities/palettes/colors/_gold-palettes.scss +66 -0
  265. data/_sass/uswds/src/utilities/palettes/colors/_gray-cool-palettes.scss +40 -0
  266. data/_sass/uswds/src/utilities/palettes/colors/_gray-palettes.scss +40 -0
  267. data/_sass/uswds/src/utilities/palettes/colors/_gray-warm-palettes.scss +40 -0
  268. data/_sass/uswds/src/utilities/palettes/colors/_green-cool-palettes.scss +69 -0
  269. data/_sass/uswds/src/utilities/palettes/colors/_green-palettes.scss +66 -0
  270. data/_sass/uswds/src/utilities/palettes/colors/_green-warm-palettes.scss +69 -0
  271. data/_sass/uswds/src/utilities/palettes/colors/_indigo-cool-palettes.scss +70 -0
  272. data/_sass/uswds/src/utilities/palettes/colors/_indigo-palettes.scss +66 -0
  273. data/_sass/uswds/src/utilities/palettes/colors/_indigo-warm-palettes.scss +70 -0
  274. data/_sass/uswds/src/utilities/palettes/colors/_magenta-palettes.scss +67 -0
  275. data/_sass/uswds/src/utilities/palettes/colors/_mint-cool-palettes.scss +69 -0
  276. data/_sass/uswds/src/utilities/palettes/colors/_mint-palettes.scss +66 -0
  277. data/_sass/uswds/src/utilities/palettes/colors/_orange-palettes.scss +66 -0
  278. data/_sass/uswds/src/utilities/palettes/colors/_orange-warm-palettes.scss +70 -0
  279. data/_sass/uswds/src/utilities/palettes/colors/_red-cool-palettes.scss +68 -0
  280. data/_sass/uswds/src/utilities/palettes/colors/_red-palettes.scss +66 -0
  281. data/_sass/uswds/src/utilities/palettes/colors/_red-warm-palettes.scss +68 -0
  282. data/_sass/uswds/src/utilities/palettes/colors/_violet-palettes.scss +66 -0
  283. data/_sass/uswds/src/utilities/palettes/colors/_violet-warm-palettes.scss +70 -0
  284. data/_sass/uswds/src/utilities/palettes/colors/_white-transparent-palettes.scss +16 -0
  285. data/_sass/uswds/src/utilities/palettes/colors/_yellow-palettes.scss +66 -0
  286. data/_sass/uswds/src/utilities/rules/_all.scss +56 -0
  287. data/_sass/uswds/src/utilities/rules/_package.scss +61 -0
  288. data/_sass/uswds/src/utilities/rules/add-aspect.scss +84 -0
  289. data/_sass/uswds/src/utilities/rules/add-list-reset.scss +39 -0
  290. data/_sass/uswds/src/utilities/rules/align-items.scss +30 -0
  291. data/_sass/uswds/src/utilities/rules/background-color.scss +32 -0
  292. data/_sass/uswds/src/utilities/rules/border-color.scss +32 -0
  293. data/_sass/uswds/src/utilities/rules/border-radius.scss +51 -0
  294. data/_sass/uswds/src/utilities/rules/border-style.scss +30 -0
  295. data/_sass/uswds/src/utilities/rules/border-width.scss +44 -0
  296. data/_sass/uswds/src/utilities/rules/border.scss +47 -0
  297. data/_sass/uswds/src/utilities/rules/bottom.scss +28 -0
  298. data/_sass/uswds/src/utilities/rules/box-shadow.scss +27 -0
  299. data/_sass/uswds/src/utilities/rules/circle.scss +35 -0
  300. data/_sass/uswds/src/utilities/rules/clearfix.scss +35 -0
  301. data/_sass/uswds/src/utilities/rules/color.scss +32 -0
  302. data/_sass/uswds/src/utilities/rules/cursor.scss +26 -0
  303. data/_sass/uswds/src/utilities/rules/display.scss +26 -0
  304. data/_sass/uswds/src/utilities/rules/flex-direction.scss +30 -0
  305. data/_sass/uswds/src/utilities/rules/flex-wrap.scss +27 -0
  306. data/_sass/uswds/src/utilities/rules/flex.scss +32 -0
  307. data/_sass/uswds/src/utilities/rules/float.scss +26 -0
  308. data/_sass/uswds/src/utilities/rules/font-family.scss +38 -0
  309. data/_sass/uswds/src/utilities/rules/font-feature.scss +31 -0
  310. data/_sass/uswds/src/utilities/rules/font-style.scss +29 -0
  311. data/_sass/uswds/src/utilities/rules/font-weight.scss +30 -0
  312. data/_sass/uswds/src/utilities/rules/font.scss +38 -0
  313. data/_sass/uswds/src/utilities/rules/height.scss +26 -0
  314. data/_sass/uswds/src/utilities/rules/justify-content.scss +32 -0
  315. data/_sass/uswds/src/utilities/rules/left.scss +28 -0
  316. data/_sass/uswds/src/utilities/rules/letter-spacing.scss +30 -0
  317. data/_sass/uswds/src/utilities/rules/line-height.scss +30 -0
  318. data/_sass/uswds/src/utilities/rules/margin.scss +70 -0
  319. data/_sass/uswds/src/utilities/rules/max-height.scss +27 -0
  320. data/_sass/uswds/src/utilities/rules/max-width.scss +27 -0
  321. data/_sass/uswds/src/utilities/rules/measure.scss +28 -0
  322. data/_sass/uswds/src/utilities/rules/min-height.scss +27 -0
  323. data/_sass/uswds/src/utilities/rules/min-width.scss +27 -0
  324. data/_sass/uswds/src/utilities/rules/opacity.scss +28 -0
  325. data/_sass/uswds/src/utilities/rules/order.scss +29 -0
  326. data/_sass/uswds/src/utilities/rules/outline-color.scss +33 -0
  327. data/_sass/uswds/src/utilities/rules/outline.scss +30 -0
  328. data/_sass/uswds/src/utilities/rules/overflow.scss +31 -0
  329. data/_sass/uswds/src/utilities/rules/padding.scss +43 -0
  330. data/_sass/uswds/src/utilities/rules/pin.scss +101 -0
  331. data/_sass/uswds/src/utilities/rules/position.scss +27 -0
  332. data/_sass/uswds/src/utilities/rules/right.scss +28 -0
  333. data/_sass/uswds/src/utilities/rules/square.scss +33 -0
  334. data/_sass/uswds/src/utilities/rules/text-align.scss +27 -0
  335. data/_sass/uswds/src/utilities/rules/text-decoration-color.scss +31 -0
  336. data/_sass/uswds/src/utilities/rules/text-decoration.scss +30 -0
  337. data/_sass/uswds/src/utilities/rules/text-indent.scss +30 -0
  338. data/_sass/uswds/src/utilities/rules/text-transform.scss +30 -0
  339. data/_sass/uswds/src/utilities/rules/top.scss +28 -0
  340. data/_sass/uswds/src/utilities/rules/vertical-align.scss +30 -0
  341. data/_sass/uswds/src/utilities/rules/whitespace.scss +27 -0
  342. data/_sass/uswds/src/utilities/rules/width.scss +26 -0
  343. data/_sass/uswds/src/utilities/rules/z-index.scss +28 -0
  344. data/_sass/uswds/src/utilities/utility-fonts.scss +20 -0
  345. data/assets/css/uswds-theme.scss +187 -0
  346. data/assets/img/circle.png +0 -0
  347. data/assets/img/hero.png +0 -0
  348. data/assets/img/project-images/project-placeholder.png +0 -0
  349. data/assets/img/team-images/team-placeholder.png +0 -0
  350. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Black.ttf +0 -0
  351. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Black.woff +0 -0
  352. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Black.woff2 +0 -0
  353. data/assets/uswds/fonts/merriweather/Latin-Merriweather-BlackItalic.ttf +0 -0
  354. data/assets/uswds/fonts/merriweather/Latin-Merriweather-BlackItalic.woff +0 -0
  355. data/assets/uswds/fonts/merriweather/Latin-Merriweather-BlackItalic.woff2 +0 -0
  356. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Bold.ttf +0 -0
  357. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Bold.woff +0 -0
  358. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Bold.woff2 +0 -0
  359. data/assets/uswds/fonts/merriweather/Latin-Merriweather-BoldItalic.ttf +0 -0
  360. data/assets/uswds/fonts/merriweather/Latin-Merriweather-BoldItalic.woff +0 -0
  361. data/assets/uswds/fonts/merriweather/Latin-Merriweather-BoldItalic.woff2 +0 -0
  362. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Italic.ttf +0 -0
  363. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Italic.woff +0 -0
  364. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Italic.woff2 +0 -0
  365. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Light.ttf +0 -0
  366. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Light.woff +0 -0
  367. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Light.woff2 +0 -0
  368. data/assets/uswds/fonts/merriweather/Latin-Merriweather-LightItalic.ttf +0 -0
  369. data/assets/uswds/fonts/merriweather/Latin-Merriweather-LightItalic.woff +0 -0
  370. data/assets/uswds/fonts/merriweather/Latin-Merriweather-LightItalic.woff2 +0 -0
  371. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Regular.ttf +0 -0
  372. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Regular.woff +0 -0
  373. data/assets/uswds/fonts/merriweather/Latin-Merriweather-Regular.woff2 +0 -0
  374. data/assets/uswds/fonts/public-sans/PublicSans-Black.ttf +0 -0
  375. data/assets/uswds/fonts/public-sans/PublicSans-Black.woff +0 -0
  376. data/assets/uswds/fonts/public-sans/PublicSans-Black.woff2 +0 -0
  377. data/assets/uswds/fonts/public-sans/PublicSans-BlackItalic.ttf +0 -0
  378. data/assets/uswds/fonts/public-sans/PublicSans-BlackItalic.woff +0 -0
  379. data/assets/uswds/fonts/public-sans/PublicSans-BlackItalic.woff2 +0 -0
  380. data/assets/uswds/fonts/public-sans/PublicSans-Bold.ttf +0 -0
  381. data/assets/uswds/fonts/public-sans/PublicSans-Bold.woff +0 -0
  382. data/assets/uswds/fonts/public-sans/PublicSans-Bold.woff2 +0 -0
  383. data/assets/uswds/fonts/public-sans/PublicSans-BoldItalic.ttf +0 -0
  384. data/assets/uswds/fonts/public-sans/PublicSans-BoldItalic.woff +0 -0
  385. data/assets/uswds/fonts/public-sans/PublicSans-BoldItalic.woff2 +0 -0
  386. data/assets/uswds/fonts/public-sans/PublicSans-ExtraBold.ttf +0 -0
  387. data/assets/uswds/fonts/public-sans/PublicSans-ExtraBold.woff +0 -0
  388. data/assets/uswds/fonts/public-sans/PublicSans-ExtraBold.woff2 +0 -0
  389. data/assets/uswds/fonts/public-sans/PublicSans-ExtraBoldItalic.ttf +0 -0
  390. data/assets/uswds/fonts/public-sans/PublicSans-ExtraBoldItalic.woff +0 -0
  391. data/assets/uswds/fonts/public-sans/PublicSans-ExtraBoldItalic.woff2 +0 -0
  392. data/assets/uswds/fonts/public-sans/PublicSans-ExtraLight.ttf +0 -0
  393. data/assets/uswds/fonts/public-sans/PublicSans-ExtraLight.woff +0 -0
  394. data/assets/uswds/fonts/public-sans/PublicSans-ExtraLight.woff2 +0 -0
  395. data/assets/uswds/fonts/public-sans/PublicSans-ExtraLightItalic.ttf +0 -0
  396. data/assets/uswds/fonts/public-sans/PublicSans-ExtraLightItalic.woff +0 -0
  397. data/assets/uswds/fonts/public-sans/PublicSans-ExtraLightItalic.woff2 +0 -0
  398. data/assets/uswds/fonts/public-sans/PublicSans-Italic.ttf +0 -0
  399. data/assets/uswds/fonts/public-sans/PublicSans-Italic.woff +0 -0
  400. data/assets/uswds/fonts/public-sans/PublicSans-Italic.woff2 +0 -0
  401. data/assets/uswds/fonts/public-sans/PublicSans-Light.ttf +0 -0
  402. data/assets/uswds/fonts/public-sans/PublicSans-Light.woff +0 -0
  403. data/assets/uswds/fonts/public-sans/PublicSans-Light.woff2 +0 -0
  404. data/assets/uswds/fonts/public-sans/PublicSans-LightItalic.ttf +0 -0
  405. data/assets/uswds/fonts/public-sans/PublicSans-LightItalic.woff +0 -0
  406. data/assets/uswds/fonts/public-sans/PublicSans-LightItalic.woff2 +0 -0
  407. data/assets/uswds/fonts/public-sans/PublicSans-Medium.ttf +0 -0
  408. data/assets/uswds/fonts/public-sans/PublicSans-Medium.woff +0 -0
  409. data/assets/uswds/fonts/public-sans/PublicSans-Medium.woff2 +0 -0
  410. data/assets/uswds/fonts/public-sans/PublicSans-MediumItalic.ttf +0 -0
  411. data/assets/uswds/fonts/public-sans/PublicSans-MediumItalic.woff +0 -0
  412. data/assets/uswds/fonts/public-sans/PublicSans-MediumItalic.woff2 +0 -0
  413. data/assets/uswds/fonts/public-sans/PublicSans-Regular.ttf +0 -0
  414. data/assets/uswds/fonts/public-sans/PublicSans-Regular.woff +0 -0
  415. data/assets/uswds/fonts/public-sans/PublicSans-Regular.woff2 +0 -0
  416. data/assets/uswds/fonts/public-sans/PublicSans-SemiBold.ttf +0 -0
  417. data/assets/uswds/fonts/public-sans/PublicSans-SemiBold.woff +0 -0
  418. data/assets/uswds/fonts/public-sans/PublicSans-SemiBold.woff2 +0 -0
  419. data/assets/uswds/fonts/public-sans/PublicSans-SemiBoldItalic.ttf +0 -0
  420. data/assets/uswds/fonts/public-sans/PublicSans-SemiBoldItalic.woff +0 -0
  421. data/assets/uswds/fonts/public-sans/PublicSans-SemiBoldItalic.woff2 +0 -0
  422. data/assets/uswds/fonts/public-sans/PublicSans-Thin.ttf +0 -0
  423. data/assets/uswds/fonts/public-sans/PublicSans-Thin.woff +0 -0
  424. data/assets/uswds/fonts/public-sans/PublicSans-Thin.woff2 +0 -0
  425. data/assets/uswds/fonts/public-sans/PublicSans-ThinItalic.ttf +0 -0
  426. data/assets/uswds/fonts/public-sans/PublicSans-ThinItalic.woff +0 -0
  427. data/assets/uswds/fonts/public-sans/PublicSans-ThinItalic.woff2 +0 -0
  428. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100.ttf +0 -0
  429. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100.woff +0 -0
  430. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100.woff2 +0 -0
  431. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100italic.ttf +0 -0
  432. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff +0 -0
  433. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff2 +0 -0
  434. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300.ttf +0 -0
  435. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300.woff +0 -0
  436. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300.woff2 +0 -0
  437. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300italic.ttf +0 -0
  438. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff +0 -0
  439. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff2 +0 -0
  440. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500.ttf +0 -0
  441. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500.woff +0 -0
  442. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500.woff2 +0 -0
  443. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500italic.ttf +0 -0
  444. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff +0 -0
  445. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff2 +0 -0
  446. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700.ttf +0 -0
  447. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700.woff +0 -0
  448. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700.woff2 +0 -0
  449. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700italic.ttf +0 -0
  450. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff +0 -0
  451. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff2 +0 -0
  452. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-italic.ttf +0 -0
  453. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff +0 -0
  454. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff2 +0 -0
  455. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-regular.ttf +0 -0
  456. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff +0 -0
  457. data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff2 +0 -0
  458. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-black-webfont.ttf +0 -0
  459. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-black-webfont.woff +0 -0
  460. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-black-webfont.woff2 +0 -0
  461. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.ttf +0 -0
  462. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff +0 -0
  463. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff2 +0 -0
  464. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bold-webfont.ttf +0 -0
  465. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff +0 -0
  466. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2 +0 -0
  467. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.ttf +0 -0
  468. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff +0 -0
  469. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff2 +0 -0
  470. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralight-webfont.ttf +0 -0
  471. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff +0 -0
  472. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff2 +0 -0
  473. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.ttf +0 -0
  474. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff +0 -0
  475. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff2 +0 -0
  476. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-italic-webfont.ttf +0 -0
  477. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff +0 -0
  478. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff2 +0 -0
  479. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-light-webfont.ttf +0 -0
  480. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-light-webfont.woff +0 -0
  481. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-light-webfont.woff2 +0 -0
  482. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.ttf +0 -0
  483. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff +0 -0
  484. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff2 +0 -0
  485. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-regular-webfont.ttf +0 -0
  486. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff +0 -0
  487. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2 +0 -0
  488. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibold-webfont.ttf +0 -0
  489. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff +0 -0
  490. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff2 +0 -0
  491. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.ttf +0 -0
  492. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff +0 -0
  493. data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff2 +0 -0
  494. data/assets/uswds/img/alerts/error.svg +4 -17
  495. data/assets/uswds/img/alerts/info.svg +4 -18
  496. data/assets/uswds/img/alerts/success.svg +1 -12
  497. data/assets/uswds/img/alerts/warning.svg +4 -16
  498. data/assets/uswds/img/angle-arrow-down-hover.svg +1 -1
  499. data/assets/uswds/img/angle-arrow-down-primary-hover.svg +1 -1
  500. data/assets/uswds/img/angle-arrow-down-primary.svg +1 -1
  501. data/assets/uswds/img/angle-arrow-down-white.svg +1 -0
  502. data/assets/uswds/img/angle-arrow-down.svg +1 -1
  503. data/assets/uswds/img/angle-arrow-up-primary-hover.svg +1 -1
  504. data/assets/uswds/img/angle-arrow-up-primary.svg +1 -1
  505. data/assets/uswds/img/angle-arrow-up-white.svg +1 -0
  506. data/assets/uswds/img/arrow-both.svg +1 -1
  507. data/assets/uswds/img/arrow-down.svg +1 -1
  508. data/assets/uswds/img/arrow-right.svg +1 -1
  509. data/assets/uswds/img/checkbox-check-print.svg +1 -0
  510. data/assets/uswds/img/circle-124.png +0 -0
  511. data/assets/uswds/img/close-blue-30-alt.svg +3 -0
  512. data/assets/uswds/img/close-blue-40v-alt.svg +3 -0
  513. data/assets/uswds/img/close-blue-50-alt.svg +3 -0
  514. data/assets/uswds/img/close-blue-50v-alt.svg +3 -0
  515. data/assets/uswds/img/close-blue-60-alt.svg +3 -0
  516. data/assets/uswds/img/close-blue-60v-alt.svg +3 -0
  517. data/assets/uswds/img/close-gray-90-alt.svg +3 -0
  518. data/assets/uswds/img/close-primary.svg +1 -16
  519. data/assets/uswds/img/close-white-alt.svg +3 -0
  520. data/assets/uswds/img/close-white.svg +3 -0
  521. data/assets/uswds/img/close.svg +1 -12
  522. data/assets/uswds/img/correct8-alt.png +0 -0
  523. data/assets/uswds/img/correct8-alt.svg +1 -0
  524. data/assets/uswds/img/correct8.svg +1 -1
  525. data/assets/uswds/img/correct9.svg +1 -1
  526. data/assets/uswds/img/external-link-alt-hover.svg +1 -1
  527. data/assets/uswds/img/external-link-alt.svg +1 -1
  528. data/assets/uswds/img/external-link-hover.svg +1 -1
  529. data/assets/uswds/img/external-link.svg +1 -1
  530. data/assets/uswds/img/favicons/favicon-114.png +0 -0
  531. data/assets/uswds/img/favicons/favicon-144.png +0 -0
  532. data/assets/uswds/img/favicons/favicon-16.png +0 -0
  533. data/assets/uswds/img/favicons/favicon-192.png +0 -0
  534. data/assets/uswds/img/favicons/favicon-40.png +0 -0
  535. data/assets/uswds/img/favicons/favicon-57.png +0 -0
  536. data/assets/uswds/img/favicons/favicon-72.png +0 -0
  537. data/assets/uswds/img/favicons/favicon.ico +0 -0
  538. data/assets/uswds/img/favicons/favicon.png +0 -0
  539. data/assets/uswds/img/hero.png +0 -0
  540. data/assets/uswds/img/icon-dot-gov.svg +1 -1
  541. data/assets/uswds/img/icon-https.svg +1 -1
  542. data/assets/uswds/img/minus-alt.svg +1 -1
  543. data/assets/uswds/img/minus.svg +1 -1
  544. data/assets/uswds/img/plus-alt.svg +1 -1
  545. data/assets/uswds/img/plus.svg +1 -1
  546. data/assets/uswds/img/search-alt.svg +1 -1
  547. data/assets/uswds/img/search-primary.svg +1 -12
  548. data/assets/uswds/img/search.svg +1 -1
  549. data/assets/uswds/img/social-icons/facebook25.png +0 -0
  550. data/assets/uswds/img/social-icons/{svg/facebook25.svg → facebook25.svg} +1 -1
  551. data/assets/uswds/img/social-icons/rss25.png +0 -0
  552. data/assets/uswds/img/social-icons/{svg/rss25.svg → rss25.svg} +1 -1
  553. data/assets/uswds/img/social-icons/twitter16.png +0 -0
  554. data/assets/uswds/img/social-icons/{svg/twitter16.svg → twitter16.svg} +1 -1
  555. data/assets/uswds/img/social-icons/youtube15.png +0 -0
  556. data/assets/uswds/img/social-icons/{svg/youtube15.svg → youtube15.svg} +1 -1
  557. data/assets/uswds/js/uswds.js +1716 -844
  558. data/assets/uswds/js/uswds.min.js +1 -1
  559. data/assets/uswds/js/uswds.min.js.map +1 -1
  560. metadata +515 -218
  561. data/_includes/components/footer--medium.html +0 -100
  562. data/_includes/components/header--basic.html +0 -74
  563. data/_includes/components/header--extended.html +0 -89
  564. data/_sass/uswds/_all.scss +0 -1
  565. data/_sass/uswds/components/_accordions.scss +0 -150
  566. data/_sass/uswds/components/_alerts.scss +0 -125
  567. data/_sass/uswds/components/_banner.scss +0 -204
  568. data/_sass/uswds/components/_forms.scss +0 -164
  569. data/_sass/uswds/components/_graphic-list.scss +0 -35
  570. data/_sass/uswds/components/_layout.scss +0 -36
  571. data/_sass/uswds/components/_media-block.scss +0 -12
  572. data/_sass/uswds/components/_navigation.scss +0 -549
  573. data/_sass/uswds/components/_search.scss +0 -111
  574. data/_sass/uswds/components/_section.scss +0 -37
  575. data/_sass/uswds/components/_sidenav.scss +0 -8
  576. data/_sass/uswds/core/_base.scss +0 -35
  577. data/_sass/uswds/core/_fonts.scss +0 -65
  578. data/_sass/uswds/core/_grid-settings.scss +0 -3
  579. data/_sass/uswds/core/_grid.scss +0 -199
  580. data/_sass/uswds/core/_utilities.scss +0 -252
  581. data/_sass/uswds/core/_variables.scss +0 -155
  582. data/_sass/uswds/elements/_buttons.scss +0 -217
  583. data/_sass/uswds/elements/_inputs.scss +0 -351
  584. data/_sass/uswds/elements/_labels.scss +0 -20
  585. data/_sass/uswds/elements/_list.scss +0 -32
  586. data/_sass/uswds/elements/_table.scss +0 -55
  587. data/_sass/uswds/elements/_typography.scss +0 -260
  588. data/_sass/uswds/lib/_bourbon-deprecated-upcoming.scss +0 -411
  589. data/_sass/uswds/lib/_bourbon.scss +0 -87
  590. data/_sass/uswds/lib/_neat-helpers.scss +0 -11
  591. data/_sass/uswds/lib/_neat.scss +0 -23
  592. data/_sass/uswds/lib/_normalize.scss +0 -424
  593. data/_sass/uswds/lib/addons/_border-color.scss +0 -26
  594. data/_sass/uswds/lib/addons/_border-radius.scss +0 -48
  595. data/_sass/uswds/lib/addons/_border-style.scss +0 -25
  596. data/_sass/uswds/lib/addons/_border-width.scss +0 -25
  597. data/_sass/uswds/lib/addons/_buttons.scss +0 -64
  598. data/_sass/uswds/lib/addons/_clearfix.scss +0 -25
  599. data/_sass/uswds/lib/addons/_ellipsis.scss +0 -30
  600. data/_sass/uswds/lib/addons/_font-stacks.scss +0 -31
  601. data/_sass/uswds/lib/addons/_hide-text.scss +0 -27
  602. data/_sass/uswds/lib/addons/_margin.scss +0 -26
  603. data/_sass/uswds/lib/addons/_padding.scss +0 -26
  604. data/_sass/uswds/lib/addons/_position.scss +0 -48
  605. data/_sass/uswds/lib/addons/_prefixer.scss +0 -66
  606. data/_sass/uswds/lib/addons/_retina-image.scss +0 -25
  607. data/_sass/uswds/lib/addons/_size.scss +0 -51
  608. data/_sass/uswds/lib/addons/_text-inputs.scss +0 -113
  609. data/_sass/uswds/lib/addons/_timing-functions.scss +0 -34
  610. data/_sass/uswds/lib/addons/_triangle.scss +0 -63
  611. data/_sass/uswds/lib/addons/_word-wrap.scss +0 -29
  612. data/_sass/uswds/lib/css3/_animation.scss +0 -43
  613. data/_sass/uswds/lib/css3/_appearance.scss +0 -3
  614. data/_sass/uswds/lib/css3/_backface-visibility.scss +0 -3
  615. data/_sass/uswds/lib/css3/_background-image.scss +0 -42
  616. data/_sass/uswds/lib/css3/_background.scss +0 -55
  617. data/_sass/uswds/lib/css3/_border-image.scss +0 -59
  618. data/_sass/uswds/lib/css3/_calc.scss +0 -4
  619. data/_sass/uswds/lib/css3/_columns.scss +0 -47
  620. data/_sass/uswds/lib/css3/_filter.scss +0 -4
  621. data/_sass/uswds/lib/css3/_flex-box.scss +0 -287
  622. data/_sass/uswds/lib/css3/_font-face.scss +0 -24
  623. data/_sass/uswds/lib/css3/_font-feature-settings.scss +0 -4
  624. data/_sass/uswds/lib/css3/_hidpi-media-query.scss +0 -10
  625. data/_sass/uswds/lib/css3/_hyphens.scss +0 -4
  626. data/_sass/uswds/lib/css3/_image-rendering.scss +0 -14
  627. data/_sass/uswds/lib/css3/_keyframes.scss +0 -36
  628. data/_sass/uswds/lib/css3/_linear-gradient.scss +0 -38
  629. data/_sass/uswds/lib/css3/_perspective.scss +0 -8
  630. data/_sass/uswds/lib/css3/_placeholder.scss +0 -8
  631. data/_sass/uswds/lib/css3/_radial-gradient.scss +0 -39
  632. data/_sass/uswds/lib/css3/_selection.scss +0 -42
  633. data/_sass/uswds/lib/css3/_text-decoration.scss +0 -19
  634. data/_sass/uswds/lib/css3/_transform.scss +0 -15
  635. data/_sass/uswds/lib/css3/_transition.scss +0 -71
  636. data/_sass/uswds/lib/css3/_user-select.scss +0 -3
  637. data/_sass/uswds/lib/functions/_assign-inputs.scss +0 -11
  638. data/_sass/uswds/lib/functions/_contains-falsy.scss +0 -20
  639. data/_sass/uswds/lib/functions/_contains.scss +0 -26
  640. data/_sass/uswds/lib/functions/_is-length.scss +0 -11
  641. data/_sass/uswds/lib/functions/_is-light.scss +0 -21
  642. data/_sass/uswds/lib/functions/_is-number.scss +0 -11
  643. data/_sass/uswds/lib/functions/_is-size.scss +0 -13
  644. data/_sass/uswds/lib/functions/_modular-scale.scss +0 -69
  645. data/_sass/uswds/lib/functions/_new-breakpoint.scss +0 -49
  646. data/_sass/uswds/lib/functions/_private.scss +0 -114
  647. data/_sass/uswds/lib/functions/_px-to-em.scss +0 -13
  648. data/_sass/uswds/lib/functions/_px-to-rem.scss +0 -15
  649. data/_sass/uswds/lib/functions/_shade.scss +0 -24
  650. data/_sass/uswds/lib/functions/_strip-units.scss +0 -17
  651. data/_sass/uswds/lib/functions/_tint.scss +0 -24
  652. data/_sass/uswds/lib/functions/_transition-property-name.scss +0 -22
  653. data/_sass/uswds/lib/functions/_unpack.scss +0 -27
  654. data/_sass/uswds/lib/grid/_box-sizing.scss +0 -15
  655. data/_sass/uswds/lib/grid/_direction-context.scss +0 -33
  656. data/_sass/uswds/lib/grid/_display-context.scss +0 -28
  657. data/_sass/uswds/lib/grid/_fill-parent.scss +0 -22
  658. data/_sass/uswds/lib/grid/_media.scss +0 -92
  659. data/_sass/uswds/lib/grid/_omega.scss +0 -87
  660. data/_sass/uswds/lib/grid/_outer-container.scss +0 -34
  661. data/_sass/uswds/lib/grid/_pad.scss +0 -25
  662. data/_sass/uswds/lib/grid/_private.scss +0 -35
  663. data/_sass/uswds/lib/grid/_row.scss +0 -52
  664. data/_sass/uswds/lib/grid/_shift.scss +0 -50
  665. data/_sass/uswds/lib/grid/_span-columns.scss +0 -94
  666. data/_sass/uswds/lib/grid/_to-deprecate.scss +0 -97
  667. data/_sass/uswds/lib/grid/_visual-grid.scss +0 -42
  668. data/_sass/uswds/lib/helpers/_convert-units.scss +0 -21
  669. data/_sass/uswds/lib/helpers/_directional-values.scss +0 -96
  670. data/_sass/uswds/lib/helpers/_font-source-declaration.scss +0 -43
  671. data/_sass/uswds/lib/helpers/_gradient-positions-parser.scss +0 -13
  672. data/_sass/uswds/lib/helpers/_linear-angle-parser.scss +0 -25
  673. data/_sass/uswds/lib/helpers/_linear-gradient-parser.scss +0 -41
  674. data/_sass/uswds/lib/helpers/_linear-positions-parser.scss +0 -61
  675. data/_sass/uswds/lib/helpers/_linear-side-corner-parser.scss +0 -31
  676. data/_sass/uswds/lib/helpers/_radial-arg-parser.scss +0 -69
  677. data/_sass/uswds/lib/helpers/_radial-gradient-parser.scss +0 -50
  678. data/_sass/uswds/lib/helpers/_radial-positions-parser.scss +0 -18
  679. data/_sass/uswds/lib/helpers/_render-gradients.scss +0 -26
  680. data/_sass/uswds/lib/helpers/_shape-size-stripper.scss +0 -10
  681. data/_sass/uswds/lib/helpers/_str-to-num.scss +0 -50
  682. data/_sass/uswds/lib/mixins/_clearfix.scss +0 -25
  683. data/_sass/uswds/lib/settings/_asset-pipeline.scss +0 -7
  684. data/_sass/uswds/lib/settings/_disable-warnings.scss +0 -13
  685. data/_sass/uswds/lib/settings/_grid.scss +0 -51
  686. data/_sass/uswds/lib/settings/_prefixer.scss +0 -9
  687. data/_sass/uswds/lib/settings/_px-to-em.scss +0 -1
  688. data/_sass/uswds/lib/settings/_visual-grid.scss +0 -27
  689. data/_sass/uswds/uswds.scss +0 -41
  690. data/assets/uswds/css/uswds.css +0 -4849
  691. data/assets/uswds/css/uswds.min.css +0 -4
  692. data/assets/uswds/css/uswds.min.css.map +0 -1
  693. data/assets/uswds/fonts/merriweather-bold-webfont.eot +0 -0
  694. data/assets/uswds/fonts/merriweather-bold-webfont.ttf +0 -0
  695. data/assets/uswds/fonts/merriweather-bold-webfont.woff +0 -0
  696. data/assets/uswds/fonts/merriweather-bold-webfont.woff2 +0 -0
  697. data/assets/uswds/fonts/merriweather-italic-webfont.eot +0 -0
  698. data/assets/uswds/fonts/merriweather-italic-webfont.ttf +0 -0
  699. data/assets/uswds/fonts/merriweather-italic-webfont.woff +0 -0
  700. data/assets/uswds/fonts/merriweather-italic-webfont.woff2 +0 -0
  701. data/assets/uswds/fonts/merriweather-light-webfont.eot +0 -0
  702. data/assets/uswds/fonts/merriweather-light-webfont.ttf +0 -0
  703. data/assets/uswds/fonts/merriweather-light-webfont.woff +0 -0
  704. data/assets/uswds/fonts/merriweather-light-webfont.woff2 +0 -0
  705. data/assets/uswds/fonts/merriweather-regular-webfont.eot +0 -0
  706. data/assets/uswds/fonts/merriweather-regular-webfont.ttf +0 -0
  707. data/assets/uswds/fonts/merriweather-regular-webfont.woff +0 -0
  708. data/assets/uswds/fonts/merriweather-regular-webfont.woff2 +0 -0
  709. data/assets/uswds/fonts/sourcesanspro-bold-webfont.eot +0 -0
  710. data/assets/uswds/fonts/sourcesanspro-bold-webfont.ttf +0 -0
  711. data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff +0 -0
  712. data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff2 +0 -0
  713. data/assets/uswds/fonts/sourcesanspro-italic-webfont.eot +0 -0
  714. data/assets/uswds/fonts/sourcesanspro-italic-webfont.ttf +0 -0
  715. data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff +0 -0
  716. data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff2 +0 -0
  717. data/assets/uswds/fonts/sourcesanspro-light-webfont.eot +0 -0
  718. data/assets/uswds/fonts/sourcesanspro-light-webfont.ttf +0 -0
  719. data/assets/uswds/fonts/sourcesanspro-light-webfont.woff +0 -0
  720. data/assets/uswds/fonts/sourcesanspro-light-webfont.woff2 +0 -0
  721. data/assets/uswds/fonts/sourcesanspro-regular-webfont.eot +0 -0
  722. data/assets/uswds/fonts/sourcesanspro-regular-webfont.ttf +0 -0
  723. data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff +0 -0
  724. data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff2 +0 -0
  725. data/assets/uswds/img/alerts/error.png +0 -0
  726. data/assets/uswds/img/alerts/info.png +0 -0
  727. data/assets/uswds/img/alerts/success.png +0 -0
  728. data/assets/uswds/img/alerts/warning.png +0 -0
  729. data/assets/uswds/img/angle-arrow-down-hover.png +0 -0
  730. data/assets/uswds/img/angle-arrow-down-primary-hover.png +0 -0
  731. data/assets/uswds/img/angle-arrow-down-primary.png +0 -0
  732. data/assets/uswds/img/angle-arrow-down.png +0 -0
  733. data/assets/uswds/img/angle-arrow-up-primary-hover.png +0 -0
  734. data/assets/uswds/img/angle-arrow-up-primary.png +0 -0
  735. data/assets/uswds/img/arrow-both.png +0 -0
  736. data/assets/uswds/img/arrow-down.png +0 -0
  737. data/assets/uswds/img/arrow-right.png +0 -0
  738. data/assets/uswds/img/close-primary.png +0 -0
  739. data/assets/uswds/img/close.png +0 -0
  740. data/assets/uswds/img/correct8.png +0 -0
  741. data/assets/uswds/img/correct9.png +0 -0
  742. data/assets/uswds/img/external-link-alt-hover.png +0 -0
  743. data/assets/uswds/img/external-link-alt.png +0 -0
  744. data/assets/uswds/img/external-link-hover.png +0 -0
  745. data/assets/uswds/img/external-link.png +0 -0
  746. data/assets/uswds/img/minus-alt.png +0 -0
  747. data/assets/uswds/img/minus.png +0 -0
  748. data/assets/uswds/img/plus-alt.png +0 -0
  749. data/assets/uswds/img/plus.png +0 -0
  750. data/assets/uswds/img/search-alt.png +0 -0
  751. data/assets/uswds/img/search-primary.png +0 -0
  752. data/assets/uswds/img/search.png +0 -0
  753. data/assets/uswds/img/social-icons/png/facebook25.png +0 -0
  754. data/assets/uswds/img/social-icons/png/rss25.png +0 -0
  755. data/assets/uswds/img/social-icons/png/twitter16.png +0 -0
  756. data/assets/uswds/img/social-icons/png/youtube15.png +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f8833f4d71fde3ce27a1a1e93a4668d850fabd94
4
- data.tar.gz: 076066966ac5df1f30f5a700947d5934c4fda813
2
+ SHA256:
3
+ metadata.gz: 552f833b8c33993f2f5b0c670b2e29e375b3ab4f9484154ca4487bfb3c907160
4
+ data.tar.gz: 357f8e3b7448a757997279b3bae773b372d2413977f0f4cfbd4e19f27bd7d9c0
5
5
  SHA512:
6
- metadata.gz: 587a658fb06380eb70d10527ef86ad9a6a70883e21dbc00af0285dac43bf1d75ef9c7b0f725525a685c4a2cb90a3bb624835cb3e9b7e6934a7da654e3b554dd8
7
- data.tar.gz: b4694ce851e925d33a86260fa3b0dac4684e5c1cc2ac739f5f1dec7255d123049f03e9e99429122e535897cade21643bb697b61b3931e71803daa9374516e278
6
+ metadata.gz: a88852b3c1997c9660e55dc3dfb1b436facc3526ea4adca8a58fc06d20bd6b11a36847d3c39a798cc625286a8ec7a3a784f4021f68e02e2053a60a3e29a2e7bd
7
+ data.tar.gz: e4d77d84905057cd33a187f8f5a05eee25c1f1112ee3cc4941b8aff33b01980a600a83e9a6e9ae7b69045ccc0ebe51acbf154380c7db77f0b05d5939252f0be1
data/README.md CHANGED
@@ -4,164 +4,146 @@ This is a [Jekyll theme](https://jekyllrb.com/docs/themes/) for the
4
4
  [U.S. Web Design System](https://designsystem.digital.gov).
5
5
 
6
6
  ## Table of contents
7
+
7
8
  1. [Installation](#installation)
8
- - [Development](#development)
9
- - [Versioning](#versioning)
9
+ - [Versioning](#versioning)
10
10
  1. [Configuration](#configuration)
11
- - [Site title](#site-title)
12
- - [Navigation](#navigation)
13
- - [Page subnavigation](#page-subnavigation)
14
- - [Search](#search)
15
- - [Analytics](#analytics)
16
- - [Last modified date](#last-modified-date)
11
+ - [Site title](#site-title)
12
+ - [Site description](#site-description)
13
+ - [Navigation](#navigation)
14
+ - [Page subnavigation](#page-subnavigation)
15
+ - [Hero](#hero)
16
+ - [Tagline intro](#tagline-intro)
17
+ - [Graphics list](#graphics-list)
18
+ - [Color and font configuration](#color-and-font-configuration)
19
+ - [Search](#search)
20
+ - [Analytics](#analytics)
21
+ - [Last modified date](#last-modified-date)
22
+ - [Anchor JS](#anchor-js)
17
23
  1. [Assets](#assets)
18
- - [Stylesheets](#stylesheets)
19
- - [Scripts](#scripts)
20
- - [Asset load order](#asset-load-order)
24
+ - [Stylesheets](#stylesheets)
25
+ - [Scripts](#scripts)
26
+ - [Asset load order](#asset-load-order)
21
27
  1. [Customization](#customization)
22
- - [Customizing with Sass](#customizing-with-sass)
23
- - [Customizing with CSS overrides](#customizing-with-css-overrides)
24
- - [Overriding includes and layouts](#overriding-includes-and-layouts)
28
+ - [Customizing with Sass](#customizing-with-sass)
29
+ - [Customizing with CSS overrides](#customizing-with-css-overrides)
30
+ - [Overriding includes and layouts](#overriding-includes-and-layouts)
25
31
  1. [Components](#components)
26
- - [Header](#header)
27
- - [Footer](#footer)
32
+ - [Header](#header)
33
+ - [Footer](#footer)
28
34
  1. [Layouts](#layouts)
29
- - [Default](#layout-default)
30
- - [Page](#layout-page)
31
- - [Home](#layout-home)
32
- - [Post](#layout-post)
33
- - [Search results](#search-results)
34
-
35
-
35
+ - [Default](#layout-default)
36
+ - [Page](#layout-page)
37
+ - [Home](#layout-home)
38
+ - [Post](#layout-post)
39
+ - [Project](#layout-project)
40
+ - [Team member](#layout-team-member)
41
+ 1. [Migration guide](#migration)
42
+ 1. [Development](#development)
36
43
 
37
44
  ## Installation
38
45
 
39
46
  1. Install the theme as a Ruby Gem by adding it to your `Gemfile`
40
47
  like so:
41
48
 
42
- ```ruby
43
- gem 'uswds-jekyll'
44
- ```
49
+ ```ruby
50
+ gem 'uswds-jekyll'
51
+ ```
45
52
 
46
53
  1. Fetch and update your bundled gems by running:
47
54
 
48
- ```sh
49
- bundle
50
- ```
55
+ ```sh
56
+ bundle
57
+ ```
51
58
 
52
59
  1. Set the `theme` in your site's Jekyll configuration,
53
60
  `_config.yml`:
54
61
 
55
- ```yml
56
- theme: uswds-jekyll
57
- ```
62
+ ```yml
63
+ theme: uswds-jekyll
64
+ ```
58
65
 
59
66
  You will need to restart your Jekyll server to see the effects.
60
67
 
61
68
  ### Install as a new Jekyll site
62
69
 
63
70
  1. Create a new Jekyll site:
64
- ```
65
- jekyll new
66
- ```
71
+ ```
72
+ jekyll new
73
+ ```
67
74
  1. Replace the default `gem "minima", "~> 2.0"` gem with the `uswds-jekyll` gem in your `Gemfile`:
68
75
 
69
- ```ruby
70
- gem 'uswds-jekyll', :git => 'https://github.com/18F/uswds-jekyll.git'
71
- ```
76
+ ```ruby
77
+ gem 'uswds-jekyll'
78
+ ```
72
79
 
73
80
  1. Set the `theme` in your site's Jekyll configuration,
74
81
  `_config.yml`:
75
82
 
76
- ```yml
77
- theme: uswds-jekyll
78
- ```
79
- 1. Fetch and update your bundled gems by running:
83
+ ```yml
84
+ theme: uswds-jekyll
85
+ ```
80
86
 
81
- ```sh
82
- bundle
83
- ```
84
- 1. Run Jekyll `jekyll serve` to build your site locally at http://localhost:4000/
87
+ 1. Fetch and update your bundled gems by running:
85
88
 
86
- ### Development
89
+ ```sh
90
+ bundle
91
+ ```
87
92
 
88
- To develop this theme and/or test it locally:
89
-
90
- 1. Clone this repo
91
- 1. Run Jekyll (`jekyll serve`) in the local clone of this repo;
92
- **or**
93
- 1. Create a new Jekyll project, follow the
94
- [installation](#installation) instructions, then change your
95
- `Gemfile` to point at the local clone of this repo:
96
-
97
- ```ruby
98
- gem 'uswds-jekyll', :path => '../path/to/uswds-jekyll'
99
- ```
100
- ### Publish to Rubygems
101
- 1. Update `spec.version = "NUMBER HERE"` in the uswds-jekyll.gemspec file to the version you want to publish
102
- 1. Run `bundle install`
103
- 1. Add a PR for the update and get it merged
104
- 1. Run `bundle exec rake release`
105
- 1. Add a GitHub release to the releases page with the same version number
106
- 1. You should see the latest version here https://rubygems.org/gems/uswds-jekyll
93
+ 1. Run `bundle exec jekyll serve` to build your site locally at http://localhost:4000/
107
94
 
108
95
  ### Versioning
109
96
 
110
- To reference a specific version of this plugin:
97
+ To reference a specific version of this theme:
111
98
 
112
99
  1. Visit the [releases page](https://github.com/18F/uswds-jekyll/releases) and
113
100
  decide which version you want to use.
114
101
  1. Specify the version in your `Gemfile`.
115
102
 
116
- ```ruby
117
- gem 'uswds-jekyll', '1.4.1'
118
- ```
103
+ ```ruby
104
+ gem 'uswds-jekyll', '~> 5.0'
105
+ ```
119
106
 
120
107
  ## Configuration
121
108
 
122
109
  Configuration of common elements ([header](#header),
123
- [footer](#footer), [navigation](#navigation), etc.) happens in your
124
- project's [data files](https://jekyllrb.com/docs/datafiles/). See
125
- this project's [data directory](_data) for reference configurations
110
+ [footer](#footer), [navigation](#navigation), etc.) happens in your project's [data files](https://jekyllrb.com/docs/datafiles/). See this project's [data directory](_data) for reference configurations
126
111
  of each component.
127
112
 
128
- The [default layout](#layout-default) also provides a mechanism for
129
- automatically including [stylesheets](#stylesheets) and
130
- [scripts](#scripts) on a site-wide, layout-wide, and per-page
131
- basis. See [asset load order](#asset-load-order) for more
132
- information.
133
-
113
+ The [default layout](#layout-default) also provides a mechanism for automatically including [stylesheets](#stylesheets) and [scripts](#scripts) on a site-wide, layout-wide, and per-page basis. See [asset load order](#asset-load-order) for more information.
134
114
 
135
115
  ### Site title
136
116
 
137
- You can change your site's title with the `title` field in your
138
- `_config.yml`. If you want to provide an alternate title for use
139
- _only_ in the site header, you can set the `title` field in
140
- `_data/header.yml`.
117
+ You can change your site's title with the `title` field in `_config.yml`. If you want to provide an alternate title for use _only_ in the site header, you can set the `title` field in `_data/header.yml`.
118
+
119
+ ### Site description
141
120
 
121
+ You can change your site's description with the `description` field in `_config.yml`. If you want to override it for a particular page, you can set the `description` field in that page's frontmatter.
142
122
 
143
123
  ### Navigation
144
124
 
145
- This theme's navigation system is powerful and flexible. Named
146
- navigational lists live in your project's `_data/navigation.yml`,
147
- e.g.
125
+ This theme's navigation system is powerful and flexible. Named navigational lists live in your project's `_data/navigation.yml`.
148
126
 
149
- By default all links are assumed to be internal to the site. You can add `external: true` to links that are external.
127
+ By default all links are assumed to be internal to the site. You can add `external: true` to links that are external. You can also add `class: class-name` to add a class to a specific link.
150
128
 
151
129
  ```yml
152
130
  # _data/navigation.yml
131
+
153
132
  primary:
154
133
  - text: Documentation
155
134
  href: /docs/
156
135
  - text: Support
157
136
  href: /help/
158
- - text: External link
137
+ class: highlight
138
+ - text: "18F"
159
139
  href: https://18f.gsa.gov
160
140
  external: true
161
141
 
162
142
  # link objects with a 'links' field will be presented as
163
- # collapsible link lists. The 'links' field can either be a
164
- # reference to another link list in this file, or a literal list.
143
+ # collapsible link lists. The 'links' field can either be
144
+ # a reference to another link list in this file, or
145
+ # a literal list.
146
+
165
147
  - text: Section title
166
148
  links: <links>
167
149
  ```
@@ -171,11 +153,19 @@ shared by different components, such as the [header](#header) and
171
153
  [footer](#footer). See the documentation for those components for
172
154
  more info.
173
155
 
156
+ ### Page title
157
+
158
+ Set each page's title in its frontmatter:
159
+
160
+ ```
161
+ ---
162
+ title: About us
163
+ ---
164
+ ```
174
165
 
175
166
  ### Page subnavigation
176
167
 
177
- If you're using the [page layout](#layout-page), each page may declare its own
178
- side navigation and subnavigation in its [front matter]:
168
+ If you're using the [page layout](#layout-page), each page may declare its own side navigation and subnavigation in its front matter:
179
169
 
180
170
  ```md
181
171
  ---
@@ -186,22 +176,26 @@ subnav:
186
176
  - text: Section two
187
177
  href: '#section-two
188
178
  ---
179
+
189
180
  ## Section one
190
181
 
191
182
  ## Section two
192
183
  ```
193
184
 
194
- As with the [header](#header) and [footer](#footer), the `sidenav` field may
195
- either reference a common [navigation list](#navigation) from
196
- `_data/navigation.yml` (recommended) or be a literal list of links.
185
+ As with the [header](#header) and [footer](#footer), the `sidenav` field may either reference a common [navigation list](#navigation) from `_data/navigation.yml` (recommended) or be a literal list of links.
186
+
187
+ The `subnav` field should be used to link to sections _within_ the current page, because links to other pages will cause the linking page's side navigation to collapse when visited.
188
+
189
+ `sidenav` is a key _into_ `_data/navigation.yml`. See the [navigation](#navigation) docs for more info.
197
190
 
198
- The `subnav` field should be used to link to sections _within_ the current
199
- page, because links to other pages will cause the linking page's side
200
- navigation to collapse when visited.
191
+ A page's "current" or "active" state in the sidenav is determined by whether a link's `href` matches `page.url` or `page.permalink` for each page being rendered.
201
192
 
202
- **Pro tip:** Unless your Jekyll configuration specifies otherwise, the default
203
- Markdown formatter (Kramdown) will automatically generate predictable `id`
204
- attributes for your page headings and convert markdown like this:
193
+ `subnav` is a list of links to display on this page under its own link in the side navigation.
194
+
195
+ **Note that subnav link hrefs are not prefixed with
196
+ `site.baseurl`** because this breaks hash links prefixed with `#`.
197
+
198
+ **Pro tip:** Unless your Jekyll configuration specifies otherwise, the default Markdown formatter (Kramdown) will automatically generate predictable `id` attributes for your page headings and convert markdown like this:
205
199
 
206
200
  ```md
207
201
  ## Section one
@@ -223,6 +217,53 @@ redcarpet:
223
217
  - with_toc_data
224
218
  ```
225
219
 
220
+ **Pro tip:** If you're like us and prefer your navigation sticky, you can add `sticky_sidenav: true` on [page](#layout-page), [project](#layout-project), and [team member](#layout-team-member) layouts to have the sidenav follow as you scroll.
221
+
222
+ ### Hero
223
+
224
+ ```yml
225
+ hero: # optional
226
+ image: /path/to/image.jpg # optional
227
+ callout:
228
+ alt: Callout white text! # optional
229
+ text: The rest of the callout
230
+ button: # optional
231
+ text: The button text
232
+ href: /button-href/
233
+ ```
234
+
235
+ ### Tagline intro
236
+
237
+ ```yml
238
+ # optional, but must be used in conjunction with 'intro', below
239
+ tagline: A tagline for your page
240
+ # also optional, but must be used with 'tagline', above
241
+ intro: |
242
+ Some introductory text content.
243
+
244
+ This will be processed as **Markdown**.
245
+ ```
246
+
247
+ ### Graphics list
248
+
249
+ ```yml
250
+ # an optional list of graphics to display before or after the content
251
+ graphics:
252
+ - image:
253
+ # note the indentation here: graphics[n].image.src
254
+ src: /path/to/image.ext
255
+ alt: optional alt text
256
+ title: Optional graphic title, rendered as an <h3>
257
+ description: Graphic description text, processed as _Markdown_.
258
+
259
+ # optional
260
+ graphics_position: (before|after)
261
+ ```
262
+
263
+ ### Color configuration
264
+
265
+ The default colors can be configured in the `_data/theme.yml` file. Other settings can be configured using USWDS theme settings. (See the [customization](#customization) section, below.)
266
+
226
267
  ### Search
227
268
 
228
269
  [Search.gov](https://search.gov/) is used for search and can be configured in `_config.yml`.
@@ -230,7 +271,7 @@ redcarpet:
230
271
  Before configuring your search you will need to create a search.gov account and set up your website
231
272
  with search.gov.
232
273
 
233
- After setting up your site on search.gov you can then add your `site handle` to the `config.yml`.
274
+ After setting up your site on search.gov you can then add your `search_site_handle` to the `config.yml`.
234
275
 
235
276
  ### Analytics
236
277
 
@@ -245,29 +286,36 @@ You can add Google Analytics to your site by uncommenting the `google_analytics_
245
286
 
246
287
  #### Digital Analytics Program (DAP)
247
288
 
248
- You can add DAP to your site by uncommenting the `dap_agency` line and, if need be, replacing `GSA` with the appropriate agency key. For more information visit <https://www.digitalgov.gov/services/dap/>
289
+ You can add DAP to your site by uncommenting the `dap_agency` line and, if need be, replacing `GSA` with the appropriate agency key.
290
+ And optionally, `dap_subagency` may also be specified.
291
+ For more information visit <https://www.digitalgov.gov/services/dap/>
249
292
 
250
293
  ```
251
294
  # Configuration for DAP, add your agency ID here:
252
295
  # dap_agency: GSA
296
+ # dap_subagency: TTS
253
297
  ```
254
298
 
255
299
  ### Last modified date
256
300
 
257
- You can show the last date a page was last modified by uncommenting this line from the `footer.yml` data file.
258
- This will add the date right before the footer component and uses the `last-modified.html` include.
301
+ You can show the last date a page was last modified by uncommenting this line from the `footer.yml` data file. This will add the date right before the footer component and uses the `last-modified.html` include.
259
302
 
260
303
  ```yml
261
304
  # Used to show the "Last updated" date and time;
262
305
  # last_updated: true
263
306
  ```
264
307
 
308
+ ### Anchor JS
309
+
310
+ You can show an anchor link next to header tags by uncommenting this section from the `_config.yml` data file. This will add an anchor link after the header tag on the page and post layouts making ech header linkable. See https://github.com/bryanbraun/anchorjs for more information.
311
+
312
+ ```yml
313
+ # anchor_js_targets: [h1, h2, h3, h4, h5, h6]
314
+ ```
315
+
265
316
  ## Assets
266
317
 
267
- The [stylesheet](_includes/styles.html) and [script](_includes/scripts.html)
268
- includes each incorporate the USWDS CSS and JS files if the corresponding
269
- `styles` and `scripts` lists aren't defined in your `_config.yml`. So unless
270
- you add one or both of those manually, your HTML will include the following:
318
+ The [stylesheet](_includes/styles.html) and [script](_includes/scripts.html) includes each incorporate the USWDS CSS and JS files if the corresponding `styles` and `scripts` lists aren't defined in your `_config.yml`. So unless you add one or both of those manually, your HTML will include the following:
271
319
 
272
320
  ```html
273
321
  <!-- in the <head> -->
@@ -276,16 +324,12 @@ you add one or both of those manually, your HTML will include the following:
276
324
  <script src="/assets/uswds/js/uswds.min.js" async>
277
325
  ```
278
326
 
279
- Read more about customizing [stylesheets](#stylesheets) and [scripts](#scripts)
280
- below.
281
-
327
+ Read more about customizing [stylesheets](#stylesheets) and [scripts](#scripts) below.
282
328
 
283
329
  ### Stylesheets
284
330
 
285
331
  As a general rule, all stylesheets are inserted in a layouts'
286
- `<head>`, which qualifies them as "render-blocking". Site
287
- stylesheets can be specified in `_config.yml` or a layout or page's
288
- [front matter] YAML in the following form:
332
+ `<head>`, which qualifies them as "render-blocking". Site stylesheets can be specified in `_config.yml` or a layout or page's [front matter] YAML in the following form:
289
333
 
290
334
  ```yml
291
335
  styles:
@@ -297,7 +341,6 @@ styles:
297
341
  Stylesheets specified as objects (in the latter item above) must
298
342
  have an `href` property. The `media` defaults to `screen`.
299
343
 
300
-
301
344
  ### Scripts
302
345
 
303
346
  As a general rule, all scripts are inserted before a layouts'
@@ -313,14 +356,7 @@ scripts:
313
356
  ```
314
357
 
315
358
  Scripts specified as objects (in the latter item above) must have a `src`
316
- property. Scripts with `async: true` will get an `async` attribute, which tells
317
- the browser _not_ to let this script's loading block the execution of
318
- subsequent scripts. If the execution order of your scripts is **not**
319
- important, setting `async: true` may provide performance benefits to your
320
- users. (Conversely, if you don't know whether your scripts need to execute in a
321
- particular order, then you should not set `async: true` because it may prevent
322
- your scripts from running propertly.)
323
-
359
+ property. Scripts with `async: true` will get an `async` attribute, which tells the browser _not_ to let this script's loading block the execution of subsequent scripts. If the execution order of your scripts is **not** important, setting `async: true` may provide performance benefits to your users. (Conversely, if you don't know whether your scripts need to execute in a particular order, then you should not set `async: true` because it may prevent your scripts from running propertly.)
324
360
 
325
361
  ### Asset load order
326
362
 
@@ -334,70 +370,20 @@ Both [stylesheets](#stylesheets) and [scripts](#scripts) can be configured
334
370
  1. Those configured at the page level (in the page's [front matter])
335
371
  will be loaded last.
336
372
 
337
-
338
373
  ## Customization
339
374
 
340
- You have two options for customizing the CSS: [Sass](#customizing-with-sass) or
341
- [CSS overrides](#customizing-with-css-overrides). Individual sites can also
342
- [selectively override](#overriding-includes-and-layouts) individual includes
343
- and layouts.
344
-
345
-
346
- ### Customizing with Sass
347
-
348
- 1. Create a [Sass][] (or SCSS) entry point that sets variables and then imports
349
- the USWDS source files:
350
-
351
- ```scss
352
- ---
353
- # assets/main.scss
354
- ---
355
- // set your variables or @import them here.
356
-
357
- // at the very least, you should set the USWDS font and image paths
358
- // to the correct paths relative to assets/main.css, like so:
359
- $font-path: 'uswds/fonts';
360
- $image-path: 'uswds/img';
361
-
362
- @import 'uswds/all';
363
- ```
364
-
365
- 1. Change the path to your site's default stylesheet in your `_config.yml`:
366
-
367
- ```yml
368
- styles:
369
- - /assets/main.css
370
- ```
371
-
372
- All of the USWDS [SCSS source files](https://github.com/uswds/uswds/tree/master/src/stylesheets)
373
- are placed in the [_sass/uswds](_sass/uswds) directory and are available as
374
- Sass imports via `@import 'uswds/<path>';`. See the [Jekyll docs][Jekyll Sass]
375
- for more information about its Sass/SCSS support, and configuring its Sass
376
- renderer in your site's config.
377
-
375
+ Customize the USWDS Jekyll theme with [USWDS theme settings files](https://designsystem.digital.gov/documentation/settings/), [USWDS design tokens](https://designsystem.digital.gov/design-tokens/), and custom Sass or CSS. You'll need to manually add these custom files to your Jekyll project into a couple specific locations.
378
376
 
379
- ### Customizing with CSS overrides
377
+ 1. Find the **most current settings files** in the `_sass/settings` [folder of this theme](https://github.com/18F/uswds-jekyll/tree/update-uswds-2.0/_sass/settings). [Download these files with DownGit](https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/18F/uswds-jekyll/tree/update-uswds-2.0/_sass/settings)
380
378
 
381
- 1. Create a new CSS or Sass file that defines your customizations,
382
- e.g.
379
+ 1. Copy these theme settings files to you project's `_sass/settings` directory. If this directory doesn't exist, create it.
383
380
 
384
- ```scss
385
- ---
386
- # assets/uswds-overrides.scss
387
- ---
388
- .usa-header {
389
- // overrides here
390
- }
391
- ```
381
+ 1. Edit these new settings files to customize your USWDS implementation, following the USWDS's [theme settings guidance](https://designsystem.digital.gov/documentation/settings/).
392
382
 
393
- 1. Add the new stylesheet's path to your `_config.yml` _after_
394
- `uswds.min.css`:
383
+ 1. Add any **custom CSS or Sass** to a folder called `_sass/custom/_uswds-theme-custom-styles.scss`. You can also use this file to import any additional Sass or CSS files your project needs. [Download this file from Github](https://raw.githubusercontent.com/18F/uswds-jekyll/update-uswds-2.0/_sass/custom/_uswds-theme-custom-styles.scss)
395
384
 
396
- ```yml
397
- styles:
398
- - /assets/uswds/css/uswds.min.css
399
- - /assets/uswds-overrides.css
400
- ```
385
+ You have two options for customizing the CSS: [Sass](#customizing-with-sass) or [CSS overrides (#customizing-with-css-overrides). Individual sites can also
386
+ [selectively override](#overriding-includes-and-layouts) individual includes and layouts.
401
387
 
402
388
  ### Overriding includes and layouts
403
389
 
@@ -440,11 +426,10 @@ header data to come directly from the Jekyll configuration file
440
426
  `_includes/header.html` to look like this:
441
427
 
442
428
  ```html
443
- {% assign header = site.header %}
444
- {% include components/header--basic.html %}
429
+ {% assign header = site.data.header %} {% include components/header--basic.html
430
+ %}
445
431
  ```
446
432
 
447
-
448
433
  ### Header
449
434
 
450
435
  The [header.html include](_includes/header.html) sets the `header`
@@ -455,7 +440,6 @@ render the header's markup.
455
440
 
456
441
  See this repo's [header.yml](_data/header.yml) for more info.
457
442
 
458
-
459
443
  ### Footer
460
444
 
461
445
  The [footer.html include](_includes/footer.html) sets the `header`
@@ -466,18 +450,25 @@ render the footer's markup.
466
450
 
467
451
  See this repo's [footer.yml](_data/footer.yml) for more info.
468
452
 
469
-
470
453
  ## Layouts
471
454
 
472
455
  This theme provides the following layouts, which you can use by
473
456
  setting the `layout` [front matter] on each page, like so:
474
457
 
475
- ```yaml
458
+ ```yml
476
459
  ---
477
460
  layout: name
478
461
  ---
462
+
479
463
  ```
480
464
 
465
+ Supported (optional) front matter for page layouts.
466
+
467
+ - [page navigation](#page-subnavigation)
468
+ - [hero](#hero)
469
+ - [tagline intro](#tagline-intro)
470
+ - [graphics list](#graphics-list)
471
+
481
472
  ### `layout: default`
482
473
 
483
474
  This is the bare-bones USWDS layout, which does all of the
@@ -489,83 +480,197 @@ The default layout provides a layout [front matter] hook to add
489
480
  attributes to the `<main>` element. You can see how this works in
490
481
  the [page layout](_layouts/page.html#L3-L4).
491
482
 
492
-
493
483
  ### `layout: home`
494
484
 
495
485
  This layout implements the [home page
496
486
  template](https://designsystem.digital.gov/page-templates/landing/), which
497
487
  accommodates the following [front matter]:
498
488
 
489
+ Check out the YAML front matter in the [home demo
490
+ page](demo/home.html) for an example of how to structure it.
491
+
492
+ ### `layout: page`
493
+
494
+ This layout implements the [document page
495
+ template](https://designsystem.digital.gov/page-templates/docs/).
496
+
497
+ See the [page demo page](demo/page.md) for an example of how this
498
+ works, and see [\_data/navigation.yml](_data/navigation.yml) for how
499
+ to structure named navigation data for your site.
500
+
501
+ ### `layout: post`
502
+
503
+ This layout is identical to the layout `page` and is included to allow for easier site creation using `Jekyll new`.
504
+
505
+ ### `layout: project`
506
+
507
+ This layout is used to show details for an individual project and uses the following front matter.
508
+
499
509
  ```yml
500
- hero: # optional
501
- image: /path/to/image.jpg # optional
502
- callout:
503
- alt: Callout white text! # optional
504
- text: The rest of the callout
505
- button: # optional
506
- text: The button text
507
- href: /button-href/
510
+ layout: project
511
+ title: Title of project
512
+ permalink: /projects/link-to-project/
513
+ description: Project description.
514
+ large_image: /path/to/image.ext
515
+ small_image: /path/to/image.ext
516
+ image_alt: The image alt text
517
+ ```
508
518
 
509
- # optional, but must be used in conjunction with 'intro', below
510
- tagline: A tagline for your page
511
- # also optional, but must be used with 'tagline', above
512
- intro: |
513
- Some introductory text content.
519
+ To show a listing of projects on a page add `{% include project-list.html %} to the page`
514
520
 
515
- This will be processed as **Markdown**.
521
+ ### `layout: team-member`
516
522
 
517
- # an optional list of graphics to display before or after the content
518
- graphics:
519
- - image:
520
- # note the indentation here: graphics[n].image.src
521
- src: /path/to/image.ext
522
- alt: optional alt text
523
- title: Optional graphic title, rendered as an <h3>
524
- description: Graphic description text, processed as _Markdown_.
523
+ This layout is used to show details for an individual team member and uses the following front matter.
525
524
 
526
- # optional
527
- graphics_position: (before|after)
525
+ ```yml
526
+ layout: team-member
527
+ permalink: /team/link-to-team-member/
528
+ name: Team member name
529
+ image: /path/to/image.ext
530
+ job_title: Team member job title
531
+ phone: 123-456-7890
532
+ email: email@address.gov
528
533
  ```
529
534
 
530
- Check out the YAML front matter in the [home demo
531
- page](demo/home.html) for an example of how to structure it.
535
+ To show a listing of team members on a page add `{% include team-list.html %} to the page`
532
536
 
537
+ [sass]: http://sass-lang.com/guide
538
+ [jekyll sass]: https://jekyllrb.com/docs/assets/#sassscss
539
+ [front matter]: https://jekyllrb.com/docs/frontmatter/
533
540
 
534
- ### `layout: page`
541
+ ## Migration
542
+
543
+ ### From [guides_style_18f](https://github.com/18F/guides-style)
544
+
545
+ See [this example pull request](https://github.com/18F/before-you-ship/pull/458).
546
+
547
+ ### From from earlier versions
548
+
549
+ **Note:** `uswds-jekyll` 5.x is only compatible with Jekyll 4.0 and higher.
550
+
551
+ 1. Update your `uswds-jekyll` gem in your project's Gemfile. Replace the current `gem 'uswds-jekyll'` line with:
552
+
553
+ ```ruby
554
+ gem 'uswds-jekyll', '~> 5.0'
555
+ ```
556
+
557
+ Then, in the terminal, run
558
+
559
+ ```sh
560
+ bundle update uswds-jekyll
561
+ ```
562
+
563
+ 1. Add any custom styles to `/_sass/custom/`
564
+ 1. `_sass` folder needs to be at the root level, not in assets.
565
+ 1. Convert manual values to tokenized values using the guidance on the [USWDS migration page](https://designsystem.digital.gov/documentation/migration/#spacing-units).
566
+ 1. Don't duplicate the `h1` in the body content of `page` template pages. (This is automatically inserted at the top with the content of `page.title`.)
567
+ 1. Check that certain data keys exist
568
+
569
+ ```
570
+ --> config.yml
571
+ styles:
572
+ [nothing unless adding additional stylesheets]
573
+
574
+ --> header.yml
575
+ type: [basic | basic-mega | extended | extended-mega]
576
+
577
+ --> footer.yml
578
+ type: [slim | default | big]
579
+
580
+ --> navigation.yml
581
+ sidenav-breakpoint: {{ breakpoint_token }}
582
+
583
+ --> theme.yml (examples)
584
+ colors:
585
+ usa-banner:
586
+ usa-banner-bg: 'base-lightest'
587
+ usa-banner-text: 'ink'
588
+ usa-banner-link: 'primary-dark'
589
+ usa-banner-link-hover: 'primary-darker'
590
+ header:
591
+ header-bg: 'white'
592
+ header-title: 'ink'
593
+ header-link: 'base'
594
+ header-link-hover: 'primary-dark'
595
+ alt-section:
596
+ bg-color: 'primary-darker'
597
+ header-color: 'accent-cool'
598
+ text-color: 'white'
599
+ link-color: 'base-lightest'
600
+ link-hover-color: 'white'
601
+ hero:
602
+ hero-bg: 'primary-darker'
603
+ hero-header: 'accent-cool'
604
+ hero-header-alt: 'white'
605
+ hero-text: 'white'
606
+ hero-link: 'accent-cool'
607
+ hero-button-bg: 'primary'
608
+ hero-button-text: 'white'
609
+ top-navigation:
610
+ top-nav-bg: 'white'
611
+ top-nav-link: 'base-dark'
612
+ top-nav-link-hover: 'primary'
613
+ top-nav-link-hover-bg: 'white'
614
+ top-nav-link-current: 'base-dark'
615
+ top-nav-dropdown-bg: 'primary-dark'
616
+ top-nav-dropdown-link: 'white'
617
+ top-nav-dropdown-link-hover-bg: 'transparent'
618
+ side-navigation:
619
+ side-nav-bg: 'transparent'
620
+ side-nav-link: 'ink'
621
+ side-nav-link-hover: 'primary-dark'
622
+ side-nav-link-hover-bg: 'base-lightest'
623
+ side-nav-link-current: 'primary-dark'
624
+ footer:
625
+ primary-footer-bg: 'base-lightest'
626
+ primary-footer-link: 'ink'
627
+ footer-bg: 'base-lighter'
628
+ footer-text: 'ink'
629
+ footer-link: 'ink'
630
+ footer-social-link: 'black-transparent-10'
631
+
632
+ ```
633
+
634
+ 1. Check that css is referencing `uswds-theme.css`
635
+
636
+ ## Development
535
637
 
536
- This layout implements the [document page
537
- template](https://designsystem.digital.gov/page-templates/docs/), and
538
- accommodates an optional side navigation. Supported [front matter]:
638
+ To develop this theme and/or test it locally:
539
639
 
540
- * `sidenav` is a key _into_ `_data/navigation.yml`. See the
541
- [navigation](#navigation) docs for more info.
640
+ 1. Clone this repo
542
641
 
543
- A page's "current" or "active" state in the sidenav is
544
- determined by whether a link's `href` matches `page.url` or
545
- `page.permalink` for each page being rendered.
642
+ 1. Check the version of USWDS in `package.json` — update to the newest version if necessary, and sync its new files to the theme.
546
643
 
547
- * `subnav` is a list of links to display on this page under its own
548
- link in the side navigation.
644
+ > `rake update`
549
645
 
550
- **Note that subnav link hrefs are not prefixed with
551
- `site.baseurl`** because this breaks hash links prefixed with
552
- `#`.
646
+ 1. Start Jekyll to preview the effects of your changes. This will build the Jekyll site, watch the Sass files, and recompile the Sass when there are changes.
553
647
 
554
- See the [page demo page](demo/page.md) for an example of how this
555
- works, and see [_data/navigation.yml](_data/navigation.yml) for how
556
- to structure named navigation data for your site.
648
+ > `npm start`
557
649
 
558
- ### `layout: post`
650
+ **or**
651
+
652
+ Create a new Jekyll project, follow the
653
+ [installation](#installation) instructions, then change your
654
+ `Gemfile` to point at the local clone of this repo:
559
655
 
560
- This layout is identical to the layout `page` and is included to allow for easier site creation using `Jekyll new`.
656
+ ```ruby
657
+ gem 'uswds-jekyll', :path => '../path/to/uswds-jekyll'
658
+ ```
561
659
 
562
- ### `layout: search-results`
660
+ ### Publish to Rubygems
563
661
 
564
- This layout is for search results and contains the `jekyll_pages_api_search_results`
565
- that renders the results into the `<main>` element. All of the other layouts "inherit" this one and
566
- provide other features in the content block.
662
+ 1. Update `spec.version = "NUMBER HERE"` in the uswds-jekyll.gemspec file to the version you want to publish
663
+ 1. Run `bundle install`
664
+ 1. Add a PR for the update and get it merged
665
+ 1. Run `bundle exec rake release`
666
+ 1. Add a GitHub release to the releases page with the same version number
667
+ 1. You should see the latest version here https://rubygems.org/gems/uswds-jekyll
567
668
 
669
+ #### Scripts
568
670
 
569
- [Sass]: http://sass-lang.com/guide
570
- [Jekyll Sass]: https://jekyllrb.com/docs/assets/#sassscss
571
- [front matter]: https://jekyllrb.com/docs/frontmatter/
671
+ - `start`: Starts the jekyll site
672
+ - `setup-uswds`: Copies assets from the USWDS package to their theme locations, but running the following scipts, which can also be run separately:
673
+ - `sync-assets`: Copies assets to `assets/uswds`
674
+ - `sync-sass`: Copies Sass cource files to `_sass/uswds/src/`
675
+ - `sync-default-settings`: Copies default settings files to `_sass/uswds/settings`
676
+ - `sync-theme-settings`: Copies only theme settings files to `_sass/settings`