jekyll-theme-centos 0.0.0

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 (304) hide show
  1. checksums.yaml +7 -0
  2. data/_config.yml +196 -0
  3. data/_data/base/announcement_schema.yml +49 -0
  4. data/_data/base/artwork_schema.yml +46 -0
  5. data/_data/base/backtotop_schema.yml +59 -0
  6. data/_data/base/bits.yml +96 -0
  7. data/_data/base/bits_schema.yml +185 -0
  8. data/_data/base/breadcrumb_schema.yml +27 -0
  9. data/_data/base/breakingnews_schema.yml +67 -0
  10. data/_data/base/card_schema.yml +146 -0
  11. data/_data/base/color.yml +1042 -0
  12. data/_data/base/color_schema.yml +1036 -0
  13. data/_data/base/configuration_variables_schema.yml +42 -0
  14. data/_data/base/content.yml +2 -0
  15. data/_data/base/content_schema.yml +26 -0
  16. data/_data/base/copyright.yml +12 -0
  17. data/_data/base/copyright_schema.yml +74 -0
  18. data/_data/base/copyvalue_schema.yml +49 -0
  19. data/_data/base/datatable_schema.yml +57 -0
  20. data/_data/base/event_schema.yml +130 -0
  21. data/_data/base/fontawesome_schema.yml +62 -0
  22. data/_data/base/footer.yml +9 -0
  23. data/_data/base/footer_schema.yml +55 -0
  24. data/_data/base/head_schema.yml +19 -0
  25. data/_data/base/heading_anchor.yml +2 -0
  26. data/_data/base/heading_anchor_schema.yml +37 -0
  27. data/_data/base/highlight_schema.yml +98 -0
  28. data/_data/base/image_schema.yml +34 -0
  29. data/_data/base/languages.yml +186 -0
  30. data/_data/base/link_schema.yml +187 -0
  31. data/_data/base/locales_schema.yml +158 -0
  32. data/_data/base/navbar.yml +20 -0
  33. data/_data/base/navbar_schema.yml +129 -0
  34. data/_data/base/navindex_schema.yml +67 -0
  35. data/_data/base/ogp.yml +24 -0
  36. data/_data/base/ogp_schema.yml +192 -0
  37. data/_data/base/project.yml +37 -0
  38. data/_data/base/project_schema.yml +124 -0
  39. data/_data/base/script_schema.yml +41 -0
  40. data/_data/base/shortcut_schema.yml +74 -0
  41. data/_data/base/social.yml +26 -0
  42. data/_data/base/social_schema.yml +57 -0
  43. data/_data/base/sponsors.yml +41 -0
  44. data/_data/base/sponsors_schema.yml +73 -0
  45. data/_data/base/title_schema.yml +49 -0
  46. data/_data/base/toc_schema.yml +114 -0
  47. data/_data/download/cards.yml +309 -0
  48. data/_data/download/navbar.yml +11 -0
  49. data/_includes/base/announcement.html.liquid +65 -0
  50. data/_includes/base/artwork.html.liquid +63 -0
  51. data/_includes/base/backtotop.html.liquid +73 -0
  52. data/_includes/base/bits.html.liquid +152 -0
  53. data/_includes/base/breadcrumb.html.liquid +77 -0
  54. data/_includes/base/breakingnews.html.liquid +90 -0
  55. data/_includes/base/card.html.liquid +110 -0
  56. data/_includes/base/color-table.html.liquid +33 -0
  57. data/_includes/base/configuration_variables-nested.html.liquid +98 -0
  58. data/_includes/base/configuration_variables.html.liquid +98 -0
  59. data/_includes/base/content.html.liquid +7 -0
  60. data/_includes/base/copyright.html.liquid +70 -0
  61. data/_includes/base/copyvalue.html.liquid +82 -0
  62. data/_includes/base/datatable.html.liquid +83 -0
  63. data/_includes/base/event.html.liquid +105 -0
  64. data/_includes/base/fontawesome.html.liquid +91 -0
  65. data/_includes/base/footer.html.liquid +69 -0
  66. data/_includes/base/head.html.liquid +135 -0
  67. data/_includes/base/heading_anchor.html.liquid +67 -0
  68. data/_includes/base/highlight.html.liquid +84 -0
  69. data/_includes/base/image.html.liquid +42 -0
  70. data/_includes/base/link.html.liquid +129 -0
  71. data/_includes/base/locales.html.liquid +78 -0
  72. data/_includes/base/navbar.html.liquid +121 -0
  73. data/_includes/base/navindex.html.liquid +200 -0
  74. data/_includes/base/ogp.html.liquid +144 -0
  75. data/_includes/base/project.html.liquid +104 -0
  76. data/_includes/base/shortcut.html.liquid +77 -0
  77. data/_includes/base/social.html.liquid +76 -0
  78. data/_includes/base/sponsors-cards.html.liquid +69 -0
  79. data/_includes/base/sponsors-carousel.html.liquid +91 -0
  80. data/_includes/base/title.html.liquid +65 -0
  81. data/_includes/base/toc-generator.html.liquid +189 -0
  82. data/_includes/base/toc.html.liquid +95 -0
  83. data/_includes/download/cards-body-commands.html +7 -0
  84. data/_includes/download/cards-body-convert.html +10 -0
  85. data/_includes/download/cards-body-doc.html +9 -0
  86. data/_includes/download/cards-body-documentation.html +11 -0
  87. data/_includes/download/cards-body-eol.html +16 -0
  88. data/_includes/download/cards-body-mirrors.html +8 -0
  89. data/_includes/download/cards-body-screenshot.html +26 -0
  90. data/_includes/download/cards-body-screenshots.html +32 -0
  91. data/_includes/download/cards-body.html +8 -0
  92. data/_includes/download/cards-footer.html +3 -0
  93. data/_includes/download/cards-header-commands.html +8 -0
  94. data/_includes/download/cards-header-convert.html +8 -0
  95. data/_includes/download/cards-header-doc.html +8 -0
  96. data/_includes/download/cards-header-documentation.html +8 -0
  97. data/_includes/download/cards-header-eol.html +8 -0
  98. data/_includes/download/cards-header-mirrors.html +13 -0
  99. data/_includes/download/cards-header-screenshot.html +8 -0
  100. data/_includes/download/cards-header-screenshots.html +8 -0
  101. data/_includes/download/cards-header.html +13 -0
  102. data/_includes/download/cards.html +120 -0
  103. data/_layouts/base/default.html +68 -0
  104. data/_layouts/download/cards.html +7 -0
  105. data/_layouts/download/default.html +7 -0
  106. data/_layouts/people/default.html +68 -0
  107. data/_sass/base/_customization.scss +331 -0
  108. data/_sass/base/_light-dark.scss +10 -0
  109. data/_sass/base/_maps.scss +104 -0
  110. data/_sass/base/_variables.scss +232 -0
  111. data/_sass/bootstrap/_accordion.scss +153 -0
  112. data/_sass/bootstrap/_alert.scss +68 -0
  113. data/_sass/bootstrap/_badge.scss +38 -0
  114. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  115. data/_sass/bootstrap/_button-group.scss +147 -0
  116. data/_sass/bootstrap/_buttons.scss +216 -0
  117. data/_sass/bootstrap/_card.scss +238 -0
  118. data/_sass/bootstrap/_carousel.scss +226 -0
  119. data/_sass/bootstrap/_close.scss +66 -0
  120. data/_sass/bootstrap/_containers.scss +41 -0
  121. data/_sass/bootstrap/_dropdown.scss +250 -0
  122. data/_sass/bootstrap/_forms.scss +9 -0
  123. data/_sass/bootstrap/_functions.scss +302 -0
  124. data/_sass/bootstrap/_grid.scss +39 -0
  125. data/_sass/bootstrap/_helpers.scss +12 -0
  126. data/_sass/bootstrap/_images.scss +42 -0
  127. data/_sass/bootstrap/_list-group.scss +199 -0
  128. data/_sass/bootstrap/_maps.scss +174 -0
  129. data/_sass/bootstrap/_mixins.scss +42 -0
  130. data/_sass/bootstrap/_modal.scss +240 -0
  131. data/_sass/bootstrap/_nav.scss +197 -0
  132. data/_sass/bootstrap/_navbar.scss +289 -0
  133. data/_sass/bootstrap/_offcanvas.scss +147 -0
  134. data/_sass/bootstrap/_pagination.scss +109 -0
  135. data/_sass/bootstrap/_placeholders.scss +51 -0
  136. data/_sass/bootstrap/_popover.scss +196 -0
  137. data/_sass/bootstrap/_progress.scss +68 -0
  138. data/_sass/bootstrap/_reboot.scss +617 -0
  139. data/_sass/bootstrap/_root.scss +187 -0
  140. data/_sass/bootstrap/_spinners.scss +86 -0
  141. data/_sass/bootstrap/_tables.scss +171 -0
  142. data/_sass/bootstrap/_toasts.scss +73 -0
  143. data/_sass/bootstrap/_tooltip.scss +119 -0
  144. data/_sass/bootstrap/_transitions.scss +27 -0
  145. data/_sass/bootstrap/_type.scss +106 -0
  146. data/_sass/bootstrap/_utilities.scss +806 -0
  147. data/_sass/bootstrap/_variables-dark.scss +102 -0
  148. data/_sass/bootstrap/_variables.scss +1753 -0
  149. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  150. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  151. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  152. data/_sass/bootstrap/bootstrap.scss +52 -0
  153. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  154. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  155. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  156. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  157. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  158. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  159. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  160. data/_sass/bootstrap/forms/_labels.scss +36 -0
  161. data/_sass/bootstrap/forms/_validation.scss +12 -0
  162. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  163. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  164. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  165. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  166. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  167. data/_sass/bootstrap/helpers/_position.scss +36 -0
  168. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  169. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  170. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  171. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  172. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  173. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  174. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  175. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  176. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  177. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  178. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  179. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  180. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  181. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  182. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  183. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  184. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  185. data/_sass/bootstrap/mixins/_container.scss +11 -0
  186. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  187. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  188. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  189. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  190. data/_sass/bootstrap/mixins/_image.scss +16 -0
  191. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  192. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  193. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  194. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  195. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  196. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  197. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  198. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  199. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  200. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  201. data/_sass/bootstrap/utilities/_api.scss +47 -0
  202. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  203. data/assets/css/base/stylesheet.min.scss +35 -0
  204. data/assets/icons/android-chrome-192.png +0 -0
  205. data/assets/icons/android-chrome-512.png +0 -0
  206. data/assets/icons/apple-touch-icon.png +0 -0
  207. data/assets/icons/favicon-16.png +0 -0
  208. data/assets/icons/favicon-32.png +0 -0
  209. data/assets/icons/favicon.ico +0 -0
  210. data/assets/icons/favicon.svg +1 -0
  211. data/assets/img/anaconda-symbolic.svg +1 -0
  212. data/assets/img/anaconda.svg +1 -0
  213. data/assets/img/base/centos-colors.gpl +55 -0
  214. data/assets/img/base/example-ogp-image.svg +297 -0
  215. data/assets/img/base/example-sponsors-design.svg +226 -0
  216. data/assets/img/base/example-sponsors-logo-1.svg +120 -0
  217. data/assets/img/base/example-sponsors-logo-2.svg +116 -0
  218. data/assets/img/base/example-sponsors-logo-3.svg +123 -0
  219. data/assets/img/base/example-sponsors-logo-4.svg +116 -0
  220. data/assets/img/base/example-sponsors-logo-5.svg +116 -0
  221. data/assets/img/base/example-sponsors-logo-6.svg +116 -0
  222. data/assets/img/base/example-sponsors-logo-7.svg +116 -0
  223. data/assets/img/base/example-sponsors-logo-8.svg +110 -0
  224. data/assets/img/base/page-layout-default.svg +1217 -0
  225. data/assets/img/base/page-with-alert.svg +383 -0
  226. data/assets/img/base/page-with-announcement.svg +956 -0
  227. data/assets/img/base/page-with-artwork.svg +1009 -0
  228. data/assets/img/base/page-with-backtotop.svg +1009 -0
  229. data/assets/img/base/page-with-bits.svg +891 -0
  230. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  231. data/assets/img/base/page-with-breakingnews.svg +957 -0
  232. data/assets/img/base/page-with-color.svg +57 -0
  233. data/assets/img/base/page-with-copyright.svg +1018 -0
  234. data/assets/img/base/page-with-copyvalue.svg +57 -0
  235. data/assets/img/base/page-with-datatable.svg +857 -0
  236. data/assets/img/base/page-with-event.svg +518 -0
  237. data/assets/img/base/page-with-fontawesome.svg +147 -0
  238. data/assets/img/base/page-with-footer.svg +1018 -0
  239. data/assets/img/base/page-with-heading.svg +57 -0
  240. data/assets/img/base/page-with-highlight.svg +86 -0
  241. data/assets/img/base/page-with-image.svg +57 -0
  242. data/assets/img/base/page-with-link.svg +57 -0
  243. data/assets/img/base/page-with-locales.svg +1009 -0
  244. data/assets/img/base/page-with-navbar.svg +958 -0
  245. data/assets/img/base/page-with-navindex.svg +279 -0
  246. data/assets/img/base/page-with-ogp.svg +401 -0
  247. data/assets/img/base/page-with-project.svg +423 -0
  248. data/assets/img/base/page-with-shortcut.svg +937 -0
  249. data/assets/img/base/page-with-social.svg +937 -0
  250. data/assets/img/base/page-with-sponsors.svg +937 -0
  251. data/assets/img/base/page-with-title.svg +584 -0
  252. data/assets/img/base/page-with-toc.svg +399 -0
  253. data/assets/img/base/screenshot-1200x600.svg +114 -0
  254. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  257. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  258. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  259. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  260. data/assets/img/centos-logo-2bits.svg +1 -0
  261. data/assets/img/centos-logo.svg +1 -0
  262. data/assets/img/centos-message-logo.svg +1 -0
  263. data/assets/img/centos-motif.png +0 -0
  264. data/assets/img/centos-poweredby-logo.svg +1 -0
  265. data/assets/img/centos-social-share.png +0 -0
  266. data/assets/img/centos-symbol-2bits.svg +1 -0
  267. data/assets/img/centos-symbol.svg +1 -0
  268. data/assets/img/centos-type.svg +1 -0
  269. data/assets/img/centos-vertical-logo.svg +1 -0
  270. data/assets/img/centos-vertical-message-logo.svg +1 -0
  271. data/assets/img/centos-whitelogo.svg +1 -0
  272. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  274. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  279. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  280. data/assets/img/download/download.svg +421 -0
  281. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  282. data/assets/img/people/page.svg +900 -0
  283. data/assets/img/people/page.webp +0 -0
  284. data/assets/img/people/username.webp +0 -0
  285. data/assets/js/base/backtotop.js +20 -0
  286. data/assets/js/base/copyvalue.js +145 -0
  287. data/assets/js/base/datatable.js +41 -0
  288. data/assets/js/base/heading-anchor.js +108 -0
  289. data/assets/js/base/highlight.js +12 -0
  290. data/assets/js/base/init-tooltips.js +12 -0
  291. data/assets/js/bootstrap.bundle.js +6312 -0
  292. data/assets/js/bootstrap.bundle.js.map +1 -0
  293. data/assets/js/bootstrap.bundle.min.js +7 -0
  294. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  295. data/assets/js/bootstrap.esm.js +4447 -0
  296. data/assets/js/bootstrap.esm.js.map +1 -0
  297. data/assets/js/bootstrap.esm.min.js +7 -0
  298. data/assets/js/bootstrap.esm.min.js.map +1 -0
  299. data/assets/js/bootstrap.js +4494 -0
  300. data/assets/js/bootstrap.js.map +1 -0
  301. data/assets/js/bootstrap.min.js +7 -0
  302. data/assets/js/bootstrap.min.js.map +1 -0
  303. data/site.webmanifest +11 -0
  304. metadata +611 -0
