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.
- checksums.yaml +7 -0
- data/_config.yml +196 -0
- data/_data/base/announcement_schema.yml +49 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +59 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +185 -0
- data/_data/base/breadcrumb_schema.yml +27 -0
- data/_data/base/breakingnews_schema.yml +67 -0
- data/_data/base/card_schema.yml +146 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/configuration_variables_schema.yml +42 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +74 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +130 -0
- data/_data/base/fontawesome_schema.yml +62 -0
- data/_data/base/footer.yml +9 -0
- data/_data/base/footer_schema.yml +55 -0
- data/_data/base/head_schema.yml +19 -0
- data/_data/base/heading_anchor.yml +2 -0
- data/_data/base/heading_anchor_schema.yml +37 -0
- data/_data/base/highlight_schema.yml +98 -0
- data/_data/base/image_schema.yml +34 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +187 -0
- data/_data/base/locales_schema.yml +158 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +129 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp.yml +24 -0
- data/_data/base/ogp_schema.yml +192 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +124 -0
- data/_data/base/script_schema.yml +41 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +26 -0
- data/_data/base/social_schema.yml +57 -0
- data/_data/base/sponsors.yml +41 -0
- data/_data/base/sponsors_schema.yml +73 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +114 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_includes/base/announcement.html.liquid +65 -0
- data/_includes/base/artwork.html.liquid +63 -0
- data/_includes/base/backtotop.html.liquid +73 -0
- data/_includes/base/bits.html.liquid +152 -0
- data/_includes/base/breadcrumb.html.liquid +77 -0
- data/_includes/base/breakingnews.html.liquid +90 -0
- data/_includes/base/card.html.liquid +110 -0
- data/_includes/base/color-table.html.liquid +33 -0
- data/_includes/base/configuration_variables-nested.html.liquid +98 -0
- data/_includes/base/configuration_variables.html.liquid +98 -0
- data/_includes/base/content.html.liquid +7 -0
- data/_includes/base/copyright.html.liquid +70 -0
- data/_includes/base/copyvalue.html.liquid +82 -0
- data/_includes/base/datatable.html.liquid +83 -0
- data/_includes/base/event.html.liquid +105 -0
- data/_includes/base/fontawesome.html.liquid +91 -0
- data/_includes/base/footer.html.liquid +69 -0
- data/_includes/base/head.html.liquid +135 -0
- data/_includes/base/heading_anchor.html.liquid +67 -0
- data/_includes/base/highlight.html.liquid +84 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +129 -0
- data/_includes/base/locales.html.liquid +78 -0
- data/_includes/base/navbar.html.liquid +121 -0
- data/_includes/base/navindex.html.liquid +200 -0
- data/_includes/base/ogp.html.liquid +144 -0
- data/_includes/base/project.html.liquid +104 -0
- data/_includes/base/shortcut.html.liquid +77 -0
- data/_includes/base/social.html.liquid +76 -0
- data/_includes/base/sponsors-cards.html.liquid +69 -0
- data/_includes/base/sponsors-carousel.html.liquid +91 -0
- data/_includes/base/title.html.liquid +65 -0
- data/_includes/base/toc-generator.html.liquid +189 -0
- data/_includes/base/toc.html.liquid +95 -0
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +120 -0
- data/_layouts/base/default.html +68 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +68 -0
- data/_sass/base/_customization.scss +331 -0
- data/_sass/base/_light-dark.scss +10 -0
- data/_sass/base/_maps.scss +104 -0
- data/_sass/base/_variables.scss +232 -0
- data/_sass/bootstrap/_accordion.scss +153 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +147 -0
- data/_sass/bootstrap/_buttons.scss +216 -0
- data/_sass/bootstrap/_card.scss +238 -0
- data/_sass/bootstrap/_carousel.scss +226 -0
- data/_sass/bootstrap/_close.scss +66 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +199 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +197 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +147 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +617 -0
- data/_sass/bootstrap/_root.scss +187 -0
- data/_sass/bootstrap/_spinners.scss +86 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +102 -0
- data/_sass/bootstrap/_variables.scss +1753 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
- data/_sass/bootstrap/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/base/stylesheet.min.scss +35 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/base/centos-colors.gpl +55 -0
- data/assets/img/base/example-ogp-image.svg +297 -0
- data/assets/img/base/example-sponsors-design.svg +226 -0
- data/assets/img/base/example-sponsors-logo-1.svg +120 -0
- data/assets/img/base/example-sponsors-logo-2.svg +116 -0
- data/assets/img/base/example-sponsors-logo-3.svg +123 -0
- data/assets/img/base/example-sponsors-logo-4.svg +116 -0
- data/assets/img/base/example-sponsors-logo-5.svg +116 -0
- data/assets/img/base/example-sponsors-logo-6.svg +116 -0
- data/assets/img/base/example-sponsors-logo-7.svg +116 -0
- data/assets/img/base/example-sponsors-logo-8.svg +110 -0
- data/assets/img/base/page-layout-default.svg +1217 -0
- data/assets/img/base/page-with-alert.svg +383 -0
- data/assets/img/base/page-with-announcement.svg +956 -0
- data/assets/img/base/page-with-artwork.svg +1009 -0
- data/assets/img/base/page-with-backtotop.svg +1009 -0
- data/assets/img/base/page-with-bits.svg +891 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.svg +957 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.svg +1018 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.svg +518 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-footer.svg +1018 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-image.svg +57 -0
- data/assets/img/base/page-with-link.svg +57 -0
- data/assets/img/base/page-with-locales.svg +1009 -0
- data/assets/img/base/page-with-navbar.svg +958 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.svg +401 -0
- data/assets/img/base/page-with-project.svg +423 -0
- data/assets/img/base/page-with-shortcut.svg +937 -0
- data/assets/img/base/page-with-social.svg +937 -0
- data/assets/img/base/page-with-sponsors.svg +937 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.svg +399 -0
- data/assets/img/base/screenshot-1200x600.svg +114 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +900 -0
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +20 -0
- data/assets/js/base/copyvalue.js +145 -0
- data/assets/js/base/datatable.js +41 -0
- data/assets/js/base/heading-anchor.js +108 -0
- data/assets/js/base/highlight.js +12 -0
- data/assets/js/base/init-tooltips.js +12 -0
- data/assets/js/bootstrap.bundle.js +6312 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4447 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- data/site.webmanifest +11 -0
- metadata +611 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
title: Configuration Variables Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Include parameters for the 'configuration_variables' component. All parameters
|
|
4
|
+
are optional and apply to both the top-level table and all recursively
|
|
5
|
+
generated nested tables.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
schema:
|
|
9
|
+
type: object
|
|
10
|
+
description: >-
|
|
11
|
+
A schema object passed directly as a parameter. Overrides automatic schema
|
|
12
|
+
resolution from `site.data` and `site.data.base`. Use this when the schema
|
|
13
|
+
is stored under a non-standard data key or namespace.
|
|
14
|
+
columns:
|
|
15
|
+
type: array
|
|
16
|
+
description: >-
|
|
17
|
+
Array of `{ key, label }` objects defining which schema fields to render as
|
|
18
|
+
columns. When set, overrides the `col_type`, `col_default`, and
|
|
19
|
+
`col_description` parameters. Can also be declared in the `*_schema.yml`
|
|
20
|
+
file itself.
|
|
21
|
+
col_name:
|
|
22
|
+
type: string
|
|
23
|
+
default: Name
|
|
24
|
+
description: >-
|
|
25
|
+
Label for the variable name column. Always rendered as the first column,
|
|
26
|
+
regardless of whether `columns` is set.
|
|
27
|
+
col_type:
|
|
28
|
+
type: string
|
|
29
|
+
default: Type
|
|
30
|
+
description: >-
|
|
31
|
+
Label for the type column. Used only when `columns` is not set.
|
|
32
|
+
col_default:
|
|
33
|
+
type: string
|
|
34
|
+
default: Default
|
|
35
|
+
description: >-
|
|
36
|
+
Label for the default column. Used only when `columns` is not set.
|
|
37
|
+
col_description:
|
|
38
|
+
type: string
|
|
39
|
+
default: Description
|
|
40
|
+
description: >-
|
|
41
|
+
Label for the description column. Used only when `columns` is not set.
|
|
42
|
+
additionalProperties: false
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
title: Content Section Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the main content display partial. 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,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,74 @@
|
|
|
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 notice.
|
|
28
|
+
items:
|
|
29
|
+
type: object
|
|
30
|
+
description: Configuration for a single legal link rendered using the `base/link.html.liquid` template.
|
|
31
|
+
properties:
|
|
32
|
+
name:
|
|
33
|
+
type: string
|
|
34
|
+
description: >-
|
|
35
|
+
The display text for the legal link (e.g., `Privacy Policy`).
|
|
36
|
+
link:
|
|
37
|
+
type: string
|
|
38
|
+
description: >-
|
|
39
|
+
The URL for the legal document. Accepts absolute URLs, site-relative
|
|
40
|
+
paths, and anchor references (e.g., `https://example.org/legal`,
|
|
41
|
+
`/privacy/`, `#terms`).
|
|
42
|
+
color:
|
|
43
|
+
type: string
|
|
44
|
+
description: >-
|
|
45
|
+
The Bootstrap link color scheme (e.g., `light`, `primary`). Has no
|
|
46
|
+
effect when `class` is also set, because the Copyright component
|
|
47
|
+
supplies a default `class` that takes precedence.
|
|
48
|
+
icon:
|
|
49
|
+
type: string
|
|
50
|
+
description: >-
|
|
51
|
+
Font Awesome icon class to display alongside the link text
|
|
52
|
+
(e.g., `fa-solid fa-file-lines`).
|
|
53
|
+
icon_position:
|
|
54
|
+
type: string
|
|
55
|
+
enum: [start, end]
|
|
56
|
+
default: start
|
|
57
|
+
description: >-
|
|
58
|
+
Position of the icon relative to the link text. Set to `start`
|
|
59
|
+
(default) to place the icon before the text, or `end` to place
|
|
60
|
+
it after.
|
|
61
|
+
role:
|
|
62
|
+
type: string
|
|
63
|
+
description: >-
|
|
64
|
+
ARIA `role` attribute for the anchor element
|
|
65
|
+
(e.g., `menuitem`).
|
|
66
|
+
class:
|
|
67
|
+
type: string
|
|
68
|
+
description: >-
|
|
69
|
+
Custom CSS classes applied to the anchor element. When set,
|
|
70
|
+
overrides the default legal link styling entirely.
|
|
71
|
+
required:
|
|
72
|
+
- name
|
|
73
|
+
additionalProperties: false
|
|
74
|
+
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.8"
|
|
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-nD9P196GmYuiIASpxI7+7/0LqD6BBA74CfgIOSQUo7brmKKeph8lSEMm2sGgSAvK"
|
|
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-pszF7QvU8ChuuhQBJGIvzVEcojfpYqQOVG2PaXES4M4Mcn+1CqfQ4r1b/mpdtn/6"
|
|
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,130 @@
|
|
|
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
|
+
description:
|
|
28
|
+
type: string
|
|
29
|
+
default: ""
|
|
30
|
+
description: A brief description of the event.
|
|
31
|
+
address:
|
|
32
|
+
type: string
|
|
33
|
+
default: ""
|
|
34
|
+
description: The street address of the event venue.
|
|
35
|
+
city:
|
|
36
|
+
type: string
|
|
37
|
+
default: ""
|
|
38
|
+
description: The city where the event takes place.
|
|
39
|
+
date:
|
|
40
|
+
type: string # Changed from 'date' to 'string' for flexibility
|
|
41
|
+
default: ""
|
|
42
|
+
description: >-
|
|
43
|
+
The event start and end date range as a readable string (e.g.,
|
|
44
|
+
`September 19 - 20, 2025`).
|
|
45
|
+
location:
|
|
46
|
+
type: string
|
|
47
|
+
default: ""
|
|
48
|
+
description: The city and country where the event takes place (e.g., `Boston, USA`).
|
|
49
|
+
image_url:
|
|
50
|
+
type: string
|
|
51
|
+
format: uri
|
|
52
|
+
default: ""
|
|
53
|
+
description: The absolute or relative URL of an image related to the event (e.g., a banner or logo).
|
|
54
|
+
color:
|
|
55
|
+
type: string
|
|
56
|
+
default: secondary
|
|
57
|
+
description: >-
|
|
58
|
+
Defines the visual style/color of the event alert. Defaults to
|
|
59
|
+
`secondary`. Possible values are standard Bootstrap color utility classes.
|
|
60
|
+
enum:
|
|
61
|
+
- primary
|
|
62
|
+
- secondary
|
|
63
|
+
- info
|
|
64
|
+
- warning
|
|
65
|
+
- danger
|
|
66
|
+
- success
|
|
67
|
+
- dark
|
|
68
|
+
- light
|
|
69
|
+
icon:
|
|
70
|
+
type: string
|
|
71
|
+
default: "fa-solid fa-calendar"
|
|
72
|
+
description: >-
|
|
73
|
+
The Font Awesome icon class displayed on the event alert
|
|
74
|
+
(e.g., `fa-solid fa-calendar`). The Font Awesome addon must be
|
|
75
|
+
enabled for icons to render.
|
|
76
|
+
link:
|
|
77
|
+
type: string
|
|
78
|
+
format: uri-reference
|
|
79
|
+
default: ""
|
|
80
|
+
description: >-
|
|
81
|
+
The URL (relative or absolute) that the "Know more" button
|
|
82
|
+
will link to, providing additional details about the event.
|
|
83
|
+
presentations:
|
|
84
|
+
type: array
|
|
85
|
+
description: A list of objects detailing the individual talks or sessions associated with this event.
|
|
86
|
+
items:
|
|
87
|
+
type: object
|
|
88
|
+
properties:
|
|
89
|
+
name:
|
|
90
|
+
type: string
|
|
91
|
+
description: The title of the presentation or talk.
|
|
92
|
+
summary:
|
|
93
|
+
type: string
|
|
94
|
+
description: A concise summary or abstract describing what the presentation is about.
|
|
95
|
+
author:
|
|
96
|
+
type: string
|
|
97
|
+
description: The name of the person who created or is delivering the presentation.
|
|
98
|
+
author_email:
|
|
99
|
+
type: string
|
|
100
|
+
format: email
|
|
101
|
+
description: The author's email address.
|
|
102
|
+
author_webiste:
|
|
103
|
+
type: string
|
|
104
|
+
format: uri
|
|
105
|
+
description: The author's website or profile URL.
|
|
106
|
+
date:
|
|
107
|
+
type: string
|
|
108
|
+
format: date-time
|
|
109
|
+
description: The presentation date and time (e.g., ISO 8601 format).
|
|
110
|
+
slides_url:
|
|
111
|
+
type: string
|
|
112
|
+
format: uri
|
|
113
|
+
description: The URL to the presentation slides (e.g., PDF or Google Slides link).
|
|
114
|
+
video_url:
|
|
115
|
+
type: string
|
|
116
|
+
format: uri
|
|
117
|
+
description: The URL to the presentation video recording.
|
|
118
|
+
information_url:
|
|
119
|
+
type: string
|
|
120
|
+
format: uri
|
|
121
|
+
description: A general URL for more information about the presentation.
|
|
122
|
+
required:
|
|
123
|
+
- name
|
|
124
|
+
- author
|
|
125
|
+
additionalProperties: false
|
|
126
|
+
required:
|
|
127
|
+
- title
|
|
128
|
+
- link
|
|
129
|
+
additionalProperties: false
|
|
130
|
+
additionalProperties: false
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
mode:
|
|
44
|
+
type: string
|
|
45
|
+
enum:
|
|
46
|
+
- "svg+js"
|
|
47
|
+
- "css"
|
|
48
|
+
default: "css"
|
|
49
|
+
description: >-
|
|
50
|
+
Loading mode for Font Awesome. `css` (default) downloads a stylesheet and
|
|
51
|
+
loads WOFF2 font files on demand — lighter first-visit payload and no DOM
|
|
52
|
+
manipulation cost. `svg+js` downloads a JavaScript bundle that replaces
|
|
53
|
+
`<i class="fa-...">` elements with inline SVGs via DOM mutation — enables
|
|
54
|
+
power transforms, layering, and pseudo-element watching. Use `svg+js` when
|
|
55
|
+
advanced transform, layering, or pseudo-element features are needed.
|
|
56
|
+
required:
|
|
57
|
+
- version
|
|
58
|
+
- cdn
|
|
59
|
+
- css_bundle_integrity
|
|
60
|
+
- js_bundle_integrity # Integrity checks and source are required for secure and functional loading
|
|
61
|
+
additionalProperties: false
|
|
62
|
+
additionalProperties: false
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
title: Footer Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the Footer component, which renders the site's
|
|
4
|
+
bottom section including brand identity, shortcuts, locales, social links,
|
|
5
|
+
and copyright information.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
with_footer:
|
|
9
|
+
type: boolean
|
|
10
|
+
default: false
|
|
11
|
+
description: >-
|
|
12
|
+
Controls the visibility of the Footer component. Set to `true` to
|
|
13
|
+
display the footer at the bottom of the page. Set to `false` (default)
|
|
14
|
+
to hide it entirely.
|
|
15
|
+
with_footer_data:
|
|
16
|
+
type: object
|
|
17
|
+
default: {}
|
|
18
|
+
description: >-
|
|
19
|
+
The page-level configuration object for the Footer component. Settings
|
|
20
|
+
defined here (in the page's front matter) override any global `footer`
|
|
21
|
+
data defined in site-wide `_data` files.
|
|
22
|
+
properties:
|
|
23
|
+
brand_image:
|
|
24
|
+
type: string
|
|
25
|
+
default: "centos-whitelogo.svg"
|
|
26
|
+
description: >-
|
|
27
|
+
The filename of the brand logo or image to display in the footer.
|
|
28
|
+
This file is expected to be located in your site's image assets
|
|
29
|
+
directory.
|
|
30
|
+
brand_image_class:
|
|
31
|
+
type: string
|
|
32
|
+
default: ""
|
|
33
|
+
description: >-
|
|
34
|
+
One or more Bootstrap CSS classes to apply directly to the brand
|
|
35
|
+
image element (`<img>`).
|
|
36
|
+
brand_image_height:
|
|
37
|
+
type: string
|
|
38
|
+
default: "32"
|
|
39
|
+
description: >-
|
|
40
|
+
The desired fixed height for the brand image, specified in pixels
|
|
41
|
+
as a string (e.g., `"32"`).
|
|
42
|
+
brand_manifestation:
|
|
43
|
+
type: string
|
|
44
|
+
default: ""
|
|
45
|
+
description: >-
|
|
46
|
+
The text label or name (e.g., project name) that is displayed
|
|
47
|
+
alongside the brand image in the footer.
|
|
48
|
+
brand_manifestation_class:
|
|
49
|
+
type: string
|
|
50
|
+
default: ""
|
|
51
|
+
description: >-
|
|
52
|
+
One or more Bootstrap CSS classes to apply to the brand
|
|
53
|
+
manifestation text element.
|
|
54
|
+
additionalProperties: false
|
|
55
|
+
additionalProperties: false
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
title: Head Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for the head component. The head component is a layout coordinator
|
|
4
|
+
that assembles the HTML <head> section by conditionally including
|
|
5
|
+
sub-components (OGP, Font Awesome, Highlight.js, DataTables, Breaking News,
|
|
6
|
+
Back to Top, Copy Value, Heading Anchor). Each sub-component is configured
|
|
7
|
+
through its own schema. Only properties exclusive to the head component
|
|
8
|
+
itself are defined here.
|
|
9
|
+
type: object
|
|
10
|
+
properties:
|
|
11
|
+
theme_color:
|
|
12
|
+
type: string
|
|
13
|
+
default: "#A54C93"
|
|
14
|
+
description: >-
|
|
15
|
+
Browser chrome color for mobile browsers (Chrome on Android, Safari on iOS).
|
|
16
|
+
Used by the `<meta name="theme-color">` tag. Should match `theme_color`
|
|
17
|
+
in the site's `site.webmanifest`. Resolved from `page.theme_color` first,
|
|
18
|
+
then `site.theme_color`, then this default.
|
|
19
|
+
additionalProperties: false
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Heading Anchor Component Configuration
|
|
3
|
+
description: >
|
|
4
|
+
Configuration for the first-class heading anchor feature of jekyll-link-decorator.
|
|
5
|
+
Each heading (h1–h6) receives a Font Awesome link icon that, when clicked, copies
|
|
6
|
+
the full page URL with fragment to the clipboard.
|
|
7
|
+
type: object
|
|
8
|
+
properties:
|
|
9
|
+
with_heading_anchor:
|
|
10
|
+
type: boolean
|
|
11
|
+
description: Enable or disable automatic heading anchor injection.
|
|
12
|
+
default: true
|
|
13
|
+
with_heading_anchor_data:
|
|
14
|
+
type: object
|
|
15
|
+
description: Configuration for heading anchor appearance and copy behaviour.
|
|
16
|
+
properties:
|
|
17
|
+
icon:
|
|
18
|
+
type: string
|
|
19
|
+
description: Font Awesome icon classes applied to the anchor icon element.
|
|
20
|
+
default: "fa-solid fa-hashtag"
|
|
21
|
+
icon_size:
|
|
22
|
+
type: string
|
|
23
|
+
description: Font Awesome size modifier appended after the icon classes.
|
|
24
|
+
copy_success_message:
|
|
25
|
+
type: string
|
|
26
|
+
description: >
|
|
27
|
+
Feedback message shown after a successful clipboard copy.
|
|
28
|
+
Consumed by heading-anchor.js via data-success-message on the script element.
|
|
29
|
+
default: "Copied!"
|
|
30
|
+
reset_delay:
|
|
31
|
+
type: integer
|
|
32
|
+
description: >
|
|
33
|
+
Milliseconds to wait before the icon resets to its original state
|
|
34
|
+
after a successful copy. Consumed by heading-anchor.js via data-reset-delay.
|
|
35
|
+
default: 2000
|
|
36
|
+
additionalProperties: false
|
|
37
|
+
additionalProperties: false
|