jekyll-theme-centos 2.52.0.beta.3 → 2.52.0.beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/base/announcement_schema.yml +50 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +53 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +183 -0
- data/_data/base/breadcrumb_schema.yml +14 -0
- data/_data/base/breakingnews_schema.yml +59 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/converter_link_schema.yml +48 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +34 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +122 -0
- data/_data/base/fontawesome_schema.yml +49 -0
- data/_data/base/highlight_schema.yml +68 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +153 -0
- data/_data/base/locales_schema.yml +25 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +121 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp_schema.yml +186 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +120 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +25 -0
- data/_data/base/social_schema.yml +53 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +100 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_data/sponsors/carousel.yml +37 -0
- data/_data/sponsors/navbar.yml +6 -0
- data/_includes/base/announcement.html.liquid +51 -0
- data/_includes/base/artwork.html.liquid +49 -0
- data/_includes/base/backtotop.html.liquid +51 -0
- data/_includes/base/bits.html.liquid +135 -0
- data/_includes/base/breadcrumb.html.liquid +37 -0
- data/_includes/base/breakingnews.html.liquid +74 -0
- data/_includes/base/card.html.liquid +96 -0
- data/_includes/base/copyright.html.liquid +56 -0
- data/_includes/base/copyvalue.html.liquid +59 -0
- data/_includes/base/datatable.html.liquid +64 -0
- data/_includes/base/event.html.liquid +89 -0
- data/_includes/base/fontawesome.html.liquid +58 -0
- data/_includes/base/head.html.liquid +101 -0
- data/_includes/base/highlight.html.liquid +65 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +139 -0
- data/_includes/base/locales.html.liquid +41 -0
- data/_includes/base/navbar.html.liquid +106 -0
- data/_includes/base/navindex.html.liquid +162 -0
- data/_includes/base/ogp.html.liquid +118 -0
- data/_includes/base/project.html.liquid +90 -0
- data/_includes/base/script.html.liquid +59 -0
- data/_includes/base/shortcut.html.liquid +65 -0
- data/_includes/base/social.html.liquid +59 -0
- data/_includes/base/title.html.liquid +52 -0
- data/_includes/base/toc.html.liquid +91 -0
- data/_includes/base/toc_generator.html.liquid +189 -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/_includes/sponsors/cards.html +11 -0
- data/_includes/sponsors/carousel.html +24 -0
- data/_layouts/base/default.html +117 -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 +251 -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/page-layout-default.png +0 -0
- data/assets/img/base/page-layout-default.svg +1158 -0
- data/assets/img/base/page-with-alert.png +0 -0
- data/assets/img/base/page-with-alert.svg +359 -0
- data/assets/img/base/page-with-announcement.png +0 -0
- data/assets/img/base/page-with-announcement.svg +499 -0
- data/assets/img/base/page-with-artwork.png +0 -0
- data/assets/img/base/page-with-artwork.svg +368 -0
- data/assets/img/base/page-with-backtotop.png +0 -0
- data/assets/img/base/page-with-backtotop.svg +275 -0
- data/assets/img/base/page-with-bits.png +0 -0
- data/assets/img/base/page-with-bits.svg +311 -0
- data/assets/img/base/page-with-breadcrumb.png +0 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.png +0 -0
- data/assets/img/base/page-with-breakingnews.svg +903 -0
- data/assets/img/base/page-with-color.png +0 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.png +0 -0
- data/assets/img/base/page-with-copyright.svg +233 -0
- data/assets/img/base/page-with-copyvalue.png +0 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.png +0 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.png +0 -0
- data/assets/img/base/page-with-event.svg +522 -0
- data/assets/img/base/page-with-fontawesome.png +0 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-heading.png +0 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.png +0 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-link.png +0 -0
- data/assets/img/base/page-with-link.svg +395 -0
- data/assets/img/base/page-with-locales.png +0 -0
- data/assets/img/base/page-with-locales.svg +724 -0
- data/assets/img/base/page-with-navbar.png +0 -0
- data/assets/img/base/page-with-navbar.svg +438 -0
- data/assets/img/base/page-with-navindex.png +0 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.png +0 -0
- data/assets/img/base/page-with-ogp.svg +368 -0
- data/assets/img/base/page-with-project.png +0 -0
- data/assets/img/base/page-with-project.svg +822 -0
- data/assets/img/base/page-with-shortcut.png +0 -0
- data/assets/img/base/page-with-shortcut.svg +233 -0
- data/assets/img/base/page-with-social.png +0 -0
- data/assets/img/base/page-with-social.svg +233 -0
- data/assets/img/base/page-with-title.png +0 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.png +0 -0
- data/assets/img/base/page-with-toc.svg +438 -0
- data/assets/img/base/screenshot-example-1200x600.png +0 -0
- data/assets/img/base/screenshot-example-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/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
- data/assets/img/sponsors/sponsor-logo-1.png +0 -0
- data/assets/img/sponsors/sponsor-logo-2.png +0 -0
- data/assets/img/sponsors/sponsor-logo-3.png +0 -0
- data/assets/img/sponsors/sponsor-logo-4.png +0 -0
- data/assets/img/sponsors/sponsor-logo-5.png +0 -0
- data/assets/img/sponsors/sponsor-logo-6.png +0 -0
- data/assets/img/sponsors/sponsor-logo-7.png +0 -0
- data/assets/img/sponsors/sponsor-logo-8.png +0 -0
- data/assets/img/sponsors/sponsors-logo.svg +563 -0
- data/assets/js/base/backtotop.js +23 -0
- data/assets/js/base/copyvalue.js +251 -0
- data/assets/js/base/datatable.js +55 -0
- data/assets/js/base/highlight.js +6 -0
- data/assets/js/base/init-tooltips.js +5 -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
- metadata +314 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e277162bcff7fef4019b4dfc95f7948d1e2b73451e99020373df53f6896b278
|
|
4
|
+
data.tar.gz: 25e64b4f95f3e17b18d86478bf92e8d8df4b09c1c7ccbd63c6ba183fe3877497
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 987543de88167a9b80706bb09e8b3f089d1ecc625f6a4d17f7be53a0342a6166f14c0cb4c8ab21091aa6ba9be050e99595f488ec8f747c14af5785c8fdb1b7a1
|
|
7
|
+
data.tar.gz: 2eb37a87c50c65c30ff5d39f897b09b4bd12bb6be997cc158a211bc24ddbd3e638ad64bb59df9c9dfca93aadedc0a7da97e40fb94e99fd460408c42c45eae700
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Announcement Component Configuration
|
|
3
|
+
description: >-
|
|
4
|
+
Schema for configuring the 'Announcement' presentation component. This component
|
|
5
|
+
is typically used to display important, user-facing messages.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
with_announcement:
|
|
9
|
+
type: boolean
|
|
10
|
+
default: false
|
|
11
|
+
description: >-
|
|
12
|
+
Enables or disables the Announcement component. Set to `true` to
|
|
13
|
+
display announcements; set to `false` (default) to hide them. When enabled,
|
|
14
|
+
the related `with_announcement_data` property must be populated with content.
|
|
15
|
+
with_announcement_data:
|
|
16
|
+
type: array
|
|
17
|
+
default: []
|
|
18
|
+
description: >-
|
|
19
|
+
The configuration data for the announcement component. This property
|
|
20
|
+
accepts a list of announcement objects to be presented when
|
|
21
|
+
`with_announcement` is set to `true`. If multiple announcements are
|
|
22
|
+
provided, they will be displayed in the order they appear in the list.
|
|
23
|
+
items:
|
|
24
|
+
type: object
|
|
25
|
+
properties:
|
|
26
|
+
content:
|
|
27
|
+
type: string
|
|
28
|
+
default: ""
|
|
29
|
+
description: The main text content of the announcement. This field is required.
|
|
30
|
+
color:
|
|
31
|
+
type: string
|
|
32
|
+
default: "primary"
|
|
33
|
+
description: >-
|
|
34
|
+
Defines the visual style/severity of the announcement. Defaults to
|
|
35
|
+
`primary`. Available options are any supported [color](../color/)
|
|
36
|
+
class (e.g., `secondary`, `warning`, `success`, `danger`,
|
|
37
|
+
`centos-purple-800`.
|
|
38
|
+
icon:
|
|
39
|
+
type: string
|
|
40
|
+
default: ""
|
|
41
|
+
description: >-
|
|
42
|
+
The Font Awesome icon class (e.g., `fa-solid fa-bell`) to display
|
|
43
|
+
on the left side of the announcement. Only [freely distributed Font
|
|
44
|
+
Awesome icons](https://fontawesome.com/search?ic=free-collection) are supported. If no value is provided, the default
|
|
45
|
+
icon `fa-solid fa-bullhorn` will be used by the rendering engine.
|
|
46
|
+
required:
|
|
47
|
+
- content
|
|
48
|
+
additionalProperties: false
|
|
49
|
+
additionalProperties: false
|
|
50
|
+
# test
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
title: Artwork Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Defines the schema for configuring the presentation and content of the Artwork
|
|
4
|
+
component, typically used to display a decorative or informational image.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_artwork:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: true
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the Artwork component. Set to `true` (default) to
|
|
12
|
+
display the artwork; set to `false` to hide it. When enabled,
|
|
13
|
+
the related `with_artwork_data` property is used for configuration.
|
|
14
|
+
with_artwork_data:
|
|
15
|
+
type: object
|
|
16
|
+
description: >-
|
|
17
|
+
The configuration dictionary for the Artwork component. This object contains
|
|
18
|
+
all necessary settings, such as image source, container classes, and alt text.
|
|
19
|
+
properties:
|
|
20
|
+
class:
|
|
21
|
+
type: string
|
|
22
|
+
default: col
|
|
23
|
+
description: >-
|
|
24
|
+
Custom CSS class(es) to apply to the Artwork component's container element.
|
|
25
|
+
The default value `col` suggests a standard column layout.
|
|
26
|
+
image:
|
|
27
|
+
type: string
|
|
28
|
+
default: /assets/img/centos-motif.png
|
|
29
|
+
description: >-
|
|
30
|
+
The URL path to the image file. This supports both relative paths (e.g., `/assets/img/your-image.jpg`) and absolute URLs.
|
|
31
|
+
image_class:
|
|
32
|
+
type: string
|
|
33
|
+
default: img-fluid rounded bg-dark
|
|
34
|
+
description: >-
|
|
35
|
+
Custom CSS class(es) to apply directly to the image element (e.g.,
|
|
36
|
+
`<img>`). The default classes apply common styling like responsiveness,
|
|
37
|
+
rounded corners, and a dark background.
|
|
38
|
+
alt:
|
|
39
|
+
type: string
|
|
40
|
+
default: centos-motif.png
|
|
41
|
+
description: >-
|
|
42
|
+
The alternative text for the image, crucial for accessibility and
|
|
43
|
+
SEO. This text is displayed when the image cannot be loaded.
|
|
44
|
+
required:
|
|
45
|
+
- image # Added a required field constraint for best practice
|
|
46
|
+
additionalProperties: false
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
title: Back to Top Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the 'Back to Top' scroll-assist component (addon). This
|
|
4
|
+
allows users to quickly return to the top of a long page.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_backtotop:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: true
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the Back to Top component. Set to `true` (default)
|
|
12
|
+
to activate the scroll button; set to `false` to hide it. Configuration is
|
|
13
|
+
managed via the `with_backtotop_data` property when enabled.
|
|
14
|
+
with_backtotop_data:
|
|
15
|
+
type: object
|
|
16
|
+
description: >-
|
|
17
|
+
The configuration object for the Back to Top addon. This dictionary
|
|
18
|
+
contains settings for distribution and visual customization.
|
|
19
|
+
properties:
|
|
20
|
+
cdn:
|
|
21
|
+
type: string
|
|
22
|
+
default: "https://unpkg.com"
|
|
23
|
+
description: >-
|
|
24
|
+
The Content Delivery Network (CDN) base URL from which the Back
|
|
25
|
+
to Top addon's distribution files are sourced (e.g., `https://unpkg.com`).
|
|
26
|
+
version:
|
|
27
|
+
type: string
|
|
28
|
+
default: "7.2.1"
|
|
29
|
+
description: >-
|
|
30
|
+
Specifies the version of the Back to Top addon to load from the CDN
|
|
31
|
+
(e.g., `7.2.1`).
|
|
32
|
+
diameter:
|
|
33
|
+
type: string
|
|
34
|
+
default: "56"
|
|
35
|
+
description: >-
|
|
36
|
+
The diameter (size) of the circular Back to Top button, specified
|
|
37
|
+
as a string (e.g., `56` which likely represents pixels).
|
|
38
|
+
background_color:
|
|
39
|
+
type: string
|
|
40
|
+
default: "#A54C93"
|
|
41
|
+
description: >-
|
|
42
|
+
The background color of the Back to Top button. Value must be a
|
|
43
|
+
valid CSS color string, typically a hexadecimal code (e.g., `#A54C93`).
|
|
44
|
+
text_color:
|
|
45
|
+
type: string
|
|
46
|
+
default: "#ffffff"
|
|
47
|
+
description: >-
|
|
48
|
+
The color of the icon/text displayed inside the Back to Top button.
|
|
49
|
+
Value must be a valid CSS color string (e.g., `#ffffff`).
|
|
50
|
+
required:
|
|
51
|
+
- cdn
|
|
52
|
+
- version # Added required fields for best practice
|
|
53
|
+
additionalProperties: false
|
data/_data/base/bits.yml
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
---
|
|
2
|
+
- name: Upstream card example 1
|
|
3
|
+
class: bg-primary bg-opacity-10 border border-primary-subtle mb-3 p-5 rounded
|
|
4
|
+
type: upstream
|
|
5
|
+
image: centos-symbol.svg
|
|
6
|
+
image_style: "height: 92px"
|
|
7
|
+
description: |
|
|
8
|
+
Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
|
|
9
|
+
convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
|
|
10
|
+
conubia consectetur.
|
|
11
|
+
screenshot: base/screenshot-example-1600x1200.webp
|
|
12
|
+
finale: "Derivatives:"
|
|
13
|
+
actions:
|
|
14
|
+
- name: Action 1
|
|
15
|
+
icon: fa-solid fa-arrow-right
|
|
16
|
+
icon_position: end
|
|
17
|
+
link: "#"
|
|
18
|
+
- name: Action 2
|
|
19
|
+
icon: fa-solid fa-arrow-right
|
|
20
|
+
icon_position: start
|
|
21
|
+
link: "#"
|
|
22
|
+
- name: Action 3
|
|
23
|
+
icon: fa-solid fa-circle-info
|
|
24
|
+
link: "#"
|
|
25
|
+
- name: Action 4
|
|
26
|
+
link: "#"
|
|
27
|
+
index_page_name: See all
|
|
28
|
+
index_page_link: "#"
|
|
29
|
+
relationship:
|
|
30
|
+
- Downstream example 1-1
|
|
31
|
+
- Downstream example 1-2
|
|
32
|
+
- Downstream example 1-3
|
|
33
|
+
- Downstream example 1-4
|
|
34
|
+
- name: Downstream example 1-1
|
|
35
|
+
type: downstream
|
|
36
|
+
description: |
|
|
37
|
+
Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
|
|
38
|
+
convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
|
|
39
|
+
screenshot: base/screenshot-example-1600x1200.webp
|
|
40
|
+
image: centos-symbol.svg
|
|
41
|
+
actions:
|
|
42
|
+
- name: Action 1
|
|
43
|
+
icon: fa-solid fa-arrow-right
|
|
44
|
+
link: "#"
|
|
45
|
+
icon_position: end
|
|
46
|
+
- name: Action 2
|
|
47
|
+
icon: fa-solid fa-arrow-right
|
|
48
|
+
icon_position: start
|
|
49
|
+
link: "#"
|
|
50
|
+
- name: Action 3
|
|
51
|
+
icon: fa-solid fa-arrow-right
|
|
52
|
+
link: "#"
|
|
53
|
+
- name: Action 4
|
|
54
|
+
link: "#"
|
|
55
|
+
relationship:
|
|
56
|
+
- Upstream card example 1
|
|
57
|
+
- name: Downstream example 1-2
|
|
58
|
+
icon: fa-solid fa-arrow-right
|
|
59
|
+
screenshot: base/screenshot-example-1600x1200.webp
|
|
60
|
+
type: downstream
|
|
61
|
+
description: |
|
|
62
|
+
Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
|
|
63
|
+
convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
|
|
64
|
+
relationship:
|
|
65
|
+
- Upstream card example 1
|
|
66
|
+
actions:
|
|
67
|
+
- name: Action 1
|
|
68
|
+
icon: fa-solid fa-arrow-right
|
|
69
|
+
icon_position: end
|
|
70
|
+
link: "#"
|
|
71
|
+
- name: Downstream example 1-3
|
|
72
|
+
screenshot: base/screenshot-example-1600x1200.webp
|
|
73
|
+
type: downstream
|
|
74
|
+
description: |
|
|
75
|
+
Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
|
|
76
|
+
convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
|
|
77
|
+
relationship:
|
|
78
|
+
- Upstream card example 1
|
|
79
|
+
actions:
|
|
80
|
+
- name: Action 1
|
|
81
|
+
icon: fa-solid fa-arrow-right
|
|
82
|
+
icon_position: end
|
|
83
|
+
link: "#"
|
|
84
|
+
- name: Downstream example 1-4
|
|
85
|
+
screenshot: base/screenshot-example-1600x1200.webp
|
|
86
|
+
type: downstream
|
|
87
|
+
description: |
|
|
88
|
+
Lorem ipsum odor amet, consectetuer adipiscing elit. Varius imperdiet
|
|
89
|
+
convallis at efficitur in eros. Sagittis morbi scelerisque faucibus
|
|
90
|
+
relationship:
|
|
91
|
+
- Upstream card example 1
|
|
92
|
+
actions:
|
|
93
|
+
- name: Action 1
|
|
94
|
+
icon: fa-solid fa-arrow-right
|
|
95
|
+
icon_position: start
|
|
96
|
+
link: "#"
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
title: Bits Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the 'Bits' presentation component. This component is
|
|
4
|
+
designed to showcase related projects or derivatives, typically in an
|
|
5
|
+
Upstream/Downstream relationship.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
with_bits:
|
|
9
|
+
type: boolean
|
|
10
|
+
default: false
|
|
11
|
+
description: >-
|
|
12
|
+
Enables or disables the Bits component rendering. Set to `true` to display
|
|
13
|
+
the component; set to `false` (default) to skip rendering.
|
|
14
|
+
with_bits_data:
|
|
15
|
+
type: array
|
|
16
|
+
default: []
|
|
17
|
+
description: >-
|
|
18
|
+
An array of objects defining the custom data structure for all Bits. When
|
|
19
|
+
defined, this data overrides any values set in the component's default
|
|
20
|
+
configuration file.
|
|
21
|
+
items:
|
|
22
|
+
type: object
|
|
23
|
+
properties:
|
|
24
|
+
name:
|
|
25
|
+
type: string
|
|
26
|
+
default: ""
|
|
27
|
+
description: >-
|
|
28
|
+
The unique identifying name of the Bit (e.g., `CentOS-Stream`). This
|
|
29
|
+
value is often used to generate HTML element IDs and must contain
|
|
30
|
+
only alphanumeric characters, dashes (-), and underscores (_).
|
|
31
|
+
pattern: "^[a-zA-Z0-9_-]+$"
|
|
32
|
+
name_class:
|
|
33
|
+
type: string
|
|
34
|
+
default: ""
|
|
35
|
+
description: Custom Bootstrap classes applied to the HTML element containing the Bit's `name`.
|
|
36
|
+
icon:
|
|
37
|
+
type: string
|
|
38
|
+
default: ""
|
|
39
|
+
description: >-
|
|
40
|
+
The Font Awesome icon class to represent the Bit. Only freely
|
|
41
|
+
distributed Font Awesome icons are supported
|
|
42
|
+
(see: https://fontawesome.com/v7/search?ic=free&o=r).
|
|
43
|
+
icon_class:
|
|
44
|
+
type: string
|
|
45
|
+
default: ""
|
|
46
|
+
description: Custom Bootstrap classes applied to the Bit's `icon` element.
|
|
47
|
+
image:
|
|
48
|
+
type: string
|
|
49
|
+
default: ""
|
|
50
|
+
description: >-
|
|
51
|
+
The Bit's branding image file path, relative to the `/assets/img/`
|
|
52
|
+
directory (e.g., `logo.svg` for a file at `/assets/img/logo.svg`).
|
|
53
|
+
image_class:
|
|
54
|
+
type: string
|
|
55
|
+
default: ""
|
|
56
|
+
description: Custom Bootstrap classes applied directly to the Bit's branding `image` element.
|
|
57
|
+
image_style:
|
|
58
|
+
type: string
|
|
59
|
+
default: ""
|
|
60
|
+
description: >-
|
|
61
|
+
Custom CSS styles (e.g., `height: 100px;`) applied inline to the
|
|
62
|
+
Bit's branding `image` element to control presentation (e.g., height).
|
|
63
|
+
screenshot:
|
|
64
|
+
type: string
|
|
65
|
+
description: >-
|
|
66
|
+
The path to the main visual representation or screenshot of the Bit,
|
|
67
|
+
relative to the `/assets/img/` directory. The recommended image size is
|
|
68
|
+
1600x1200 pixels, but the ratio can be adjusted via height/ratio to
|
|
69
|
+
control vertical spacing between description and actions.
|
|
70
|
+
format: uri-reference
|
|
71
|
+
screenshot_class:
|
|
72
|
+
type: string
|
|
73
|
+
default: ""
|
|
74
|
+
description: Custom Bootstrap classes applied to the `screenshot` image element.
|
|
75
|
+
screenshot_style:
|
|
76
|
+
type: string
|
|
77
|
+
description: Custom CSS styles applied inline to the `screenshot` image element.
|
|
78
|
+
screenshot_alt:
|
|
79
|
+
type: string
|
|
80
|
+
default: ""
|
|
81
|
+
description: The alternative text for the `screenshot` image, for accessibility.
|
|
82
|
+
description:
|
|
83
|
+
type: string
|
|
84
|
+
description: A concise description of the Bit, typically one or two sentences long.
|
|
85
|
+
description_class:
|
|
86
|
+
type: string
|
|
87
|
+
default: ""
|
|
88
|
+
description: Custom Bootstrap classes applied to the Bit's `description` element.
|
|
89
|
+
type:
|
|
90
|
+
type: string
|
|
91
|
+
description: >-
|
|
92
|
+
Defines the role of the Bit in the component layout. `upstream` Bits
|
|
93
|
+
are main projects/products. `downstream` Bits are derivatives or
|
|
94
|
+
related projects, and must link back to an Upstream Bit via the
|
|
95
|
+
`relationship` property.
|
|
96
|
+
enum:
|
|
97
|
+
- upstream
|
|
98
|
+
- downstream
|
|
99
|
+
relationship:
|
|
100
|
+
type: array
|
|
101
|
+
description: >-
|
|
102
|
+
A list of Bit names that define the connection between Bits. For a
|
|
103
|
+
`downstream` Bit, this list should contain the `name` of its Upstream parent. For an `upstream` Bit, this list specifies its Downstream children. Direct relationships between Bits of the same type are not supported.
|
|
104
|
+
items:
|
|
105
|
+
type: string
|
|
106
|
+
actions:
|
|
107
|
+
type: array
|
|
108
|
+
default: []
|
|
109
|
+
description: >-
|
|
110
|
+
A list of configuration objects for Call-to-Action (CTA) buttons associated with the Bit presentation. Each item configures a link button
|
|
111
|
+
using the `base/link.html.liquid` template structure.
|
|
112
|
+
items:
|
|
113
|
+
type: object
|
|
114
|
+
description: Configuration object for a single action button (link). Refer to the `link` component documentation for specific properties.
|
|
115
|
+
additionalProperties: true # Changed to true as properties are defined externally
|
|
116
|
+
actions_class:
|
|
117
|
+
type: string
|
|
118
|
+
description: Custom Bootstrap classes applied to the container holding the list of `actions` buttons.
|
|
119
|
+
preamble:
|
|
120
|
+
type: string
|
|
121
|
+
default: "Bits produced upstream:"
|
|
122
|
+
description: >-
|
|
123
|
+
A descriptive message displayed before the Upstream Bits section.
|
|
124
|
+
Only relevant when `type` is set to `upstream`.
|
|
125
|
+
preamble_class:
|
|
126
|
+
type: string
|
|
127
|
+
default: mb-3
|
|
128
|
+
description: Custom Bootstrap classes applied to the `preamble` message element (default adds margin-bottom).
|
|
129
|
+
finale:
|
|
130
|
+
type: string
|
|
131
|
+
default: "Bits produced downstream:"
|
|
132
|
+
description: >-
|
|
133
|
+
A descriptive message displayed before the Downstream Bits section.
|
|
134
|
+
Only relevant when `type` is set to `upstream`.
|
|
135
|
+
finale_class:
|
|
136
|
+
type: string
|
|
137
|
+
default: mb-3
|
|
138
|
+
description: Custom Bootstrap classes applied to the `finale` message element (default adds margin-bottom).
|
|
139
|
+
class:
|
|
140
|
+
type: string
|
|
141
|
+
default: ""
|
|
142
|
+
description: >-
|
|
143
|
+
Custom Bootstrap classes applied to the main container of the
|
|
144
|
+
Upstream Bit layout. Use this to control padding, background, and element
|
|
145
|
+
alignment within the card, often in combination with the `color` property.
|
|
146
|
+
card_class:
|
|
147
|
+
type: string
|
|
148
|
+
default: "flex-column align-items-center text-center mb-3"
|
|
149
|
+
description: Custom Bootstrap classes applied directly to the card element inside the Upstream Bit container.
|
|
150
|
+
color:
|
|
151
|
+
type: string
|
|
152
|
+
default: primary
|
|
153
|
+
description: >-
|
|
154
|
+
The presentation color used for styling the Bit's elements (e.g., links,
|
|
155
|
+
borders). Possible values are any valid Bootstrap color utility classes (e.g., `primary`, `success`, `warning`).
|
|
156
|
+
enum:
|
|
157
|
+
- primary
|
|
158
|
+
- secondary
|
|
159
|
+
- warning
|
|
160
|
+
- success
|
|
161
|
+
- danger
|
|
162
|
+
- info
|
|
163
|
+
- light
|
|
164
|
+
- dark
|
|
165
|
+
index_page_name:
|
|
166
|
+
type: string
|
|
167
|
+
default: ""
|
|
168
|
+
description: The visible link text (e.g., `See all derivatives`) used to connect to the Downstream index page.
|
|
169
|
+
index_page_url:
|
|
170
|
+
type: string
|
|
171
|
+
description: >-
|
|
172
|
+
The URL path to the index page listing all Downstream resources related
|
|
173
|
+
to this Upstream Bit. For example, if the Upstream is at `/my-project/`,
|
|
174
|
+
this might be `/my-project/derivatives/`.
|
|
175
|
+
format: uri-reference
|
|
176
|
+
required:
|
|
177
|
+
- screenshot
|
|
178
|
+
- description
|
|
179
|
+
- type
|
|
180
|
+
- color
|
|
181
|
+
- name # Added name as it is critical for relationship
|
|
182
|
+
additionalProperties: false
|
|
183
|
+
additionalProperties: false
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
title: Breadcrumb Navigation Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the breadcrumb navigation component within the Jekyll theme.
|
|
4
|
+
Breadcrumbs provide a secondary navigation aid showing the user's location
|
|
5
|
+
within the site hierarchy.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
with_breadcrumb:
|
|
9
|
+
type: boolean
|
|
10
|
+
default: true
|
|
11
|
+
description: >-
|
|
12
|
+
Enables or disables the rendering of the breadcrumb navigation component.
|
|
13
|
+
Set to `true` (default) to display the breadcrumbs; set to `false` to hide them.
|
|
14
|
+
additionalProperties: false
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
title: Breaking News Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the 'Breaking News' display component within the Jekyll theme.
|
|
4
|
+
This component is typically used to draw attention to urgent or critical updates.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_breakingnews:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: false
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the Breaking News component. Set to `true` to
|
|
12
|
+
display the messages; set to `false` (default) to hide them. When enabled,
|
|
13
|
+
the `with_breakingnews_data` property must be provided.
|
|
14
|
+
with_breakingnews_data:
|
|
15
|
+
type: array
|
|
16
|
+
default: [] # Corrected: Moved default to array level and set to []
|
|
17
|
+
description: >-
|
|
18
|
+
An array of objects containing the configuration and messages for the
|
|
19
|
+
breaking news display. If multiple items are provided, they will be
|
|
20
|
+
presented in the order they appear in this list.
|
|
21
|
+
items:
|
|
22
|
+
type: object
|
|
23
|
+
properties:
|
|
24
|
+
content:
|
|
25
|
+
type: string
|
|
26
|
+
description: The main text content of the breaking news message. This field is required.
|
|
27
|
+
color:
|
|
28
|
+
type: string
|
|
29
|
+
default: primary
|
|
30
|
+
description: >-
|
|
31
|
+
Defines the visual style/severity of the message. Defaults to
|
|
32
|
+
`primary`. Available options are listed in the `enum`.
|
|
33
|
+
enum:
|
|
34
|
+
- primary
|
|
35
|
+
- secondary
|
|
36
|
+
- info
|
|
37
|
+
- warning
|
|
38
|
+
- danger
|
|
39
|
+
- success
|
|
40
|
+
- dark
|
|
41
|
+
- light
|
|
42
|
+
icon:
|
|
43
|
+
type: string
|
|
44
|
+
default: fa-solid fa-bullhorn
|
|
45
|
+
description: >-
|
|
46
|
+
The Font Awesome icon class displayed on the left side of the
|
|
47
|
+
message (e.g., `fa-solid fa-bell`). The default is `fa-solid fa-bullhorn`.
|
|
48
|
+
Note that the [Font Awesome theme addon](../../addons/fontawesome/) must be enabled for these icons to render.
|
|
49
|
+
link:
|
|
50
|
+
type: string
|
|
51
|
+
format: uri
|
|
52
|
+
description: >-
|
|
53
|
+
The URL pointing to a page or resource with detailed information
|
|
54
|
+
about the breaking news message.
|
|
55
|
+
required:
|
|
56
|
+
- content
|
|
57
|
+
additionalProperties: false
|
|
58
|
+
required:
|
|
59
|
+
- with_breakingnews
|