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,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
#
|
|
3
|
+
# site.data.base.social - Provides social networks information.
|
|
4
|
+
#
|
|
5
|
+
media:
|
|
6
|
+
- name: YouTube
|
|
7
|
+
icon: "fa-brands fa-youtube"
|
|
8
|
+
link: "https://youtube.com/TheCentOSProject"
|
|
9
|
+
- name: Mastodon
|
|
10
|
+
icon: "fa-brands fa-mastodon"
|
|
11
|
+
link: "https://fosstodon.org/@centos"
|
|
12
|
+
- name: Facebook
|
|
13
|
+
icon: "fa-brands fa-facebook-f"
|
|
14
|
+
link: "https://www.facebook.com/CentOSProject"
|
|
15
|
+
- name: LinkedIn
|
|
16
|
+
icon: "fa-brands fa-linkedin"
|
|
17
|
+
link: "https://www.linkedin.com/company/centos-project/"
|
|
18
|
+
- name: X
|
|
19
|
+
icon: "fa-brands fa-x-twitter"
|
|
20
|
+
link: "https://x.com/centos"
|
|
21
|
+
- name: Discourse
|
|
22
|
+
icon: "fa-brands fa-discourse"
|
|
23
|
+
link: "https://discussion.fedoraproject.org/c/neighbors/centos/"
|
|
24
|
+
- name: Reddit
|
|
25
|
+
icon: "fa-brands fa-reddit"
|
|
26
|
+
link: "https://www.reddit.com/r/CentOS/"
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
title: Social media icons component configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring and defining the list of social media links
|
|
4
|
+
(icons) to be rendered, typically in the footer or navigation area.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_social:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: false
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the rendering of the social media icons component.
|
|
12
|
+
Set to `true` to display the icons; set to `false` (default) to hide them.
|
|
13
|
+
with_social_data:
|
|
14
|
+
type: object
|
|
15
|
+
default: {}
|
|
16
|
+
description: Configuration object for the social media component.
|
|
17
|
+
properties:
|
|
18
|
+
preamble:
|
|
19
|
+
type: string
|
|
20
|
+
default: "Follow us:"
|
|
21
|
+
description: "The social media premable. This is, a text introducing the social media buttons."
|
|
22
|
+
preamble_class:
|
|
23
|
+
type: string
|
|
24
|
+
default: "mb-2"
|
|
25
|
+
description: "The social media premable customization classes."
|
|
26
|
+
media:
|
|
27
|
+
type: array
|
|
28
|
+
default: []
|
|
29
|
+
description: A list of objects, where each object defines a single social media link/icon.
|
|
30
|
+
items:
|
|
31
|
+
type: object
|
|
32
|
+
properties:
|
|
33
|
+
name:
|
|
34
|
+
type: string
|
|
35
|
+
description: The name of the social network (e.g., `YouTube`, `LinkedIn`). Used for alt text and labels.
|
|
36
|
+
icon:
|
|
37
|
+
type: string
|
|
38
|
+
description: >-
|
|
39
|
+
The Font Awesome icon class representing the social network
|
|
40
|
+
brand (e.g., `fa-brands fa-x-twitter`).
|
|
41
|
+
link:
|
|
42
|
+
type: string
|
|
43
|
+
format: uri
|
|
44
|
+
description: The absolute URL to the project's profile on this social network (e.g., `https://www.youtube.com/`).
|
|
45
|
+
required:
|
|
46
|
+
- name
|
|
47
|
+
- icon
|
|
48
|
+
- link
|
|
49
|
+
additionalProperties: false
|
|
50
|
+
class:
|
|
51
|
+
type: string
|
|
52
|
+
default: ""
|
|
53
|
+
description: Custom CSS classes applied to the container element wrapping the social media icons list.
|
|
54
|
+
required:
|
|
55
|
+
- media
|
|
56
|
+
additionalProperties: false
|
|
57
|
+
additionalProperties: false
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Sponsors
|
|
3
|
+
icon: "fa-solid fa-hand-holding-heart"
|
|
4
|
+
image_base_path: "/assets/img/base/"
|
|
5
|
+
message: |
|
|
6
|
+
CentOS would not be possible without the support of our sponsors. We would
|
|
7
|
+
like to thank the following product/service for being a CentOS sponsor. If
|
|
8
|
+
you value our work, please consider [becoming a sponsor!](/sponsors)
|
|
9
|
+
members:
|
|
10
|
+
- name: sponsor-1
|
|
11
|
+
country: usa
|
|
12
|
+
image: example-sponsors-logo-1.png
|
|
13
|
+
url: https://www.example.com/sponsor-1
|
|
14
|
+
- name: sponsor-2
|
|
15
|
+
country: usa
|
|
16
|
+
image: example-sponsors-logo-2.png
|
|
17
|
+
url: https://www.example.com/sponsor-2
|
|
18
|
+
- name: sponsor-3
|
|
19
|
+
country: usa
|
|
20
|
+
image: example-sponsors-logo-3.png
|
|
21
|
+
url: https://www.example.com/sponsor-3
|
|
22
|
+
- name: sponsor-4
|
|
23
|
+
country: usa
|
|
24
|
+
image: example-sponsors-logo-4.png
|
|
25
|
+
url: https://www.example.com/sponsor-4
|
|
26
|
+
- name: sponsor-5
|
|
27
|
+
country: usa
|
|
28
|
+
image: example-sponsors-logo-5.png
|
|
29
|
+
url: https://www.example.com/sponsor-5
|
|
30
|
+
- name: sponsor-6
|
|
31
|
+
country: usa
|
|
32
|
+
image: example-sponsors-logo-6.png
|
|
33
|
+
url: https://www.example.com/sponsor-6
|
|
34
|
+
- name: sponsor-7
|
|
35
|
+
country: usa
|
|
36
|
+
image: example-sponsors-logo-7.png
|
|
37
|
+
url: https://www.example.com/sponsor-7
|
|
38
|
+
- name: sponsor-8
|
|
39
|
+
country: usa
|
|
40
|
+
image: example-sponsors-logo-8.png
|
|
41
|
+
url: https://www.example.com/sponsor-8
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
title: Sponsors carousel component configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the sponsors carousel, which displays sponsor logos
|
|
4
|
+
in a rotating carousel, typically rendered in the footer.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_sponsors:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: false
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the rendering of the sponsors carousel component.
|
|
12
|
+
Set to `true` to display the carousel; set to `false` (default) to hide it.
|
|
13
|
+
with_sponsors_data:
|
|
14
|
+
type: object
|
|
15
|
+
default: {}
|
|
16
|
+
description: Configuration object for the sponsors carousel component.
|
|
17
|
+
properties:
|
|
18
|
+
title:
|
|
19
|
+
type: string
|
|
20
|
+
default: "Sponsors"
|
|
21
|
+
description: The heading displayed above the carousel.
|
|
22
|
+
icon:
|
|
23
|
+
type: string
|
|
24
|
+
default: "fa-solid fa-hand-holding-heart"
|
|
25
|
+
description: Font Awesome icon class shown next to the title.
|
|
26
|
+
message:
|
|
27
|
+
type: string
|
|
28
|
+
default: ""
|
|
29
|
+
description: Introductory text rendered above the carousel, supports Markdown.
|
|
30
|
+
image_base_path:
|
|
31
|
+
type: string
|
|
32
|
+
default: "/assets/img/base/"
|
|
33
|
+
description: >-
|
|
34
|
+
Base path prepended to bare logo filenames when building the image `src`
|
|
35
|
+
attribute. Defaults to `/assets/img/base/`. Set to a different path
|
|
36
|
+
(e.g. `/assets/img/sponsors/`) to store logos elsewhere on the site.
|
|
37
|
+
Ignored when `image` is an absolute URL (`http://` or `https://`).
|
|
38
|
+
members:
|
|
39
|
+
type: array
|
|
40
|
+
default: []
|
|
41
|
+
description: List of sponsor entries to display in the carousel.
|
|
42
|
+
items:
|
|
43
|
+
type: object
|
|
44
|
+
properties:
|
|
45
|
+
name:
|
|
46
|
+
type: string
|
|
47
|
+
description: Display name of the sponsor (used as image alt text).
|
|
48
|
+
country:
|
|
49
|
+
type: string
|
|
50
|
+
description: Country of the sponsor (informational).
|
|
51
|
+
image:
|
|
52
|
+
type: string
|
|
53
|
+
description: >-
|
|
54
|
+
Logo image source. Accepts a bare filename (resolved using
|
|
55
|
+
`image_base_path`, e.g. `logo.png`) or an absolute URL
|
|
56
|
+
(e.g. `https://cdn.example.com/logo.png`, used as-is).
|
|
57
|
+
url:
|
|
58
|
+
type: string
|
|
59
|
+
format: uri
|
|
60
|
+
description: URL to the sponsor's website.
|
|
61
|
+
is_active:
|
|
62
|
+
type: boolean
|
|
63
|
+
default: true
|
|
64
|
+
description: Set to `false` to hide this sponsor without removing the entry.
|
|
65
|
+
required:
|
|
66
|
+
- name
|
|
67
|
+
- image
|
|
68
|
+
- url
|
|
69
|
+
additionalProperties: false
|
|
70
|
+
required:
|
|
71
|
+
- members
|
|
72
|
+
additionalProperties: false
|
|
73
|
+
additionalProperties: false
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Semantic page h1 heading component configuration
|
|
3
|
+
description: >-
|
|
4
|
+
Schema for configuring the single, primary H1 heading of a page. This component
|
|
5
|
+
is reserved for the highest-level title, with subsequent headings (H2-H6)
|
|
6
|
+
typically generated automatically by the content renderer (e.g., Jekyll Markdown).
|
|
7
|
+
type: object
|
|
8
|
+
properties:
|
|
9
|
+
with_title:
|
|
10
|
+
type: boolean
|
|
11
|
+
default: true
|
|
12
|
+
description: >-
|
|
13
|
+
Enables or disables the rendering of the primary H1 heading block. Set
|
|
14
|
+
to `true` (default) to display the configured H1; set to `false` to hide it.
|
|
15
|
+
with_title_data:
|
|
16
|
+
type: object
|
|
17
|
+
default: {}
|
|
18
|
+
description: Configuration object defining the text and presentation of the page's primary H1 heading.
|
|
19
|
+
properties:
|
|
20
|
+
class:
|
|
21
|
+
type: string
|
|
22
|
+
default: "row mt-4"
|
|
23
|
+
description: >-
|
|
24
|
+
One or more CSS classes applied to title container element for custom styling,
|
|
25
|
+
alignment, or spacing.
|
|
26
|
+
title:
|
|
27
|
+
type: string
|
|
28
|
+
default: "`page.title`"
|
|
29
|
+
description: The main, primary title text to be displayed. This content is always wrapped in the <h1> HTML tag.
|
|
30
|
+
title_class:
|
|
31
|
+
type: string
|
|
32
|
+
default: "h1"
|
|
33
|
+
description: >-
|
|
34
|
+
One or more CSS classes applied to the title element for custom
|
|
35
|
+
styling, alignment, or spacing (e.g., `text-center`, `display-1`).
|
|
36
|
+
title_lead:
|
|
37
|
+
type: string
|
|
38
|
+
default: "`page.title_lead`"
|
|
39
|
+
description: An optional lead text or introductory paragraph displayed immediately beneath the H1, providing context or summary.
|
|
40
|
+
title_lead_class:
|
|
41
|
+
type: string
|
|
42
|
+
default: "lead"
|
|
43
|
+
description: >-
|
|
44
|
+
One or more CSS classes applied to the title_lead element for custom
|
|
45
|
+
styling, alignment, or spacing.
|
|
46
|
+
required:
|
|
47
|
+
- title
|
|
48
|
+
additionalProperties: false
|
|
49
|
+
additionalProperties: false
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
title: Table of Contents Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the table of contents (TOC) component that automatically
|
|
4
|
+
generates a navigable list of headings from page content. Uses Highlight.js
|
|
5
|
+
jekyll-toc library to dynamically create links to headings within the page.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
with_toc:
|
|
9
|
+
type: boolean
|
|
10
|
+
default: true
|
|
11
|
+
description: >-
|
|
12
|
+
Enables or disables the rendering of the table of contents component.
|
|
13
|
+
Set to `true` (default) to display the TOC; set to `false` to hide it.
|
|
14
|
+
with_toc_data:
|
|
15
|
+
type: object
|
|
16
|
+
default: {}
|
|
17
|
+
description: >-
|
|
18
|
+
Configuration object defining the presentation and behavior of the table
|
|
19
|
+
of contents, including styling and header level filters.
|
|
20
|
+
properties:
|
|
21
|
+
class:
|
|
22
|
+
type: string
|
|
23
|
+
default: ""
|
|
24
|
+
description: >-
|
|
25
|
+
CSS class(es) assigned to the TOC root list element for custom styling.
|
|
26
|
+
Multiple classes can be specified separated by spaces (e.g., `my-custom-class another-class`).
|
|
27
|
+
id:
|
|
28
|
+
type: string
|
|
29
|
+
default: ""
|
|
30
|
+
description: >-
|
|
31
|
+
The HTML ID attribute assigned to the TOC root list element, used for targeting
|
|
32
|
+
with CSS or JavaScript (e.g., `page-toc`).
|
|
33
|
+
item_class:
|
|
34
|
+
type: string
|
|
35
|
+
default: ""
|
|
36
|
+
description: >-
|
|
37
|
+
CSS class(es) applied to each list item in the TOC. Supports the `%level%`
|
|
38
|
+
placeholder which is replaced with the current heading level (e.g., `my-2.%level%`).
|
|
39
|
+
anchor_class:
|
|
40
|
+
type: string
|
|
41
|
+
default: ""
|
|
42
|
+
description: >-
|
|
43
|
+
CSS class(es) applied to each anchor element (link) in the TOC. Used to style
|
|
44
|
+
the actual clickable links (e.g., `text-decoration-none text-dark`).
|
|
45
|
+
h_min:
|
|
46
|
+
type: integer
|
|
47
|
+
default: 1
|
|
48
|
+
minimum: 1
|
|
49
|
+
maximum: 6
|
|
50
|
+
description: >-
|
|
51
|
+
The minimum heading level to include in the TOC. Headers smaller than this
|
|
52
|
+
level (e.g., h1, h2) will be excluded. Valid range: 1-6.
|
|
53
|
+
h_max:
|
|
54
|
+
type: integer
|
|
55
|
+
default: 6
|
|
56
|
+
minimum: 1
|
|
57
|
+
maximum: 6
|
|
58
|
+
description: >-
|
|
59
|
+
The maximum heading level to include in the TOC. Headers larger than this
|
|
60
|
+
level will be excluded. Valid range: 1-6.
|
|
61
|
+
ordered:
|
|
62
|
+
type: boolean
|
|
63
|
+
default: false
|
|
64
|
+
description: >-
|
|
65
|
+
When set to `true`, the TOC will be rendered as an ordered list (`<ol>`)
|
|
66
|
+
instead of an unordered list (`<ul>`). Default is `false` (unordered list).
|
|
67
|
+
submenu_class:
|
|
68
|
+
type: string
|
|
69
|
+
default: ""
|
|
70
|
+
description: >-
|
|
71
|
+
CSS class(es) applied to each nested list group representing subheadings.
|
|
72
|
+
Supports the `%level%` placeholder which is replaced with the submenu level
|
|
73
|
+
(e.g., `submenu.%level%`).
|
|
74
|
+
base_url:
|
|
75
|
+
type: string
|
|
76
|
+
format: uri
|
|
77
|
+
default: ""
|
|
78
|
+
description: >-
|
|
79
|
+
Base URL prepended to TOC links. Use when the TOC is displayed on a different
|
|
80
|
+
page than the actual content (e.g., `/docs/`).
|
|
81
|
+
sanitize:
|
|
82
|
+
type: boolean
|
|
83
|
+
default: true
|
|
84
|
+
description: >-
|
|
85
|
+
When set to `true`, HTML tags within headings will be stripped from the TOC
|
|
86
|
+
display text. Default is `true` (HTML is stripped). Enabling sanitization
|
|
87
|
+
is particularly important when heading anchors are active, as it prevents
|
|
88
|
+
the anchor icon markup from appearing inside TOC entry links.
|
|
89
|
+
skip_no_ids:
|
|
90
|
+
type: boolean
|
|
91
|
+
default: false
|
|
92
|
+
description: >-
|
|
93
|
+
When set to `true`, headings without an `id` attribute will be excluded from
|
|
94
|
+
the TOC. Default is `false` (all headings are included, with or without IDs).
|
|
95
|
+
flat_toc:
|
|
96
|
+
type: boolean
|
|
97
|
+
default: false
|
|
98
|
+
description: >-
|
|
99
|
+
When set to `true`, the TOC will be rendered as a single-level flat list
|
|
100
|
+
instead of a hierarchical nested structure. Default is `false` (hierarchical).
|
|
101
|
+
baseurl:
|
|
102
|
+
type: string
|
|
103
|
+
deprecated: true
|
|
104
|
+
description: >-
|
|
105
|
+
Deprecated. Use `base_url` instead. When provided, a deprecation warning
|
|
106
|
+
comment is emitted in the HTML output.
|
|
107
|
+
skipNoIDs:
|
|
108
|
+
type: boolean
|
|
109
|
+
deprecated: true
|
|
110
|
+
description: >-
|
|
111
|
+
Deprecated. Use `skip_no_ids` instead. When provided, a deprecation warning
|
|
112
|
+
comment is emitted in the HTML output.
|
|
113
|
+
additionalProperties: false
|
|
114
|
+
additionalProperties: false
|