jekyll-theme-centos 2.52.0.beta.3 → 2.52.0.beta.5

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 (315) hide show
  1. checksums.yaml +4 -4
  2. data/_data/base/announcement_schema.yml +50 -0
  3. data/_data/base/artwork_schema.yml +46 -0
  4. data/_data/base/backtotop_schema.yml +53 -0
  5. data/_data/base/bits.yml +96 -0
  6. data/_data/base/bits_schema.yml +183 -0
  7. data/_data/base/breadcrumb_schema.yml +14 -0
  8. data/_data/base/breakingnews_schema.yml +59 -0
  9. data/_data/base/color.yml +1042 -0
  10. data/_data/base/color_schema.yml +1036 -0
  11. data/_data/base/content.yml +2 -0
  12. data/_data/base/content_schema.yml +26 -0
  13. data/_data/base/converter_link_schema.yml +48 -0
  14. data/_data/base/copyright.yml +12 -0
  15. data/_data/base/copyright_schema.yml +34 -0
  16. data/_data/base/copyvalue_schema.yml +49 -0
  17. data/_data/base/datatable_schema.yml +57 -0
  18. data/_data/base/event_schema.yml +122 -0
  19. data/_data/base/fontawesome_schema.yml +49 -0
  20. data/_data/base/highlight_schema.yml +68 -0
  21. data/_data/base/languages.yml +186 -0
  22. data/_data/base/link_schema.yml +153 -0
  23. data/_data/base/locales_schema.yml +25 -0
  24. data/_data/base/navbar.yml +20 -0
  25. data/_data/base/navbar_schema.yml +121 -0
  26. data/_data/base/navindex_schema.yml +67 -0
  27. data/_data/base/ogp_schema.yml +186 -0
  28. data/_data/base/project.yml +37 -0
  29. data/_data/base/project_schema.yml +120 -0
  30. data/_data/base/shortcut_schema.yml +74 -0
  31. data/_data/base/social.yml +25 -0
  32. data/_data/base/social_schema.yml +53 -0
  33. data/_data/base/title_schema.yml +49 -0
  34. data/_data/base/toc_schema.yml +100 -0
  35. data/_data/download/cards.yml +309 -0
  36. data/_data/download/navbar.yml +11 -0
  37. data/_data/sponsors/carousel.yml +37 -0
  38. data/_data/sponsors/navbar.yml +6 -0
  39. data/_includes/base/announcement.html.liquid +51 -0
  40. data/_includes/base/artwork.html.liquid +49 -0
  41. data/_includes/base/backtotop.html.liquid +51 -0
  42. data/_includes/base/bits.html.liquid +135 -0
  43. data/_includes/base/breadcrumb.html.liquid +37 -0
  44. data/_includes/base/breakingnews.html.liquid +74 -0
  45. data/_includes/base/card.html.liquid +96 -0
  46. data/_includes/base/copyright.html.liquid +56 -0
  47. data/_includes/base/copyvalue.html.liquid +59 -0
  48. data/_includes/base/datatable.html.liquid +64 -0
  49. data/_includes/base/event.html.liquid +89 -0
  50. data/_includes/base/fontawesome.html.liquid +58 -0
  51. data/_includes/base/head.html.liquid +101 -0
  52. data/_includes/base/highlight.html.liquid +65 -0
  53. data/_includes/base/image.html.liquid +42 -0
  54. data/_includes/base/link.html.liquid +139 -0
  55. data/_includes/base/locales.html.liquid +41 -0
  56. data/_includes/base/navbar.html.liquid +106 -0
  57. data/_includes/base/navindex.html.liquid +162 -0
  58. data/_includes/base/ogp.html.liquid +118 -0
  59. data/_includes/base/project.html.liquid +90 -0
  60. data/_includes/base/script.html.liquid +59 -0
  61. data/_includes/base/shortcut.html.liquid +65 -0
  62. data/_includes/base/social.html.liquid +59 -0
  63. data/_includes/base/title.html.liquid +52 -0
  64. data/_includes/base/toc.html.liquid +91 -0
  65. data/_includes/base/toc_generator.html.liquid +189 -0
  66. data/_includes/download/cards-body-commands.html +7 -0
  67. data/_includes/download/cards-body-convert.html +10 -0
  68. data/_includes/download/cards-body-doc.html +9 -0
  69. data/_includes/download/cards-body-documentation.html +11 -0
  70. data/_includes/download/cards-body-eol.html +16 -0
  71. data/_includes/download/cards-body-mirrors.html +8 -0
  72. data/_includes/download/cards-body-screenshot.html +26 -0
  73. data/_includes/download/cards-body-screenshots.html +32 -0
  74. data/_includes/download/cards-body.html +8 -0
  75. data/_includes/download/cards-footer.html +3 -0
  76. data/_includes/download/cards-header-commands.html +8 -0
  77. data/_includes/download/cards-header-convert.html +8 -0
  78. data/_includes/download/cards-header-doc.html +8 -0
  79. data/_includes/download/cards-header-documentation.html +8 -0
  80. data/_includes/download/cards-header-eol.html +8 -0
  81. data/_includes/download/cards-header-mirrors.html +13 -0
  82. data/_includes/download/cards-header-screenshot.html +8 -0
  83. data/_includes/download/cards-header-screenshots.html +8 -0
  84. data/_includes/download/cards-header.html +13 -0
  85. data/_includes/download/cards.html +120 -0
  86. data/_includes/sponsors/cards.html +11 -0
  87. data/_includes/sponsors/carousel.html +24 -0
  88. data/_layouts/base/default.html +117 -0
  89. data/_layouts/download/cards.html +7 -0
  90. data/_layouts/download/default.html +7 -0
  91. data/_layouts/people/default.html +68 -0
  92. data/_sass/base/_customization.scss +251 -0
  93. data/_sass/base/_light-dark.scss +10 -0
  94. data/_sass/base/_maps.scss +104 -0
  95. data/_sass/base/_variables.scss +232 -0
  96. data/_sass/bootstrap/_accordion.scss +153 -0
  97. data/_sass/bootstrap/_alert.scss +68 -0
  98. data/_sass/bootstrap/_badge.scss +38 -0
  99. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  100. data/_sass/bootstrap/_button-group.scss +147 -0
  101. data/_sass/bootstrap/_buttons.scss +216 -0
  102. data/_sass/bootstrap/_card.scss +238 -0
  103. data/_sass/bootstrap/_carousel.scss +226 -0
  104. data/_sass/bootstrap/_close.scss +66 -0
  105. data/_sass/bootstrap/_containers.scss +41 -0
  106. data/_sass/bootstrap/_dropdown.scss +250 -0
  107. data/_sass/bootstrap/_forms.scss +9 -0
  108. data/_sass/bootstrap/_functions.scss +302 -0
  109. data/_sass/bootstrap/_grid.scss +39 -0
  110. data/_sass/bootstrap/_helpers.scss +12 -0
  111. data/_sass/bootstrap/_images.scss +42 -0
  112. data/_sass/bootstrap/_list-group.scss +199 -0
  113. data/_sass/bootstrap/_maps.scss +174 -0
  114. data/_sass/bootstrap/_mixins.scss +42 -0
  115. data/_sass/bootstrap/_modal.scss +240 -0
  116. data/_sass/bootstrap/_nav.scss +197 -0
  117. data/_sass/bootstrap/_navbar.scss +289 -0
  118. data/_sass/bootstrap/_offcanvas.scss +147 -0
  119. data/_sass/bootstrap/_pagination.scss +109 -0
  120. data/_sass/bootstrap/_placeholders.scss +51 -0
  121. data/_sass/bootstrap/_popover.scss +196 -0
  122. data/_sass/bootstrap/_progress.scss +68 -0
  123. data/_sass/bootstrap/_reboot.scss +617 -0
  124. data/_sass/bootstrap/_root.scss +187 -0
  125. data/_sass/bootstrap/_spinners.scss +86 -0
  126. data/_sass/bootstrap/_tables.scss +171 -0
  127. data/_sass/bootstrap/_toasts.scss +73 -0
  128. data/_sass/bootstrap/_tooltip.scss +119 -0
  129. data/_sass/bootstrap/_transitions.scss +27 -0
  130. data/_sass/bootstrap/_type.scss +106 -0
  131. data/_sass/bootstrap/_utilities.scss +806 -0
  132. data/_sass/bootstrap/_variables-dark.scss +102 -0
  133. data/_sass/bootstrap/_variables.scss +1753 -0
  134. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  135. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  136. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  137. data/_sass/bootstrap/bootstrap.scss +52 -0
  138. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  139. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  140. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  141. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  142. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  143. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  144. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  145. data/_sass/bootstrap/forms/_labels.scss +36 -0
  146. data/_sass/bootstrap/forms/_validation.scss +12 -0
  147. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  148. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  149. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  150. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  151. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  152. data/_sass/bootstrap/helpers/_position.scss +36 -0
  153. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  154. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  155. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  156. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  157. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  158. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  159. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  160. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  161. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  162. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  163. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  164. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  165. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  166. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  167. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  168. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  169. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  170. data/_sass/bootstrap/mixins/_container.scss +11 -0
  171. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  172. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  173. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  174. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  175. data/_sass/bootstrap/mixins/_image.scss +16 -0
  176. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  177. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  178. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  179. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  180. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  181. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  182. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  183. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  184. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  185. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  186. data/_sass/bootstrap/utilities/_api.scss +47 -0
  187. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  188. data/assets/css/base/stylesheet.min.scss +35 -0
  189. data/assets/icons/android-chrome-192.png +0 -0
  190. data/assets/icons/android-chrome-512.png +0 -0
  191. data/assets/icons/apple-touch-icon.png +0 -0
  192. data/assets/icons/favicon-16.png +0 -0
  193. data/assets/icons/favicon-32.png +0 -0
  194. data/assets/icons/favicon.ico +0 -0
  195. data/assets/icons/favicon.svg +1 -0
  196. data/assets/img/anaconda-symbolic.svg +1 -0
  197. data/assets/img/anaconda.svg +1 -0
  198. data/assets/img/base/centos-colors.gpl +55 -0
  199. data/assets/img/base/page-layout-default.png +0 -0
  200. data/assets/img/base/page-layout-default.svg +1158 -0
  201. data/assets/img/base/page-with-alert.png +0 -0
  202. data/assets/img/base/page-with-alert.svg +359 -0
  203. data/assets/img/base/page-with-announcement.png +0 -0
  204. data/assets/img/base/page-with-announcement.svg +499 -0
  205. data/assets/img/base/page-with-artwork.png +0 -0
  206. data/assets/img/base/page-with-artwork.svg +368 -0
  207. data/assets/img/base/page-with-backtotop.png +0 -0
  208. data/assets/img/base/page-with-backtotop.svg +275 -0
  209. data/assets/img/base/page-with-bits.png +0 -0
  210. data/assets/img/base/page-with-bits.svg +311 -0
  211. data/assets/img/base/page-with-breadcrumb.png +0 -0
  212. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  213. data/assets/img/base/page-with-breakingnews.png +0 -0
  214. data/assets/img/base/page-with-breakingnews.svg +903 -0
  215. data/assets/img/base/page-with-color.png +0 -0
  216. data/assets/img/base/page-with-color.svg +57 -0
  217. data/assets/img/base/page-with-copyright.png +0 -0
  218. data/assets/img/base/page-with-copyright.svg +233 -0
  219. data/assets/img/base/page-with-copyvalue.png +0 -0
  220. data/assets/img/base/page-with-copyvalue.svg +57 -0
  221. data/assets/img/base/page-with-datatable.png +0 -0
  222. data/assets/img/base/page-with-datatable.svg +857 -0
  223. data/assets/img/base/page-with-event.png +0 -0
  224. data/assets/img/base/page-with-event.svg +522 -0
  225. data/assets/img/base/page-with-fontawesome.png +0 -0
  226. data/assets/img/base/page-with-fontawesome.svg +147 -0
  227. data/assets/img/base/page-with-heading.png +0 -0
  228. data/assets/img/base/page-with-heading.svg +57 -0
  229. data/assets/img/base/page-with-highlight.png +0 -0
  230. data/assets/img/base/page-with-highlight.svg +86 -0
  231. data/assets/img/base/page-with-link.png +0 -0
  232. data/assets/img/base/page-with-link.svg +395 -0
  233. data/assets/img/base/page-with-locales.png +0 -0
  234. data/assets/img/base/page-with-locales.svg +724 -0
  235. data/assets/img/base/page-with-navbar.png +0 -0
  236. data/assets/img/base/page-with-navbar.svg +438 -0
  237. data/assets/img/base/page-with-navindex.png +0 -0
  238. data/assets/img/base/page-with-navindex.svg +279 -0
  239. data/assets/img/base/page-with-ogp.png +0 -0
  240. data/assets/img/base/page-with-ogp.svg +368 -0
  241. data/assets/img/base/page-with-project.png +0 -0
  242. data/assets/img/base/page-with-project.svg +822 -0
  243. data/assets/img/base/page-with-shortcut.png +0 -0
  244. data/assets/img/base/page-with-shortcut.svg +233 -0
  245. data/assets/img/base/page-with-social.png +0 -0
  246. data/assets/img/base/page-with-social.svg +233 -0
  247. data/assets/img/base/page-with-title.png +0 -0
  248. data/assets/img/base/page-with-title.svg +584 -0
  249. data/assets/img/base/page-with-toc.png +0 -0
  250. data/assets/img/base/page-with-toc.svg +438 -0
  251. data/assets/img/base/screenshot-example-1200x600.png +0 -0
  252. data/assets/img/base/screenshot-example-1200x600.svg +114 -0
  253. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  254. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  257. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  258. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  259. data/assets/img/centos-logo-2bits.svg +1 -0
  260. data/assets/img/centos-logo.svg +1 -0
  261. data/assets/img/centos-message-logo.svg +1 -0
  262. data/assets/img/centos-motif.png +0 -0
  263. data/assets/img/centos-poweredby-logo.svg +1 -0
  264. data/assets/img/centos-social-share.png +0 -0
  265. data/assets/img/centos-symbol-2bits.svg +1 -0
  266. data/assets/img/centos-symbol.svg +1 -0
  267. data/assets/img/centos-type.svg +1 -0
  268. data/assets/img/centos-vertical-logo.svg +1 -0
  269. data/assets/img/centos-vertical-message-logo.svg +1 -0
  270. data/assets/img/centos-whitelogo.svg +1 -0
  271. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  272. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  274. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  279. data/assets/img/download/download.svg +421 -0
  280. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  281. data/assets/img/people/page.svg +900 -0
  282. data/assets/img/people/page.webp +0 -0
  283. data/assets/img/people/username.webp +0 -0
  284. data/assets/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
  285. data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
  286. data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
  287. data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
  288. data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
  289. data/assets/img/sponsors/sponsor-logo-1.png +0 -0
  290. data/assets/img/sponsors/sponsor-logo-2.png +0 -0
  291. data/assets/img/sponsors/sponsor-logo-3.png +0 -0
  292. data/assets/img/sponsors/sponsor-logo-4.png +0 -0
  293. data/assets/img/sponsors/sponsor-logo-5.png +0 -0
  294. data/assets/img/sponsors/sponsor-logo-6.png +0 -0
  295. data/assets/img/sponsors/sponsor-logo-7.png +0 -0
  296. data/assets/img/sponsors/sponsor-logo-8.png +0 -0
  297. data/assets/img/sponsors/sponsors-logo.svg +563 -0
  298. data/assets/js/base/backtotop.js +23 -0
  299. data/assets/js/base/copyvalue.js +251 -0
  300. data/assets/js/base/datatable.js +55 -0
  301. data/assets/js/base/highlight.js +6 -0
  302. data/assets/js/base/init-tooltips.js +5 -0
  303. data/assets/js/bootstrap.bundle.js +6312 -0
  304. data/assets/js/bootstrap.bundle.js.map +1 -0
  305. data/assets/js/bootstrap.bundle.min.js +7 -0
  306. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  307. data/assets/js/bootstrap.esm.js +4447 -0
  308. data/assets/js/bootstrap.esm.js.map +1 -0
  309. data/assets/js/bootstrap.esm.min.js +7 -0
  310. data/assets/js/bootstrap.esm.min.js.map +1 -0
  311. data/assets/js/bootstrap.js +4494 -0
  312. data/assets/js/bootstrap.js.map +1 -0
  313. data/assets/js/bootstrap.min.js +7 -0
  314. data/assets/js/bootstrap.min.js.map +1 -0
  315. metadata +314 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31a00ed1a85937dc6cbb6851b81b74665fa4f4211959878ef8ae1e03bcbcca6d
