jekyll-theme-centos 2.52.0.beta.4 → 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,120 @@
1
+ title: Project Presentation Component Configuration
2
+ description: >-
3
+ Schema for configuring a prominent display component for a project, featuring
4
+ branding (logo/icon), a summary, calls-to-action, and key resources.
5
+ type: object
6
+ properties:
7
+ with_project:
8
+ type: boolean
9
+ default: false
10
+ description: >-
11
+ Enables or disables the rendering of the Project Presentation template.
12
+ Set to `true` to display the project component; set to `false` (default) to hide it.
13
+ with_project_data:
14
+ type: object
15
+ default: {}
16
+ description: >-
17
+ Custom configuration object for the Project Presentation template. If defined
18
+ at the page level, these settings override component-specific configuration files.
19
+ properties:
20
+ class:
21
+ type: string
22
+ default: flex-column bg-image text-bg-dark rounded
23
+ description: >-
24
+ Custom Bootstrap classes for the main project container, controlling
25
+ alignment, background, and text colors (e.g., `padding`, `bg-image`).
26
+ screenshot:
27
+ type: string
28
+ default: ""
29
+ description: >-
30
+ The relative file path to a large project screenshot or featured image (relative to `assets/img/`). Used for a prominent visual display.
31
+ screenshot_alt:
32
+ type: string
33
+ default: ""
34
+ description: The alternative text for the project screenshot, used for accessibility.
35
+ screenshot_class:
36
+ type: string
37
+ default: ""
38
+ description: Custom CSS classes applied directly to the screenshot image element.
39
+ image:
40
+ type: string
41
+ default: ""
42
+ description: >-
43
+ The relative file path to the smaller project logo or branding image (relative to `/assets/img/`).
44
+ image_alt:
45
+ type: string
46
+ default: ""
47
+ description: The alternative text for the project logo image.
48
+ image_class:
49
+ type: string
50
+ default: img-fluid mb-3
51
+ description: Custom CSS classes applied to the project logo element (e.g., `img-fluid`, sizing utilities).
52
+ image_style:
53
+ type: string
54
+ default: ""
55
+ description: >-
56
+ Inline CSS styles applied directly to the logo image element (e.g., `height: 142px;`).
57
+ Useful for precise sizing when utility classes are insufficient.
58
+ icon:
59
+ type: string
60
+ default: ""
61
+ description: >-
62
+ A Font Awesome icon class (e.g., `fa-solid fa-house`) to display
63
+ as branding instead of an image.
64
+ icon_class:
65
+ type: string
66
+ default: display-3 fw-bold mb-1
67
+ description: Custom CSS classes applied to the project icon element.
68
+ name:
69
+ type: string
70
+ default: ""
71
+ description: The visible title or name of the project. This field is typically required.
72
+ name_class:
73
+ type: string
74
+ default: display-3 fw-bold mb-1
75
+ description: Custom CSS classes applied to the project name text element.
76
+ description:
77
+ type: string
78
+ default: ""
79
+ description: A detailed summary or description of the project.
80
+ description_class:
81
+ type: string
82
+ default: lead mb-3
83
+ description: Custom CSS classes applied to the project description text element.
84
+ actions:
85
+ type: array
86
+ default: []
87
+ description: >-
88
+ A list of objects defining prominent call-to-action buttons (e.g., Download, View Demo).
89
+ Each item uses the Link component schema.
90
+ items:
91
+ type: object
92
+ description: Configuration for a single button using the external Link component properties.
93
+ additionalProperties: true
94
+ actions_class:
95
+ type: string
96
+ default: ""
97
+ description: Custom CSS classes applied to the container wrapping the action buttons list.
98
+ actions_btn_class:
99
+ type: string
100
+ default: btn text-nowrap m-1 btn-
101
+ description: Custom CSS classes applied to each individual action button element.
102
+ resources:
103
+ type: array
104
+ default: []
105
+ description: >-
106
+ A list of objects defining secondary resource links (e.g., Source Code, Documentation).
107
+ Each item uses the Link component schema.
108
+ items:
109
+ type: object
110
+ description: Configuration for a single resource link using the external Link component properties.
111
+ additionalProperties: true
112
+ resources_class:
113
+ type: string
114
+ default: flex-row flex-wrap bg-dark bg-opacity-75 rounded-bottom-4 py-1 px-5
115
+ description: Custom CSS classes applied to the container wrapping the resource links.
116
+ required:
117
+ - name
118
+ - description
119
+ additionalProperties: false
120
+ additionalProperties: false
@@ -0,0 +1,74 @@
1
+ title: Footer Shortcut Links Component Configuration
2
+ description: >-
3
+ Schema for configuring the 'Shortcut' component, typically displayed in the
4
+ footer to present key navigation links grouped under headings.
5
+ type: object
6
+ properties:
7
+ with_shortcut:
8
+ type: boolean
9
+ default: true
10
+ description: >-
11
+ Controls the visibility of the Shortcut component in the page footer.
12
+ Set to `true` (default) to display the component; set to `false` to hide it.
13
+ When enabled, the component will load items where `footer` is included in
14
+ their `visible_on` property, either from global `navitems` or `with_shortcut_data`.
15
+ with_shortcut_data:
16
+ type: object
17
+ default: {}
18
+ description: >-
19
+ Provides a custom set of shortcut navigation items that is completely
20
+ independent of the main Navigation Bar's configuration. When this variable
21
+ is defined, its `navitems` list is used exclusively for the footer shortcuts.
22
+ properties:
23
+ navitems:
24
+ type: array
25
+ default: []
26
+ description: >-
27
+ A list of objects defining the top-level shortcut sections or columns.
28
+ Each object acts as a section heading followed by a list of links (defined in `menu`).
29
+ items:
30
+ type: object
31
+ description: Defines a single shortcut section consisting of a heading and its associated links.
32
+ properties:
33
+ name:
34
+ type: string
35
+ description: The heading text (title) for this section of links in the footer.
36
+ link:
37
+ type: string
38
+ default: ""
39
+ description: >-
40
+ The URL link for top-level items is ignored by this component,
41
+ as these items are treated only as section headers. It should be omitted or left as `""`.
42
+ icon:
43
+ type: string
44
+ default: ""
45
+ description: >-
46
+ An icon class (e.g., from Font Awesome) to display alongside the heading.
47
+ visible_on:
48
+ type: array
49
+ default: ["footer"]
50
+ description: >-
51
+ Controls where this item is displayed. For the Shortcut component,
52
+ this array must contain `"footer"` to be rendered. Other values
53
+ (like `"navbar"`) are ignored in this context.
54
+ items:
55
+ type: string
56
+ enum:
57
+ - navbar
58
+ - footer
59
+ menu:
60
+ type: array
61
+ default: []
62
+ description: >-
63
+ A list of objects defining the individual link items displayed
64
+ under the section heading. The inner objects follow the
65
+ Link component schema.
66
+ items:
67
+ type: object
68
+ description: Configuration for a single link using the external Link component properties.
69
+ additionalProperties: true
70
+ required:
71
+ - name
72
+ - menu # Must have a menu (list of links) to be a functional shortcut section
73
+ additionalProperties: false
74
+ additionalProperties: false
@@ -0,0 +1,25 @@
1
+ ---
2
+ #
3
+ # site.data.base.social - Provides social networks information.
4
+ #
5
+ - name: YouTube
6
+ icon: "fab fa-youtube"
7
+ link: "https://youtube.com/TheCentOSProject"
8
+ - name: Mastodon
9
+ icon: "fab fa-mastodon"
10
+ link: "https://fosstodon.org/@centos"
11
+ - name: Facebook
12
+ icon: "fab fa-facebook-f"
13
+ link: "https://www.facebook.com/CentOSProject"
14
+ - name: LinkedIn
15
+ icon: "fab fa-linkedin"
16
+ link: "https://www.linkedin.com/company/centos-project/"
17
+ - name: x
18
+ icon: "fab fa-x-twitter"
19
+ link: "https://x.com/centos"
20
+ - name: Discourse
21
+ icon: "fab fa-discourse"
22
+ link: "https://discussion.fedoraproject.org/c/neighbors/centos/"
23
+ - name: Reddit
24
+ icon: "fab fa-reddit"
25
+ link: "https://www.reddit.com/r/CentOS/"
@@ -0,0 +1,53 @@
1
+ title: Social media icons component configuration
2
+ description: >-
3
+ Schema for configuring and defining the list of social media links
4
+ (icons) to be rendered, typically in the footer or navigation area.
5
+ type: object
6
+ properties:
7
+ with_social:
8
+ type: boolean
9
+ default: false
10
+ description: >-
11
+ Enables or disables the rendering of the social media icons component.
12
+ Set to `true` to display the icons; set to `false` (default) to hide them.
13
+ with_social_data:
14
+ type: object
15
+ default: {}
16
+ description: Configuration object for the social media component.
17
+ properties:
18
+ links:
19
+ type: array
20
+ default: []
21
+ description: A list of objects, where each object defines a single social media link/icon.
22
+ items:
23
+ type: object
24
+ properties:
25
+ name:
26
+ type: string
27
+ description: The name of the social network (e.g., `YouTube`, `LinkedIn`). Used for alt text and labels.
28
+ icon:
29
+ type: string
30
+ description: >-
31
+ The Font Awesome icon class representing the social network
32
+ brand (e.g., `fa-brands fa-x-twitter`).
33
+ required:
34
+ - icon
35
+ link:
36
+ type: string
37
+ format: uri
38
+ description: The absolute URL to the project's profile on this social network (e.g., `https://www.youtube.com/`).
39
+ required:
40
+ - link
41
+ required:
42
+ - name
43
+ - icon
44
+ - link
45
+ additionalProperties: false
46
+ class:
47
+ type: string
48
+ default: ""
49
+ description: Custom CSS classes applied to the container element wrapping the social media icons list.
50
+ required:
51
+ - links
52
+ additionalProperties: false
53
+ additionalProperties: false
@@ -0,0 +1,49 @@
1
+ ---
2
+ title: Semantic page h1 heading component configuration
3
+ description: >-
4
+ Schema for configuring the single, primary H1 heading of a page. This component
5
+ is reserved for the highest-level title, with subsequent headings (H2-H6)
6
+ typically generated automatically by the content renderer (e.g., Jekyll Markdown).
7
+ type: object
8
+ properties:
9
+ with_title:
10
+ type: boolean
11
+ default: true
12
+ description: >-
13
+ Enables or disables the rendering of the primary H1 heading block. Set
14
+ to `true` (default) to display the configured H1; set to `false` to hide it.
15
+ with_title_data:
16
+ type: object
17
+ default: {}
18
+ description: Configuration object defining the text and presentation of the page's primary H1 heading.
19
+ properties:
20
+ class:
21
+ type: string
22
+ default: "row my-4"
23
+ description: >-
24
+ One or more CSS classes applied to title container element for custom styling,
25
+ alignment, or spacing.
26
+ title:
27
+ type: string
28
+ default: "`page.title`"
29
+ description: The main, primary title text to be displayed. This content is always wrapped in the <h1> HTML tag.
30
+ title_class:
31
+ type: string
32
+ default: "h1"
33
+ description: >-
34
+ One or more CSS classes applied to the title element for custom
35
+ styling, alignment, or spacing (e.g., `text-center`, `display-1`).
36
+ title_lead:
37
+ type: string
38
+ default: "`page.title_lead`"
39
+ description: An optional lead text or introductory paragraph displayed immediately beneath the H1, providing context or summary.
40
+ title_lead_class:
41
+ type: string
42
+ default: "lead"
43
+ description: >-
44
+ One or more CSS classes applied to the title_lead element for custom
45
+ styling, alignment, or spacing.
46
+ required:
47
+ - title
48
+ additionalProperties: false
49
+ additionalProperties: false
@@ -0,0 +1,100 @@
1
+ title: Table of Contents Component Configuration
2
+ description: >-
3
+ Schema for configuring the table of contents (TOC) component that automatically
4
+ generates a navigable list of headings from page content. Uses Highlight.js
5
+ jekyll-toc library to dynamically create links to headings within the page.
6
+ type: object
7
+ properties:
8
+ with_toc:
9
+ type: boolean
10
+ default: true
11
+ description: >-
12
+ Enables or disables the rendering of the table of contents component.
13
+ Set to `true` (default) to display the TOC; set to `false` to hide it.
14
+ with_toc_data:
15
+ type: object
16
+ default: {}
17
+ description: >-
18
+ Configuration object defining the presentation and behavior of the table
19
+ of contents, including styling and header level filters.
20
+ properties:
21
+ class:
22
+ type: string
23
+ default: ""
24
+ description: >-
25
+ CSS class(es) assigned to the TOC root list element for custom styling.
26
+ Multiple classes can be specified separated by spaces (e.g., `my-custom-class another-class`).
27
+ id:
28
+ type: string
29
+ default: ""
30
+ description: >-
31
+ The HTML ID attribute assigned to the TOC root list element, used for targeting
32
+ with CSS or JavaScript (e.g., `page-toc`).
33
+ item_class:
34
+ type: string
35
+ default: ""
36
+ description: >-
37
+ CSS class(es) applied to each list item in the TOC. Supports the `%level%`
38
+ placeholder which is replaced with the current heading level (e.g., `my-2.%level%`).
39
+ anchor_class:
40
+ type: string
41
+ default: ""
42
+ description: >-
43
+ CSS class(es) applied to each anchor element (link) in the TOC. Used to style
44
+ the actual clickable links (e.g., `text-decoration-none text-dark`).
45
+ h_min:
46
+ type: integer
47
+ default: 1
48
+ minimum: 1
49
+ maximum: 6
50
+ description: >-
51
+ The minimum heading level to include in the TOC. Headers smaller than this
52
+ level (e.g., h1, h2) will be excluded. Valid range: 1-6.
53
+ h_max:
54
+ type: integer
55
+ default: 6
56
+ minimum: 1
57
+ maximum: 6
58
+ description: >-
59
+ The maximum heading level to include in the TOC. Headers larger than this
60
+ level will be excluded. Valid range: 1-6.
61
+ ordered:
62
+ type: boolean
63
+ default: false
64
+ description: >-
65
+ When set to `true`, the TOC will be rendered as an ordered list (`<ol>`)
66
+ instead of an unordered list (`<ul>`). Default is `false` (unordered list).
67
+ submenu_class:
68
+ type: string
69
+ default: ""
70
+ description: >-
71
+ CSS class(es) applied to each nested list group representing subheadings.
72
+ Supports the `%level%` placeholder which is replaced with the submenu level
73
+ (e.g., `submenu.%level%`).
74
+ base_url:
75
+ type: string
76
+ format: uri
77
+ default: ""
78
+ description: >-
79
+ Base URL prepended to TOC links. Use when the TOC is displayed on a different
80
+ page than the actual content (e.g., `/docs/`).
81
+ sanitize:
82
+ type: boolean
83
+ default: false
84
+ description: >-
85
+ When set to `true`, HTML tags within headings will be stripped from the TOC
86
+ display text. Default is `false` (HTML is preserved).
87
+ skip_no_ids:
88
+ type: boolean
89
+ default: false
90
+ description: >-
91
+ When set to `true`, headings without an `id` attribute will be excluded from
92
+ the TOC. Default is `false` (all headings are included, with or without IDs).
93
+ flat_toc:
94
+ type: boolean
95
+ default: false
96
+ description: >-
97
+ When set to `true`, the TOC will be rendered as a single-level flat list
98
+ instead of a hierarchical nested structure. Default is `false` (hierarchical).
99
+ additionalProperties: false
100
+ additionalProperties: false