@@ -0,0 +1,98 @@
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
+ css_integrity:
34
+ type: string
35
+ default: "sha384-4Y0nObtF3CbKnh+lpzmAVdAMtQXl+ganWiiv73RcGVdRdfVIya8Cao1C8ZsVRRDz"
36
+ description: >-
37
+ SRI hash for the Highlight.js theme CSS loaded from cdnjs. Must be
38
+ updated when `version` or `theme` changes.
39
+ script_integrity:
40
+ type: string
41
+ default: "sha384-RH2xi4eIQ/gjtbs9fUXM68sLSi99C7ZWBRX1vDrVv6GQXRibxXLbwO2NGZB74MbU"
42
+ description: >-
43
+ Subresource Integrity (SRI) hash for the Highlight.js script loaded
44
+ from cdnjs. Must be updated when `version` changes.
45
+ copy_version:
46
+ type: string
47
+ default: "1.0.6"
48
+ description: >-
49
+ Version of the highlightjs-copy plugin loaded from unpkg
50
+ (e.g., `1.0.6`).
51
+ copy_script_integrity:
52
+ type: string
53
+ default: "sha384-0/jh9+ifwJ5mqtDZ+DWdwgFjZ8I4HIfXqaWJi2mdeAwy8aUPlw5dTYNsqAqNE4yD"
54
+ description: >-
55
+ SRI hash for the highlightjs-copy plugin script. Must be updated
56
+ when `copy_version` changes.
57
+ copy_css_integrity:
58
+ type: string
59
+ default: "sha384-jx4j2QNE8PcYHQikjfTfY6TM0sYVodTr0OGqUfAR6bKYJBgW91lTieqkghTu9+Kk"
60
+ description: >-
61
+ SRI hash for the highlightjs-copy plugin stylesheet. Must be updated
62
+ when `copy_version` changes.
63
+ copy_button_icons:
64
+ type: object
65
+ description: >-
66
+ Customizable SVG icons for the copy button in different states.
67
+ Icons are defined as SVG strings for use with CSS mask property.
68
+ The copy icon is required and displays in the normal button state.
69
+ The success icon is optional and displays after successful copy.
70
+ properties:
71
+ copy:
72
+ type: object
73
+ description: "Icon displayed in normal (copy) state. Primary customization point."
74
+ properties:
75
+ svg:
76
+ type: string
77
+ 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>'
78
+ description: "File icon as SVG (Font Awesome - for use with CSS mask property)"
79
+ required:
80
+ - svg
81
+ additionalProperties: false
82
+ success:
83
+ type: object
84
+ description: "Icon displayed after successful copy (in [data-copied='true'] state). Optional enhancement."
85
+ properties:
86
+ svg:
87
+ type: string
88
+ 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>'
89
+ description: "Checkmark icon as SVG in (Font Awesome - for use with CSS mask property) - shown after successful copy"
90
+ required:
91
+ - svg
92
+ additionalProperties: false
93
+ additionalProperties: false
94
+ required:
95
+ - theme
96
+ - version
97
+ additionalProperties: false
98
+ additionalProperties: false
@@ -0,0 +1,34 @@
1
+ title: Image Component Configuration
2
+ description: >-
3
+ Schema for configuring the image component. Parameters are passed directly
4
+ as include parameters. The `file` and `alt` parameters are required.
5
+ type: object
6
+ properties:
7
+ file:
8
+ type: string
9
+ description: >-
10
+ Filename of the image to display, relative to `/assets/img/`.
11
+ This parameter is required.
12
+ alt:
13
+ type: string
14
+ description: >-
15
+ Alt text describing the image for accessibility. This parameter is
16
+ required. Also used as the basis for the generated `id` attribute
17
+ on the `<figure>` element (slugified).
18
+ link:
19
+ type: string
20
+ description: >-
21
+ URL to wrap the image in a hyperlink (`<a>` element). When not set,
22
+ the image is rendered without a link.
23
+ caption:
24
+ type: string
25
+ description: >-
26
+ Caption text rendered inside a `<figcaption>` element below the
27
+ image. When not set, no caption is rendered.
28
+ extraclasses:
29
+ type: string
30
+ description: >-
31
+ Additional CSS classes appended to the image element alongside the
32
+ default `figure-img img-fluid rounded` classes. When not set, only
33
+ the default classes apply.
34
+ 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"
@@ -0,0 +1,187 @@
1
+ title: Link Component Configuration
2
+ description: >-
3
+ Schema for defining and configuring a single link element. This component is
4
+ often reused by other components to define buttons or navigation items.
5
+ type: object
6
+ properties:
7
+ with_link:
8
+ type: boolean
9
+ default: true
10
+ description: >-
11
+ Enables or disables the rendering of the Link component. Set to `true`
12
+ (default) to display the link; set to `false` to suppress rendering.
13
+ This is a page-level front matter variable read as `page.with_link` by
14
+ the template. It is set globally via `_config.yml` defaults and can be
15
+ overridden per page.
16
+ with_link_data:
17
+ type: object
18
+ default: {}
19
+ description: >-
20
+ The configuration object containing all attributes necessary to render and
21
+ style the link element (`<a>`). Requires either `name` (for text or icon+text links)
22
+ or `icon` with `aria_label` (for icon-only links). The `link` parameter is optional —
23
+ if omitted, an anchor link is automatically generated from `name` for in-page navigation.
24
+ properties:
25
+ name:
26
+ type: string
27
+ default: ""
28
+ description: The visible text or label of the link. This field is required unless `icon` is provided for icon-only links.
29
+ link:
30
+ type: string
31
+ default: ""
32
+ description: >-
33
+ The target URL the link points to. This can be a relative path (prefixed by site URL settings), a path using `../` (e.g., `../some-page`),
34
+ or an absolute URL (e.g., `https://example.com`). If omitted, an
35
+ anchor link is generated from the `name` parameter by converting to lowercase,
36
+ replacing spaces with hyphens, and removing the characters `"`, `'`, `?`, `&`, `#`, and `/`
37
+ (e.g., "Back to Top" becomes "#back-to-top"), enabling in-page navigation to section headings.
38
+ format: uri-reference
39
+ target:
40
+ type: string
41
+ default: ""
42
+ description: >-
43
+ The link target behavior. Set to `_blank` to open the link in a new window or tab.
44
+ When set to `_blank`, the component automatically adds `rel="noopener noreferrer"`
45
+ for security. The `jekyll-link-decorator` plugin independently adds an external-link
46
+ icon to cross-domain links regardless of this setting.
47
+ enum:
48
+ - ""
49
+ - _blank
50
+ class:
51
+ type: string
52
+ default: ""
53
+ description: >-
54
+ One or more CSS classes to apply to the link element. Use this
55
+ to override default link styling and apply component styles like
56
+ Bootstrap buttons (e.g., `btn btn-primary btn-lg`). When not set, the template
57
+ applies: `link link-{color} link-offset-3 link-offset-3-hover
58
+ link-underline-{color} link-underline-opacity-0 link-underline-opacity-100-hover`.
59
+ role:
60
+ type: string
61
+ default: ""
62
+ description: >-
63
+ The ARIA role for the link element (e.g., `button` for styled links
64
+ that act as buttons). Used primarily for accessibility when the HTML
65
+ element's semantic meaning is being overridden.
66
+ aria_label:
67
+ type: string
68
+ default: ""
69
+ description: >-
70
+ The ARIA label providing a concise, accessible description of the link's
71
+ purpose. Required when `name` is omitted (icon-only links): without it,
72
+ the link has no accessible name and screen readers cannot describe its
73
+ purpose. For text+icon links, `aria_label` is not required — all `<i>`
74
+ icon elements are automatically rendered with `aria-hidden="true"` so
75
+ screen readers rely on the visible `name` text only.
76
+ color:
77
+ type: string
78
+ default: primary
79
+ description: >-
80
+ The visual color of the link text. Possible values are standard
81
+ Bootstrap color utility classes (e.g., `primary`, `danger`, `dark`).
82
+ enum:
83
+ - primary
84
+ - secondary
85
+ - success
86
+ - info
87
+ - warning
88
+ - danger
89
+ - light
90
+ - dark
91
+ icon:
92
+ type: string
93
+ default: ""
94
+ description: >-
95
+ The Font Awesome icon class (e.g., `fa-solid fa-download`) to display
96
+ within the link. When provided, this icon is used instead of any icon
97
+ the `jekyll-link-decorator` plugin would otherwise add to external links.
98
+ icon_position:
99
+ type: string
100
+ default: start
101
+ description: >-
102
+ The position of the icon relative to the link text. Choose `start`
103
+ (default) for the icon before the text, or `end` for the icon
104
+ after the text. This parameter applies only when `name` is also set.
105
+ For icon-only links (when `name` is not provided), `icon_position` has
106
+ no effect and no spacing margin is applied.
107
+ enum:
108
+ - start
109
+ - end
110
+ data_bs_toggle:
111
+ type: string
112
+ default: ""
113
+ description: >-
114
+ The Bootstrap `data-bs-toggle` attribute. Set to `tooltip` or `popover`
115
+ to enable the corresponding Bootstrap interactive component on the link element.
116
+ enum:
117
+ - ""
118
+ - tooltip
119
+ - popover
120
+ data_bs_title:
121
+ type: string
122
+ default: ""
123
+ description: >-
124
+ The Bootstrap `data-bs-title` attribute. For tooltips, provides the tooltip
125
+ text. For popovers, provides the optional header displayed above the body.
126
+ Use `data_bs_content` to provide the popover body text.
127
+ data_bs_content:
128
+ type: string
129
+ default: ""
130
+ description: >-
131
+ The Bootstrap `data-bs-content` attribute. Provides the body text displayed
132
+ inside a Bootstrap popover. Required when `data_bs_toggle` is set to `popover`;
133
+ Bootstrap suppresses the popover if this value is empty.
134
+ data_bs_placement:
135
+ type: string
136
+ default: ""
137
+ description: >-
138
+ The Bootstrap `data-bs-placement` attribute. Controls where the tooltip or
139
+ popover appears relative to the link element.
140
+ enum:
141
+ - ""
142
+ - top
143
+ - bottom
144
+ - start
145
+ - end
146
+ data_bs_trigger:
147
+ type: string
148
+ default: ""
149
+ description: >-
150
+ The Bootstrap `data-bs-trigger` attribute. Controls how the tooltip or popover
151
+ is shown and dismissed. Tooltips default to `"hover focus"`; popovers default
152
+ to `"click"`. Use `"click focus"` to allow dismissal by clicking away or
153
+ tabbing away.
154
+ data_bs_delay:
155
+ type: string
156
+ default: ""
157
+ description: >-
158
+ The Bootstrap `data-bs-delay` attribute. Sets the show and hide delay in
159
+ milliseconds. Accepts a number (e.g., `"500"`) or a JSON object for separate
160
+ delays (e.g., `'{"show":500,"hide":100}'`). Applies to both tooltips and
161
+ popovers.
162
+ data_bs_html:
163
+ type: string
164
+ default: ""
165
+ description: >-
166
+ The Bootstrap `data-bs-html` attribute. Set to `"true"` to allow HTML in the
167
+ tooltip or popover content. Use only with trusted content; never use with
168
+ user-supplied input. Defaults to `"false"` (plain text).
169
+ enum:
170
+ - ""
171
+ - "true"
172
+ - "false"
173
+ data_bs_custom_class:
174
+ type: string
175
+ default: ""
176
+ description: >-
177
+ The Bootstrap `data-bs-custom-class` attribute. Adds one or more custom CSS
178
+ classes to the tooltip or popover element, enabling targeted styling overrides.
179
+ data_bs_offset:
180
+ type: string
181
+ default: ""
182
+ description: >-
183
+ The Bootstrap `data-bs-offset` attribute. Offsets the tooltip or popover
184
+ position from its target. Accepts a comma-separated pair of values
185
+ (e.g., `"0,8"` shifts 8 px along the main axis).
186
+ additionalProperties: false
187
+ additionalProperties: false
@@ -0,0 +1,158 @@
1
+ title: Language Selector Component Configuration
2
+ description: >-
3
+ Schema for configuring the 'Language Selector' component, which allows users
4
+ to switch between different localized versions of the content.
5
+ type: object
6
+ properties:
7
+ with_locales:
8
+ type: boolean
9
+ default: false
10
+ description: >-
11
+ Enables or disables the Language Selector component. Set to `true` to
12
+ display the selector and initiate the content localization process. Set
13
+ to `false` (default) to hide the selector.
14
+ with_locales_data:
15
+ type: object
16
+ default: {}
17
+ description: >-
18
+ Configuration object for the Language Selector component and the
19
+ jekyll-l10n localization pipeline. Accessed in templates as
20
+ `page.with_locales_data`.
21
+ properties:
22
+ locales:
23
+ type: array
24
+ default: []
25
+ description: >-
26
+ List of ISO 639-1 language codes for which localized pages are
27
+ generated (e.g., `["es", "fr", "it"]`). English (`en`) is always
28
+ included automatically by the template and does not need to be listed
29
+ here.
30
+ items:
31
+ type: string
32
+ description: A single ISO 639-1 language code (e.g., `es` for Spanish).
33
+ minItems: 0
34
+ locales_dir:
35
+ type: string
36
+ default: "_locales"
37
+ description: >-
38
+ Directory (relative to the site root) where `.po` translation files
39
+ are stored. Defaults to `_locales`.
40
+ extract_on_build:
41
+ type: boolean
42
+ default: true
43
+ description: >-
44
+ When `true`, the jekyll-l10n plugin extracts translatable strings
45
+ from the generated HTML during the build phase and writes them to
46
+ the `.po` source files in `locales_dir`.
47
+ update_compendium:
48
+ type: boolean
49
+ default: true
50
+ description: >-
51
+ When `true`, the plugin updates the translation compendium file
52
+ with newly extracted strings.
53
+ extraction:
54
+ type: object
55
+ description: Controls which HTML content is extracted for translation.
56
+ properties:
57
+ translatable_attributes:
58
+ type: array
59
+ default: [title, alt, aria-label, placeholder, aria-description]
60
+ description: >-
61
+ HTML attributes whose values are extracted as translatable
62
+ strings in addition to text content.
63
+ items:
64
+ type: string
65
+ exclude_selectors:
66
+ type: array
67
+ default: [script, style, "code.language-plaintext", "pre code"]
68
+ description: >-
69
+ CSS selectors identifying HTML elements whose content is
70
+ excluded from extraction (e.g., code blocks, scripts).
71
+ items:
72
+ type: string
73
+ additionalProperties: false
74
+ logging:
75
+ type: object
76
+ description: Controls logging verbosity during the build.
77
+ properties:
78
+ level:
79
+ type: string
80
+ default: "debug"
81
+ description: >-
82
+ Log level for the localization pipeline. Accepted values:
83
+ `debug`, `info`, `warn`, `error`.
84
+ show_statistics:
85
+ type: boolean
86
+ default: true
87
+ description: >-
88
+ When `true`, prints translation coverage statistics at the
89
+ end of the build.
90
+ debug:
91
+ type: boolean
92
+ default: false
93
+ description: >-
94
+ When `true`, enables verbose debug output from the
95
+ localization pipeline.
96
+ additionalProperties: false
97
+ translation:
98
+ type: object
99
+ description: >-
100
+ Controls how translated strings are applied and configures the
101
+ optional LibreTranslate machine translation backend.
102
+ properties:
103
+ fallback:
104
+ type: string
105
+ default: "english"
106
+ description: >-
107
+ Language name used as fallback when a translation is missing.
108
+ preserve_html:
109
+ type: boolean
110
+ default: true
111
+ description: >-
112
+ When `true`, HTML markup inside translated strings is preserved
113
+ rather than escaped.
114
+ libretranslate_enabled:
115
+ type: boolean
116
+ default: false
117
+ description: >-
118
+ Enables automatic machine translation via a LibreTranslate
119
+ instance for strings without a manual translation.
120
+ libretranslate_api_url:
121
+ type: string
122
+ default: "http://localhost:5000"
123
+ description: >-
124
+ URL of the LibreTranslate API endpoint used for machine
125
+ translation.
126
+ libretranslate_api_key:
127
+ description: >-
128
+ API key for the LibreTranslate instance. Set to `nil` if the
129
+ instance does not require authentication.
130
+ libretranslate_timeout:
131
+ type: integer
132
+ default: 300
133
+ description: >-
134
+ Timeout in seconds for LibreTranslate API requests.
135
+ libretranslate_batch_size:
136
+ type: integer
137
+ default: 50
138
+ description: >-
139
+ Number of strings submitted per LibreTranslate API request.
140
+ libretranslate_retry_attempts:
141
+ type: integer
142
+ default: 3
143
+ description: >-
144
+ Number of retry attempts on a failed LibreTranslate API call.
145
+ libretranslate_retry_delay:
146
+ type: integer
147
+ default: 2
148
+ description: >-
149
+ Delay in seconds between LibreTranslate API retry attempts.
150
+ libretranslate_stop_on_error:
151
+ type: boolean
152
+ default: false
153
+ description: >-
154
+ When `true`, the build stops on an unrecoverable LibreTranslate
155
+ API error rather than continuing with untranslated strings.
156
+ additionalProperties: false
157
+ additionalProperties: false
158
+ additionalProperties: false
@@ -0,0 +1,20 @@
1
+ ---
2
+ brand_manifestation: jekyll-theme-centos
3
+ navitems: []
4
+ # navitems:
5
+ # - name: "Link"
6
+ # icon: "fa-solid fa-book"
7
+ # link: "/"
8
+ # menu: []
9
+ # visible_on: ["navbar"]
10
+ # - name: "Menu"
11
+ # icon: "fa-solid fa-book"
12
+ # link: ""
13
+ # menu:
14
+ # - name: Item 1
15
+ # link: "/item-1/"
16
+ # - name: Item 2
17
+ # link: "/item-2/"
18
+ # - name: Item 3
19
+ # link: "/item-3/"
20
+ # visible_on: ["navbar"]