4
- data.tar.gz: b7b0d18055c48d4e15e69c5ee0624aa1ac75d239237445c12fd818220da5b399
3
+ metadata.gz: 8e277162bcff7fef4019b4dfc95f7948d1e2b73451e99020373df53f6896b278
4
+ data.tar.gz: 25e64b4f95f3e17b18d86478bf92e8d8df4b09c1c7ccbd63c6ba183fe3877497
5
5
  SHA512:
6
- metadata.gz: ac7108ce0a075bc01dae10b339e6d25d28003ef8b4c129f59003f40b36c18083ba449da31f45dcd31ee7a990daf32715f4663791ff88dcec5e19271b3c2ec620
7
- data.tar.gz: 7b61cc8c5cae058c7c48c6b1ec245c2d765ebd30cbdade66dff58433bca81d877271482d77d57a29091815edad30becee8a9af9f98e2541d56ae1034b969fc2e
6
+ metadata.gz: 987543de88167a9b80706bb09e8b3f089d1ecc625f6a4d17f7be53a0342a6166f14c0cb4c8ab21091aa6ba9be050e99595f488ec8f747c14af5785c8fdb1b7a1
7
+ data.tar.gz: 2eb37a87c50c65c30ff5d39f897b09b4bd12bb6be997cc158a211bc24ddbd3e638ad64bb59df9c9dfca93aadedc0a7da97e40fb94e99fd460408c42c45eae700
@@ -0,0 +1,50 @@
1
+ ---
2
+ title: Announcement Component Configuration
3
+ description: >-
4
+ Schema for configuring the 'Announcement' presentation component. This component
5
+ is typically used to display important, user-facing messages.
6
+ type: object
7
+ properties:
8
+ with_announcement:
9
+ type: boolean
10
+ default: false
11
+ description: >-
12
+ Enables or disables the Announcement component. Set to `true` to
13
+ display announcements; set to `false` (default) to hide them. When enabled,
14
+ the related `with_announcement_data` property must be populated with content.
15
+ with_announcement_data:
16
+ type: array
17
+ default: []
18
+ description: >-
19
+ The configuration data for the announcement component. This property
20
+ accepts a list of announcement objects to be presented when
21
+ `with_announcement` is set to `true`. If multiple announcements are
22
+ provided, they will be displayed in the order they appear in the list.
23
+ items:
24
+ type: object
25
+ properties:
26
+ content:
27
+ type: string
28
+ default: ""
29
+ description: The main text content of the announcement. This field is required.
30
+ color:
31
+ type: string
32
+ default: "primary"
33
+ description: >-
34
+ Defines the visual style/severity of the announcement. Defaults to
35
+ `primary`. Available options are any supported [color](../color/)
36
+ class (e.g., `secondary`, `warning`, `success`, `danger`,
37
+ `centos-purple-800`.
38
+ icon:
39
+ type: string
40
+ default: ""
41
+ description: >-
42
+ The Font Awesome icon class (e.g., `fa-solid fa-bell`) to display
43
+ on the left side of the announcement. Only [freely distributed Font
44
+ Awesome icons](https://fontawesome.com/search?ic=free-collection) are supported. If no value is provided, the default
45
+ icon `fa-solid fa-bullhorn` will be used by the rendering engine.
46
+ required:
47
+ - content
48
+ additionalProperties: false
49
+ additionalProperties: false
50
+ # test
@@ -0,0 +1,46 @@
1
+ title: Artwork Component Configuration
2
+ description: >-
3
+ Defines the schema for configuring the presentation and content of the Artwork
4
+ component, typically used to display a decorative or informational image.
5
+ type: object
6
+ properties:
7
+ with_artwork:
8
+ type: boolean
9
+ default: true
10
+ description: >-
11
+ Enables or disables the Artwork component. Set to `true` (default) to
12
+ display the artwork; set to `false` to hide it. When enabled,
13
+ the related `with_artwork_data` property is used for configuration.
14
+ with_artwork_data:
15
+ type: object
16
+ description: >-
17
+ The configuration dictionary for the Artwork component. This object contains
18
+ all necessary settings, such as image source, container classes, and alt text.
19
+ properties:
20
+ class:
21
+ type: string
22
+ default: col
23
+ description: >-
24
+ Custom CSS class(es) to apply to the Artwork component's container element.
25
+ The default value `col` suggests a standard column layout.
26
+ image:
27
+ type: string
28
+ default: /assets/img/centos-motif.png
29
+ description: >-
30
+ The URL path to the image file. This supports both relative paths (e.g., `/assets/img/your-image.jpg`) and absolute URLs.
31
+ image_class:
32
+ type: string
33
+ default: img-fluid rounded bg-dark
34
+ description: >-
35
+ Custom CSS class(es) to apply directly to the image element (e.g.,
36
+ `<img>`). The default classes apply common styling like responsiveness,
37
+ rounded corners, and a dark background.
38
+ alt:
39
+ type: string
40
+ default: centos-motif.png
41
+ description: >-
42
+ The alternative text for the image, crucial for accessibility and
43
+ SEO. This text is displayed when the image cannot be loaded.
44
+ required:
45
+ - image # Added a required field constraint for best practice
46
+ additionalProperties: false
@@ -0,0 +1,53 @@
1
+ title: Back to Top Component Configuration
2
+ description: >-
3
+ Schema for configuring the 'Back to Top' scroll-assist component (addon). This
4
+ allows users to quickly return to the top of a long page.
5
+ type: object
6
+ properties:
7
+ with_backtotop:
8
+ type: boolean
9
+ default: true
10
+ description: >-
11
+ Enables or disables the Back to Top component. Set to `true` (default)
12
+ to activate the scroll button; set to `false` to hide it. Configuration is
13
+ managed via the `with_backtotop_data` property when enabled.
14
+ with_backtotop_data:
15
+ type: object
16
+ description: >-
17
+ The configuration object for the Back to Top addon. This dictionary
18
+ contains settings for distribution and visual customization.
19
+ properties:
20
+ cdn:
21
+ type: string
22
+ default: "https://unpkg.com"
23
+ description: >-
24
+ The Content Delivery Network (CDN) base URL from which the Back
25
+ to Top addon's distribution files are sourced (e.g., `https://unpkg.com`).
26
+ version:
27
+ type: string
28
+ default: "7.2.1"
29
+ description: >-
30
+ Specifies the version of the Back to Top addon to load from the CDN
31
+ (e.g., `7.2.1`).
32
+ diameter:
33
+ type: string
34
+ default: "56"
35
+ description: >-
36
+ The diameter (size) of the circular Back to Top button, specified
37
+ as a string (e.g., `56` which likely represents pixels).
38
+ background_color:
39
+ type: string
40
+ default: "#A54C93"
41
+ description: >-
42
+ The background color of the Back to Top button. Value must be a
43
+ valid CSS color string, typically a hexadecimal code (e.g., `#A54C93`).
44
+ text_color:
45
+ type: string
46
+ default: "#ffffff"
47
+ description: >-
48
+ The color of the icon/text displayed inside the Back to Top button.
49
+ Value must be a valid CSS color string (e.g., `#ffffff`).
50
+ required:
51
+ - cdn
52
+ - version # Added required fields for best practice
53
+ additionalProperties: false
@@ -0,0 +1,96 @@
1
+ ---
2
+ - name: Upstream card example 1
3
+ class: bg-primary bg-opacity-10 border border-primary-subtle mb-3 p-5 rounded
4
+ type: upstream
5
+ image: centos-symbol.svg
6
+ image_style: "height: 92px"
7
+ description: |
8
+ Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
9
+ convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
10
+ conubia consectetur.
11
+ screenshot: base/screenshot-example-1600x1200.webp
12
+ finale: "Derivatives:"
13
+ actions:
14
+ - name: Action 1
15
+ icon: fa-solid fa-arrow-right
16
+ icon_position: end
17
+ link: "#"
18
+ - name: Action 2
19
+ icon: fa-solid fa-arrow-right
20
+ icon_position: start
21
+ link: "#"
22
+ - name: Action 3
23
+ icon: fa-solid fa-circle-info
24
+ link: "#"
25
+ - name: Action 4
26
+ link: "#"
27
+ index_page_name: See all
28
+ index_page_link: "#"
29
+ relationship:
30
+ - Downstream example 1-1
31
+ - Downstream example 1-2
32
+ - Downstream example 1-3
33
+ - Downstream example 1-4
34
+ - name: Downstream example 1-1
35
+ type: downstream
36
+ description: |
37
+ Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
38
+ convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
39
+ screenshot: base/screenshot-example-1600x1200.webp
40
+ image: centos-symbol.svg
41
+ actions:
42
+ - name: Action 1
43
+ icon: fa-solid fa-arrow-right
44
+ link: "#"
45
+ icon_position: end
46
+ - name: Action 2
47
+ icon: fa-solid fa-arrow-right
48
+ icon_position: start
49
+ link: "#"
50
+ - name: Action 3
51
+ icon: fa-solid fa-arrow-right
52
+ link: "#"
53
+ - name: Action 4
54
+ link: "#"
55
+ relationship:
56
+ - Upstream card example 1
57
+ - name: Downstream example 1-2
58
+ icon: fa-solid fa-arrow-right
59
+ screenshot: base/screenshot-example-1600x1200.webp
60
+ type: downstream
61
+ description: |
62
+ Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
63
+ convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
64
+ relationship:
65
+ - Upstream card example 1
66
+ actions:
67
+ - name: Action 1
68
+ icon: fa-solid fa-arrow-right
69
+ icon_position: end
70
+ link: "#"
71
+ - name: Downstream example 1-3
72
+ screenshot: base/screenshot-example-1600x1200.webp
73
+ type: downstream
74
+ description: |
75
+ Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
76
+ convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
77
+ relationship:
78
+ - Upstream card example 1
79
+ actions:
80
+ - name: Action 1
81
+ icon: fa-solid fa-arrow-right
82
+ icon_position: end
83
+ link: "#"
84
+ - name: Downstream example 1-4
85
+ screenshot: base/screenshot-example-1600x1200.webp
86
+ type: downstream
87
+ description: |
88
+ Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
89
+ convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
90
+ relationship:
91
+ - Upstream card example 1
92
+ actions:
93
+ - name: Action 1
94
+ icon: fa-solid fa-arrow-right
95
+ icon_position: start
96
+ link: "#"
@@ -0,0 +1,183 @@
1
+ title: Bits Component Configuration
2
+ description: >-
3
+ Schema for configuring the 'Bits' presentation component. This component is
4
+ designed to showcase related projects or derivatives, typically in an
5
+ Upstream/Downstream relationship.
6
+ type: object
7
+ properties:
8
+ with_bits:
9
+ type: boolean
10
+ default: false
11
+ description: >-
12
+ Enables or disables the Bits component rendering. Set to `true` to display
13
+ the component; set to `false` (default) to skip rendering.
14
+ with_bits_data:
15
+ type: array
16
+ default: []
17
+ description: >-
18
+ An array of objects defining the custom data structure for all Bits. When
19
+ defined, this data overrides any values set in the component's default
20
+ configuration file.
21
+ items:
22
+ type: object
23
+ properties:
24
+ name:
25
+ type: string
26
+ default: ""
27
+ description: >-
28
+ The unique identifying name of the Bit (e.g., `CentOS-Stream`). This
29
+ value is often used to generate HTML element IDs and must contain
30
+ only alphanumeric characters, dashes (-), and underscores (_).
31
+ pattern: "^[a-zA-Z0-9_-]+$"
32
+ name_class:
33
+ type: string
34
+ default: ""
35
+ description: Custom Bootstrap classes applied to the HTML element containing the Bit's `name`.
36
+ icon:
37
+ type: string
38
+ default: ""
39
+ description: >-
40
+ The Font Awesome icon class to represent the Bit. Only freely
41
+ distributed Font Awesome icons are supported
42
+ (see: https://fontawesome.com/v7/search?ic=free&o=r).
43
+ icon_class:
44
+ type: string
45
+ default: ""
46
+ description: Custom Bootstrap classes applied to the Bit's `icon` element.
47
+ image:
48
+ type: string
49
+ default: ""
50
+ description: >-
51
+ The Bit's branding image file path, relative to the `/assets/img/`
52
+ directory (e.g., `logo.svg` for a file at `/assets/img/logo.svg`).
53
+ image_class:
54
+ type: string
55
+ default: ""
56
+ description: Custom Bootstrap classes applied directly to the Bit's branding `image` element.
57
+ image_style:
58
+ type: string
59
+ default: ""
60
+ description: >-
61
+ Custom CSS styles (e.g., `height: 100px;`) applied inline to the
62
+ Bit's branding `image` element to control presentation (e.g., height).
63
+ screenshot:
64
+ type: string
65
+ description: >-
66
+ The path to the main visual representation or screenshot of the Bit,
67
+ relative to the `/assets/img/` directory. The recommended image size is
68
+ 1600x1200 pixels, but the ratio can be adjusted via height/ratio to
69
+ control vertical spacing between description and actions.
70
+ format: uri-reference
71
+ screenshot_class:
72
+ type: string
73
+ default: ""
74
+ description: Custom Bootstrap classes applied to the `screenshot` image element.
75
+ screenshot_style:
76
+ type: string
77
+ description: Custom CSS styles applied inline to the `screenshot` image element.
78
+ screenshot_alt:
79
+ type: string
80
+ default: ""
81
+ description: The alternative text for the `screenshot` image, for accessibility.
82
+ description:
83
+ type: string
84
+ description: A concise description of the Bit, typically one or two sentences long.
85
+ description_class:
86
+ type: string
87
+ default: ""
88
+ description: Custom Bootstrap classes applied to the Bit's `description` element.
89
+ type:
90
+ type: string
91
+ description: >-
92
+ Defines the role of the Bit in the component layout. `upstream` Bits
93
+ are main projects/products. `downstream` Bits are derivatives or
94
+ related projects, and must link back to an Upstream Bit via the
95
+ `relationship` property.
96
+ enum:
97
+ - upstream
98
+ - downstream
99
+ relationship:
100
+ type: array
101
+ description: >-
102
+ A list of Bit names that define the connection between Bits. For a
103
+ `downstream` Bit, this list should contain the `name` of its Upstream parent. For an `upstream` Bit, this list specifies its Downstream children. Direct relationships between Bits of the same type are not supported.
104
+ items:
105
+ type: string
106
+ actions:
107
+ type: array
108
+ default: []
109
+ description: >-
110
+ A list of configuration objects for Call-to-Action (CTA) buttons associated with the Bit presentation. Each item configures a link button
111
+ using the `base/link.html.liquid` template structure.
112
+ items:
113
+ type: object
114
+ description: Configuration object for a single action button (link). Refer to the `link` component documentation for specific properties.
115
+ additionalProperties: true # Changed to true as properties are defined externally
116
+ actions_class:
117
+ type: string
118
+ description: Custom Bootstrap classes applied to the container holding the list of `actions` buttons.
119
+ preamble:
120
+ type: string
121
+ default: "Bits produced upstream:"
122
+ description: >-
123
+ A descriptive message displayed before the Upstream Bits section.
124
+ Only relevant when `type` is set to `upstream`.
125
+ preamble_class:
126
+ type: string
127
+ default: mb-3
128
+ description: Custom Bootstrap classes applied to the `preamble` message element (default adds margin-bottom).
129
+ finale:
130
+ type: string
131
+ default: "Bits produced downstream:"
132
+ description: >-
133
+ A descriptive message displayed before the Downstream Bits section.
134
+ Only relevant when `type` is set to `upstream`.
135
+ finale_class:
136
+ type: string
137
+ default: mb-3
138
+ description: Custom Bootstrap classes applied to the `finale` message element (default adds margin-bottom).
139
+ class:
140
+ type: string
141
+ default: ""
142
+ description: >-
143
+ Custom Bootstrap classes applied to the main container of the
144
+ Upstream Bit layout. Use this to control padding, background, and element
145
+ alignment within the card, often in combination with the `color` property.
146
+ card_class:
147
+ type: string
148
+ default: "flex-column align-items-center text-center mb-3"
149
+ description: Custom Bootstrap classes applied directly to the card element inside the Upstream Bit container.
150
+ color:
151
+ type: string
152
+ default: primary
153
+ description: >-
154
+ The presentation color used for styling the Bit's elements (e.g., links,
155
+ borders). Possible values are any valid Bootstrap color utility classes (e.g., `primary`, `success`, `warning`).
156
+ enum:
157
+ - primary
158
+ - secondary
159
+ - warning
160
+ - success
161
+ - danger
162
+ - info
163
+ - light
164
+ - dark
165
+ index_page_name:
166
+ type: string
167
+ default: ""
168
+ description: The visible link text (e.g., `See all derivatives`) used to connect to the Downstream index page.
169
+ index_page_url:
170
+ type: string
171
+ description: >-
172
+ The URL path to the index page listing all Downstream resources related
173
+ to this Upstream Bit. For example, if the Upstream is at `/my-project/`,
174
+ this might be `/my-project/derivatives/`.
175
+ format: uri-reference
176
+ required:
177
+ - screenshot
178
+ - description
179
+ - type
180
+ - color
181
+ - name # Added name as it is critical for relationship
182
+ additionalProperties: false
183
+ additionalProperties: false
@@ -0,0 +1,14 @@
1
+ title: Breadcrumb Navigation Configuration
2
+ description: >-
3
+ Schema for configuring the breadcrumb navigation component within the Jekyll theme.
4
+ Breadcrumbs provide a secondary navigation aid showing the user's location
5
+ within the site hierarchy.
6
+ type: object
7
+ properties:
8
+ with_breadcrumb:
9
+ type: boolean
10
+ default: true
11
+ description: >-
12
+ Enables or disables the rendering of the breadcrumb navigation component.
13
+ Set to `true` (default) to display the breadcrumbs; set to `false` to hide them.
14
+ additionalProperties: false
@@ -0,0 +1,59 @@
1
+ title: Breaking News Component Configuration
2
+ description: >-
3
+ Schema for configuring the 'Breaking News' display component within the Jekyll theme.
4
+ This component is typically used to draw attention to urgent or critical updates.
5
+ type: object
6
+ properties:
7
+ with_breakingnews:
8
+ type: boolean
9
+ default: false
10
+ description: >-
11
+ Enables or disables the Breaking News component. Set to `true` to
12
+ display the messages; set to `false` (default) to hide them. When enabled,
13
+ the `with_breakingnews_data` property must be provided.
14
+ with_breakingnews_data:
15
+ type: array
16
+ default: [] # Corrected: Moved default to array level and set to []
17
+ description: >-
18
+ An array of objects containing the configuration and messages for the
19
+ breaking news display. If multiple items are provided, they will be
20
+ presented in the order they appear in this list.
21
+ items:
22
+ type: object
23
+ properties:
24
+ content:
25
+ type: string
26
+ description: The main text content of the breaking news message. This field is required.
27
+ color:
28
+ type: string
29
+ default: primary
30
+ description: >-
31
+ Defines the visual style/severity of the message. Defaults to
32
+ `primary`. Available options are listed in the `enum`.
33
+ enum:
34
+ - primary
35
+ - secondary
36
+ - info
37
+ - warning
38
+ - danger
39
+ - success
40
+ - dark
41
+ - light
42
+ icon:
43
+ type: string
44
+ default: fa-solid fa-bullhorn
45
+ description: >-
46
+ The Font Awesome icon class displayed on the left side of the
47
+ message (e.g., `fa-solid fa-bell`). The default is `fa-solid fa-bullhorn`.
48
+ Note that the [Font Awesome theme addon](../../addons/fontawesome/) must be enabled for these icons to render.
49
+ link:
50
+ type: string
51
+ format: uri
52
+ description: >-
53
+ The URL pointing to a page or resource with detailed information
54
+ about the breaking news message.
55
+ required:
56
+ - content
57
+ additionalProperties: false
58
+ required:
59
+ - with_breakingnews