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
@@ -0,0 +1,2 @@
1
+ ---
2
+ class: col
@@ -0,0 +1,26 @@
1
+ title: Content Section Configuration
2
+ description: >-
3
+ Schema for configuring the main content display component. This controls the
4
+ rendering and layout of the primary content area on a page.
5
+ type: object
6
+ properties:
7
+ with_content:
8
+ type: boolean
9
+ default: true
10
+ description: >-
11
+ Enables or disables the rendering of the content section. Set to `true`
12
+ (default) to display the content area; set to `false` to hide it entirely.
13
+ with_content_data:
14
+ type: object
15
+ description: >-
16
+ Configuration object for customizing the presentation and layout of the
17
+ rendered content section.
18
+ properties:
19
+ class:
20
+ type: string
21
+ default: col
22
+ description: >-
23
+ A Bootstrap column class used to control the width and responsiveness of the content section container (e.g., `col`, `col-md-10`, `col-lg-8`).
24
+ This dictates the column size within the grid system.
25
+ additionalProperties: false # Added to restrict unexpected properties in the data object
26
+ additionalProperties: false
@@ -0,0 +1,48 @@
1
+ title: Converter Link Plugin Configuration
2
+ description: >-
3
+ Schema for configuring the converter_link.rb Jekyll plugin, which
4
+ automatically applies standardized Bootstrap utility classes to link elements
5
+ generated from Markdown syntax, and manages external links with protective
6
+ attributes and icons.
7
+ type: object
8
+ properties:
9
+ enabled:
10
+ type: boolean
11
+ default: true
12
+ description: >-
13
+ Controls whether the plugin runs during Jekyll's build process.
14
+ Set to `true` (default) to apply link classes and external link features
15
+ automatically; set to `false` to disable automatic link styling and
16
+ use plain Markdown links. When disabled, the plugin logs:
17
+ "Disabled via configuration. Skipping custom link modification."
18
+ Useful for debugging or testing.
19
+ default_link_classes:
20
+ type: string
21
+ default: "link link-offset-3 link-offset-3-hover link-underline-primary link-underline-opacity-0 link-underline-opacity-100-hover"
22
+ description: >-
23
+ Bootstrap utility classes applied to all links outside of alert blocks.
24
+ Customize this to match your site's link styling preferences.
25
+ Each class is separated by spaces. The default creates an elegant hover
26
+ effect where the underline fades in as users interact with the link.
27
+ See [Bootstrap Link Utilities documentation](https://getbootstrap.com/docs/5.3/utilities/link/)
28
+ for class reference.
29
+ alert_link_classes:
30
+ type: string
31
+ default: "alert-link"
32
+ description: >-
33
+ Bootstrap classes applied to links within `.alert` paragraphs.
34
+ The `alert-link` class adapts link color to match the alert context
35
+ (primary, success, warning, danger, etc.). Supports multiple classes
36
+ separated by spaces. See [Bootstrap Alert Link Color documentation](https://getbootstrap.com/docs/5.3/components/alerts/#link-color)
37
+ for details.
38
+ external_link_icon:
39
+ type: boolean
40
+ default: true
41
+ description: >-
42
+ Controls whether external-link icons are added to cross-domain external
43
+ links. Set to `true` (default) to display Font Awesome external-link
44
+ icons (`fa-solid fa-external-link`) at the end of links pointing to
45
+ different domains. Set to `false` to disable external-link icon insertion.
46
+ required:
47
+ - enabled
48
+ additionalProperties: false
@@ -0,0 +1,12 @@
1
+ ---
2
+ #
3
+ # site.data.base.copyright - Control copyright information and legal links.
4
+ #
5
+ author: "The CentOS Project"
6
+ legals:
7
+ - name: "Legal"
8
+ link: "https://www.centos.org/legal"
9
+ - name: "Privacy"
10
+ link: "https://www.centos.org/legal/privacy"
11
+ - name: "Site source"
12
+ link: "https://gitlab.com/CentOS/promo/centos.org"
@@ -0,0 +1,34 @@
1
+ title: Copyright Component Configuration
2
+ description: >-
3
+ Schema for configuring the display and content of the site's copyright notice,
4
+ typically rendered in the footer.
5
+ type: object
6
+ properties:
7
+ with_copyright:
8
+ type: boolean
9
+ default: false
10
+ description: >-
11
+ Enables or disables the rendering of the copyright notice. Set to `true`
12
+ to display the copyright; set to `false` (default) to hide it.
13
+ with_copyright_data:
14
+ type: object
15
+ description: >-
16
+ The configuration object containing the content and legal links for the
17
+ copyright note.
18
+ properties:
19
+ author:
20
+ type: string
21
+ default: The CentOS Project
22
+ description: >-
23
+ The name of the site creator, owner, or organization that holds the copyright (e.g., `The CentOS Project`).
24
+ legals:
25
+ type: array
26
+ description: >-
27
+ A list of objects defining legal links (e.g., Privacy Policy, Terms of Use) to be displayed alongside the copyright note. Each item is configured
28
+ using the external `base/link.html.liquid` template structure.
29
+ items:
30
+ type: object
31
+ description: Configuration for a single legal text link. Refer to the link component's documentation for valid properties.
32
+ additionalProperties: true
33
+ additionalProperties: false
34
+ additionalProperties: false
@@ -0,0 +1,49 @@
1
+ title: Copy Value Component Configuration
2
+ description: >-
3
+ Schema for configuring the 'Copy Value' component. This utility component
4
+ provides a reusable copy-to-clipboard functionality with visual feedback,
5
+ supporting SVG icon transformation and tooltip updates.
6
+ type: object
7
+ properties:
8
+ with_copyvalue:
9
+ type: boolean
10
+ default: true
11
+ description: >-
12
+ Enables or disables the Copy Value component JavaScript functionality.
13
+ Set to `true` (default) to activate copy-to-clipboard features;
14
+ set to `false` to disable the script.
15
+ with_copyvalue_data:
16
+ type: object
17
+ description: >-
18
+ The configuration object for the Copy Value component. This dictionary
19
+ contains settings for behavior and visual customization.
20
+ properties:
21
+ reset_delay:
22
+ type: integer
23
+ default: 2000
24
+ description: >-
25
+ The delay in milliseconds before reverting the icon and tooltip
26
+ to their original state after a successful copy. Default is 2000ms
27
+ (2 seconds).
28
+ checkmark_path:
29
+ type: string
30
+ default: "M434.8 70.1c14.3 10.4 17.5 30.4 7.1 44.7l-256 352c-5.5 7.6-14 12.3-23.4 13.1s-18.5-2.7-25.1-9.3l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l101.5 101.5 234-321.7c10.4-14.3 30.4-17.5 44.7-7.1z"
31
+ description: >-
32
+ The SVG path data for the checkmark icon displayed after copying.
33
+ This is the d attribute of the checkmark path element in FontAwesome
34
+ fa-check icon. Can be customized for different visual styles.
35
+ checkmark_viewbox:
36
+ type: string
37
+ default: "0 0 448 512"
38
+ description: >-
39
+ The viewBox attribute for the checkmark SVG. Defines the coordinate
40
+ system for the checkmark icon path.
41
+ success_message:
42
+ type: string
43
+ default: "Copied!"
44
+ description: >-
45
+ The tooltip message displayed after successful copy. Customize to
46
+ match your site's language or messaging preferences.
47
+ required:
48
+ - reset_delay
49
+ additionalProperties: false
@@ -0,0 +1,57 @@
1
+ title: DataTables.js Addon Configuration
2
+ description: >-
3
+ Schema for configuring the external DataTables.js library addon, used to add
4
+ advanced interaction controls (sorting, searching, pagination) to HTML tables.
5
+ type: object
6
+ properties:
7
+ with_datatable:
8
+ type: boolean
9
+ default: true
10
+ description: >-
11
+ Enables or disables the DataTables addon. Set to `true` (default) to
12
+ load the necessary CSS and JavaScript files; set to `false` to disable.
13
+ with_datatable_data:
14
+ type: object
15
+ description: >-
16
+ The configuration object containing version, integrity checks, and default
17
+ behavior settings for DataTables.js.
18
+ properties:
19
+ version:
20
+ type: string
21
+ default: "v/bs5/jq-3.7.0/dt-2.3.5"
22
+ description: >-
23
+ The specific version and dependencies string for the compressed
24
+ and minified DataTables distribution (e.g., `v/bs5/jq-3.7.0/dt-2.3.5`).
25
+ This value is sourced from the DataTables [download page](https://datatables.net/download/).
26
+ css_integrity:
27
+ type: string
28
+ default: "sha384-X4ObCG8fB8SK+9d3GgWfrrKjO7nk3Q2PrwyEKa4Nx78Su/v2xEBtCnJ9kRP+gHhi"
29
+ description: >-
30
+ The Subresource Integrity (SRI) CSS checksum (`sha384-...`) for the
31
+ specific DataTables version used. This is essential for ensuring the integrity
32
+ of the loaded CSS resource.
33
+ script_integrity:
34
+ type: string
35
+ default: "sha384-nhDlWXAURrLQOkCo8hXDhpFWZjzFzX/udlaGLd8PDMKvv67k6YMfex2pZjLU6o2U"
36
+ description: >-
37
+ The Subresource Integrity (SRI) JavaScript checksum (`sha384-...`)
38
+ for the specific DataTables version used. This ensures the integrity of
39
+ the loaded JavaScript file.
40
+ page_length:
41
+ type: integer # SUGGESTION: Changed from string to integer for strict validation
42
+ default: 10
43
+ description: >-
44
+ The default number of entries (rows) to display per page initially.
45
+ Users can dynamically change this value using the length menu control.
46
+ length_menu:
47
+ type: string # Kept as string to preserve comma-separated input ease
48
+ default: "10,25,50,75"
49
+ description: >-
50
+ A comma-separated list of numbers defining the options available
51
+ in the "Show X entries" dropdown menu (e.g., `10,25,50,75`).
52
+ required:
53
+ - version
54
+ - css_integrity
55
+ - script_integrity # Added integrity checks and version as required for security/functionality
56
+ additionalProperties: false
57
+ additionalProperties: false
@@ -0,0 +1,122 @@
1
+ title: Event Component Configuration
2
+ description: >-
3
+ Schema for configuring the 'Event' presentation component. This component
4
+ displays one or more upcoming events, often as alerts, providing links for
5
+ more details.
6
+ type: object
7
+ properties:
8
+ with_event:
9
+ type: boolean
10
+ default: false
11
+ description: >-
12
+ Enables or disables the rendering of the Event component. Set to `true`
13
+ to display the event list; set to `false` (default) to hide it.
14
+ with_event_data:
15
+ type: array
16
+ default: []
17
+ description: >-
18
+ An array of objects (dictionaries) defining the configuration and content
19
+ for each event to be presented. Events are displayed in the order they
20
+ appear in this list.
21
+ items:
22
+ type: object
23
+ properties:
24
+ title:
25
+ type: string
26
+ description: The name or title of the event. This field is required.
27
+ summary:
28
+ type: string
29
+ default: ""
30
+ description: A brief summary or short description of the event.
31
+ date:
32
+ type: string # Changed from 'date' to 'string' for flexibility
33
+ default: ""
34
+ description: >-
35
+ The event start and end date range as a readable string (e.g.,
36
+ `September 19 - 20, 2025`).
37
+ location:
38
+ type: string
39
+ default: ""
40
+ description: The city and country where the event takes place (e.g., `Boston, USA`).
41
+ image_url:
42
+ type: string
43
+ format: uri
44
+ default: ""
45
+ description: The absolute or relative URL of an image related to the event (e.g., a banner or logo).
46
+ color:
47
+ type: string
48
+ default: secondary
49
+ description: >-
50
+ Defines the visual style/color of the event alert. Defaults to
51
+ `secondary`. Possible values are standard Bootstrap color utility classes.
52
+ enum:
53
+ - primary
54
+ - secondary
55
+ - info
56
+ - warning
57
+ - danger
58
+ - success
59
+ - dark
60
+ - light
61
+ icon:
62
+ type: string
63
+ default: "fa-solid fa-calendar"
64
+ description: >-
65
+ The Font Awesome icon class displayed on the event alert
66
+ (e.g., `fa-solid fa-calendar`). The Font Awesome addon must be
67
+ enabled for icons to render.
68
+ link:
69
+ type: string
70
+ format: uri-reference
71
+ default: ""
72
+ description: >-
73
+ The URL (relative or absolute) that the "Know more" button
74
+ will link to, providing additional details about the event.
75
+ presentations:
76
+ type: array
77
+ description: A list of objects detailing the individual talks or sessions associated with this event.
78
+ items:
79
+ type: object
80
+ properties:
81
+ name:
82
+ type: string
83
+ description: The title of the presentation or talk.
84
+ summary:
85
+ type: string
86
+ description: A concise summary or abstract describing what the presentation is about.
87
+ author:
88
+ type: string
89
+ description: The name of the person who created or is delivering the presentation.
90
+ author_email:
91
+ type: string
92
+ format: email
93
+ description: The author's email address.
94
+ author_webiste:
95
+ type: string
96
+ format: uri
97
+ description: The author's website or profile URL.
98
+ date:
99
+ type: string
100
+ format: date-time
101
+ description: The presentation date and time (e.g., ISO 8601 format).
102
+ slides_url:
103
+ type: string
104
+ format: uri
105
+ description: The URL to the presentation slides (e.g., PDF or Google Slides link).
106
+ video_url:
107
+ type: string
108
+ format: uri
109
+ description: The URL to the presentation video recording.
110
+ information_url:
111
+ type: string
112
+ format: uri
113
+ description: A general URL for more information about the presentation.
114
+ required:
115
+ - name
116
+ - author
117
+ additionalProperties: false
118
+ required:
119
+ - title
120
+ - link
121
+ additionalProperties: false
122
+ additionalProperties: false
@@ -0,0 +1,49 @@
1
+ title: Font Awesome Icon Library Configuration
2
+ description: >-
3
+ Schema for configuring the external Font Awesome icon library addon, used to
4
+ display scalable vector icons throughout the theme.
5
+ type: object
6
+ properties:
7
+ with_fontawesome:
8
+ type: boolean
9
+ default: true
10
+ description: >-
11
+ Enables or disables the loading of the Font Awesome library. Set to
12
+ `true` (default) to enable icons; set to `false` to disable the addon.
13
+ with_fontawesome_data:
14
+ type: object
15
+ description: >-
16
+ The configuration object defining the source, version, and security details
17
+ for loading the Font Awesome assets.
18
+ properties:
19
+ version:
20
+ type: string
21
+ default: "7.0.1"
22
+ description: The specific version of the Font Awesome distribution files to be loaded (e.g., `7.0.1`).
23
+ cdn:
24
+ type: string
25
+ default: "https://cdnjs.cloudflare.com/ajax/libs/font-awesome"
26
+ description: The base Content Delivery Network (CDN) address from which Font Awesome files will be downloaded.
27
+ css_bundle_name:
28
+ type: string
29
+ default: "all"
30
+ description: The name of the CSS bundle file to include (e.g., `all` loads all styles).
31
+ css_bundle_integrity:
32
+ type: string
33
+ default: "sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw=="
34
+ description: The Subresource Integrity (SRI) CSS checksum (`sha512-...`) for the specified bundle, ensuring the security and integrity of the stylesheet file.
35
+ js_bundle_name:
36
+ type: string
37
+ default: "all"
38
+ description: The name of the JavaScript bundle file to include (e.g., `all` loads all JS functionality).
39
+ js_bundle_integrity:
40
+ type: string
41
+ default: "sha512-6BTOlkauINO65nLhXhthZMtepgJSghyimIalb+crKRPhvhmsCdnIuGcVbR5/aQY2A+260iC1OPy1oCdB6pSSwQ=="
42
+ description: The Subresource Integrity (SRI) JavaScript checksum (`sha512-...`) for the specified bundle, ensuring the security and integrity of the script file.
43
+ required:
44
+ - version
45
+ - cdn
46
+ - css_bundle_integrity
47
+ - js_bundle_integrity # Integrity checks and source are required for secure and functional loading
48
+ additionalProperties: false
49
+ additionalProperties: false
@@ -0,0 +1,68 @@
1
+ title: Highlight.js Syntax Highlighting Configuration
2
+ description: >-
3
+ Schema for configuring the external Highlight.js library addon, used to
4
+ provide dynamic syntax highlighting for code blocks within the content.
5
+ Includes customizable copy button icons for syntax-highlighted code blocks.
6
+ type: object
7
+ properties:
8
+ with_highlight:
9
+ type: boolean # CORRECTED: Changed from string to boolean
10
+ default: true
11
+ description: >-
12
+ Enables or disables the Highlight.js addon. Set to `true` (default)
13
+ to enable syntax highlighting; set to `false` to disable the addon entirely.
14
+ with_highlight_data:
15
+ type: object
16
+ description: >-
17
+ The configuration object defining the visual style (theme), version,
18
+ and custom icons for the Highlight.js library.
19
+ properties:
20
+ theme:
21
+ type: string
22
+ default: default
23
+ description: >-
24
+ The name of the specific CSS theme file to use for syntax colors
25
+ and styles (e.g., `stackoverflow-light`). This theme dictates the
26
+ visual appearance of the highlighted code.
27
+ version:
28
+ type: string
29
+ default: "11.11.1"
30
+ description: >-
31
+ The specific version of the Highlight.js library being loaded
32
+ (e.g., `11.11.1`).
33
+ copy_button_icons:
34
+ type: object
35
+ description: >-
36
+ Customizable SVG icons for the copy button in different states.
37
+ Icons are defined as SVG strings for use with CSS mask property.
38
+ The copy icon is required and displays in the normal button state.
39
+ The success icon is optional and displays after successful copy.
40
+ properties:
41
+ copy:
42
+ type: object
43
+ description: "Icon displayed in normal (copy) state. Primary customization point."
44
+ properties:
45
+ svg:
46
+ type: string
47
+ default: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 640 640"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M480 400L288 400C279.2 400 272 392.8 272 384L272 128C272 119.2 279.2 112 288 112L421.5 112C425.7 112 429.8 113.7 432.8 116.7L491.3 175.2C494.3 178.2 496 182.3 496 186.5L496 384C496 392.8 488.8 400 480 400zM288 448L480 448C515.3 448 544 419.3 544 384L544 186.5C544 169.5 537.3 153.2 525.3 141.2L466.7 82.7C454.7 70.7 438.5 64 421.5 64L288 64C252.7 64 224 92.7 224 128L224 384C224 419.3 252.7 448 288 448zM160 192C124.7 192 96 220.7 96 256L96 512C96 547.3 124.7 576 160 576L352 576C387.3 576 416 547.3 416 512L416 496L368 496L368 512C368 520.8 360.8 528 352 528L160 528C151.2 528 144 520.8 144 512L144 256C144 247.2 151.2 240 160 240L176 240L176 192L160 192z"/></svg>'
48
+ description: "File icon as SVG (Font Awesome - for use with CSS mask property)"
49
+ required:
50
+ - svg
51
+ additionalProperties: false
52
+ success:
53
+ type: object
54
+ description: "Icon displayed after successful copy (in [data-copied='true'] state). Optional enhancement."
55
+ properties:
56
+ svg:
57
+ type: string
58
+ default: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 640 640"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M530.8 134.1C545.1 144.5 548.3 164.5 537.9 178.8L281.9 530.8C276.4 538.4 267.9 543.1 258.5 543.9C249.1 544.7 240 541.2 233.4 534.6L105.4 406.6C92.9 394.1 92.9 373.8 105.4 361.3C117.9 348.8 138.2 348.8 150.7 361.3L252.2 462.8L486.2 141.1C496.6 126.8 516.6 123.6 530.9 134z"/></svg>'
59
+ description: "Checkmark icon as SVG in (Font Awesome - for use with CSS mask property) - shown after successful copy"
60
+ required:
61
+ - svg
62
+ additionalProperties: false
63
+ additionalProperties: false
64
+ required:
65
+ - theme
66
+ - version
67
+ additionalProperties: false
68
+ additionalProperties: false
@@ -0,0 +1,186 @@
1
+ ---
2
+ #
3
+ # Language codes (https://loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt)
4
+ #
5
+ ab: "Abkhaz"
6
+ aa: "Afar"
7
+ af: "Afrikaans"
8
+ ak: "Akan"
9
+ sq: "Albanian"
10
+ am: "Amharic"
11
+ ar: "Arabic"
12
+ an: "Aragonese"
13
+ hy: "Armenian"
14
+ as: "Assamese"
15
+ av: "Avaric"
16
+ ae: "Avestan"
17
+ ay: "Aymara"
18
+ az: "Azerbaijani"
19
+ bm: "Bambara"
20
+ ba: "Bashkir"
21
+ eu: "Basque"
22
+ be: "Belarusian"
23
+ bn: "Bengali"
24
+ bh: "Bihari"
25
+ bi: "Bislama"
26
+ bs: "Bosnian"
27
+ br: "Breton"
28
+ bg: "Bulgarian"
29
+ my: "Burmese"
30
+ ca: "Catalan; Valencian"
31
+ ch: "Chamorro"
32
+ ce: "Chechen"
33
+ ny: "Chichewa; Chewa; Nyanja"
34
+ zh: "Chinese"
35
+ cv: "Chuvash"
36
+ kw: "Cornish"
37
+ co: "Corsican"
38
+ cr: "Cree"
39
+ hr: "Croatian"
40
+ cs: "Czech"
41
+ da: "Danish"
42
+ dv: "Divehi; Dhivehi; Maldivian;"
43
+ nl: "Dutch"
44
+ en: "English"
45
+ eo: "Esperanto"
46
+ et: "Estonian"
47
+ ee: "Ewe"
48
+ fo: "Faroese"
49
+ fj: "Fijian"
50
+ fi: "Finnish"
51
+ fr: "French"
52
+ ff: "Fula; Fulah; Pulaar; Pular"
53
+ gl: "Galician"
54
+ ka: "Georgian"
55
+ de: "German"
56
+ el: "Greek"
57
+ gn: "Guaraní"
58
+ gu: "Gujarati"
59
+ ht: "Haitian; Haitian Creole"
60
+ ha: "Hausa"
61
+ he: "Hebrew (modern)"
62
+ hz: "Herero"
63
+ hi: "Hindi"
64
+ ho: "Hiri Motu"
65
+ hu: "Hungarian"
66
+ ia: "Interlingua"
67
+ id: "Indonesian"
68
+ ie: "Interlingue"
69
+ ga: "Irish"
70
+ ig: "Igbo"
71
+ ik: "Inupiaq"
72
+ io: "Ido"
73
+ is: "Icelandic"
74
+ it: "Italian"
75
+ iu: "Inuktitut"
76
+ ja: "Japanese"
77
+ jv: "Javanese"
78
+ kl: "Kalaallisut"
79
+ kn: "Kannada"
80
+ kr: "Kanuri"
81
+ ks: "Kashmiri"
82
+ kk: "Kazakh"
83
+ km: "Khmer"
84
+ ki: "Kikuyu"
85
+ rw: "Kinyarwanda"
86
+ ky: "Kirghiz"
87
+ kv: "Komi"
88
+ kg: "Kongo"
89
+ ko: "Korean"
90
+ ku: "Kurdish"
91
+ kj: "Kwanyama"
92
+ la: "Latin"
93
+ lb: "Luxembourgish"
94
+ lg: "Luganda"
95
+ li: "Limburgish"
96
+ ln: "Lingala"
97
+ lo: "Lao"
98
+ lt: "Lithuanian"
99
+ lu: "Luba-Katanga"
100
+ lv: "Latvian"
101
+ gv: "Manx"
102
+ mk: "Macedonian"
103
+ mg: "Malagasy"
104
+ ms: "Malay"
105
+ ml: "Malayalam"
106
+ mt: "Maltese"
107
+ mi: "Māori"
108
+ mr: "Marathi (Marāṭhī)"
109
+ mh: "Marshallese"
110
+ mn: "Mongolian"
111
+ na: "Nauru"
112
+ nv: "Navajo"
113
+ nb: "Norwegian Bokmål"
114
+ nd: "North Ndebele"
115
+ ne: "Nepali"
116
+ ng: "Ndonga"
117
+ nn: "Norwegian Nynorsk"
118
+ no: "Norwegian"
119
+ ii: "Nuosu"
120
+ nr: "South Ndebele"
121
+ oc: "Occitan"
122
+ oj: "Ojibwe"
123
+ cu: "Old Church Slavonic"
124
+ om: "Oromo"
125
+ or: "Oriya"
126
+ os: "Ossetian"
127
+ pa: "Panjabi"
128
+ pi: "Pāli"
129
+ fa: "Persian"
130
+ pl: "Polish"
131
+ ps: "Pashto"
132
+ pt: "Portuguese"
133
+ qu: "Quechua"
134
+ rm: "Romansh"
135
+ rn: "Kirundi"
136
+ ro: "Romanian"
137
+ ru: "Russian"
138
+ sa: "Sanskrit"
139
+ sc: "Sardinian"
140
+ sd: "Sindhi"
141
+ se: "Northern Sami"
142
+ sm: "Samoan"
143
+ sg: "Sango"
144
+ sr: "Serbian"
145
+ gd: "Gaelic"
146
+ sn: "Shona"
147
+ si: "Sinhala"
148
+ sk: "Slovak"
149
+ sl: "Slovene"
150
+ so: "Somali"
151
+ st: "Southern Sotho"
152
+ es: "Spanish"
153
+ su: "Sundanese"
154
+ sw: "Swahili"
155
+ ss: "Swati"
156
+ sv: "Swedish"
157
+ ta: "Tamil"
158
+ te: "Telugu"
159
+ tg: "Tajik"
160
+ th: "Thai"
161
+ ti: "Tigrinya"
162
+ bo: "Tibetan"
163
+ tk: "Turkmen"
164
+ tl: "Tagalog"
165
+ tn: "Tswana"
166
+ to: "Tonga"
167
+ tr: "Turkish"
168
+ ts: "Tsonga"
169
+ tt: "Tatar"
170
+ tw: "Twi"
171
+ ty: "Tahitian"
172
+ ug: "Uighur"
173
+ uk: "Ukrainian"
174
+ ur: "Urdu"
175
+ uz: "Uzbek"
176
+ ve: "Venda"
177
+ vi: "Vietnamese"
178
+ vo: "Volapük"
179
+ wa: "Walloon"
180
+ cy: "Welsh"
181
+ wo: "Wolof"
182
+ fy: "Western Frisian"
183
+ xh: "Xhosa"
184
+ yi: "Yiddish"
185
+ yo: "Yoruba"
186
+ za: "Zhuang"