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,129 @@
|
|
|
1
|
+
title: Navigation Bar Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the main Navigation Bar (Navbar) component, which
|
|
4
|
+
includes branding elements and a list of primary navigation links and menus.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_navbar:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: true
|
|
10
|
+
description: >-
|
|
11
|
+
Controls the visibility of the Navigation Bar component. Set to `true`
|
|
12
|
+
(default) to display the navbar at the top of the page. Set to `false`
|
|
13
|
+
to hide it entirely.
|
|
14
|
+
navbar_height:
|
|
15
|
+
type: integer
|
|
16
|
+
default: 42
|
|
17
|
+
description: >-
|
|
18
|
+
Height in pixels of the fixed-top navbar bar. Used by the breakingnews
|
|
19
|
+
component and the head component to calculate sticky positioning and
|
|
20
|
+
scroll-margin-top offsets. Must match the rendered height of
|
|
21
|
+
`nav.navbar.fixed-top`.
|
|
22
|
+
with_navbar_data:
|
|
23
|
+
type: object
|
|
24
|
+
default: {}
|
|
25
|
+
description: >-
|
|
26
|
+
The page-level configuration object for the Navigation Bar component.
|
|
27
|
+
Settings defined here (in the page's front matter) override any global
|
|
28
|
+
`navbar` data defined in site-wide `_data` files.
|
|
29
|
+
properties:
|
|
30
|
+
class:
|
|
31
|
+
type: string
|
|
32
|
+
default: ""
|
|
33
|
+
description: >-
|
|
34
|
+
One or more Bootstrap CSS classes to apply to the main `<nav>` element
|
|
35
|
+
for custom styling, background colors, or utility purposes.
|
|
36
|
+
brand_image:
|
|
37
|
+
type: string
|
|
38
|
+
default: "centos-whitelogo.svg"
|
|
39
|
+
description: >-
|
|
40
|
+
The filename of the brand logo or image to display. This file is
|
|
41
|
+
expected to be located in your site's image assets directory.
|
|
42
|
+
brand_image_class:
|
|
43
|
+
type: string
|
|
44
|
+
default: ""
|
|
45
|
+
description: >-
|
|
46
|
+
One or more Bootstrap CSS classes to apply directly to the brand
|
|
47
|
+
image element (`<img>`).
|
|
48
|
+
brand_image_height:
|
|
49
|
+
type: string
|
|
50
|
+
default: "32"
|
|
51
|
+
description: >-
|
|
52
|
+
The desired fixed height for the brand image, specified in pixels
|
|
53
|
+
as a string (e.g., `"32"`).
|
|
54
|
+
brand_manifestation:
|
|
55
|
+
type: string
|
|
56
|
+
default: ""
|
|
57
|
+
description: >-
|
|
58
|
+
The text label or name (e.g., project name) that is typically displayed
|
|
59
|
+
alongside the brand image.
|
|
60
|
+
brand_manifestation_class:
|
|
61
|
+
type: string
|
|
62
|
+
default: ""
|
|
63
|
+
description: >-
|
|
64
|
+
One or more Bootstrap CSS classes to apply to the brand manifestation
|
|
65
|
+
text element.
|
|
66
|
+
navitems:
|
|
67
|
+
type: array
|
|
68
|
+
default: []
|
|
69
|
+
description: >-
|
|
70
|
+
A list of objects defining the primary navigation links and dropdown menus.
|
|
71
|
+
Each object represents a top-level item in the navbar.
|
|
72
|
+
items:
|
|
73
|
+
type: object
|
|
74
|
+
properties:
|
|
75
|
+
name:
|
|
76
|
+
type: string
|
|
77
|
+
description: The visible text label of the link or menu title. This is required.
|
|
78
|
+
link:
|
|
79
|
+
type: string
|
|
80
|
+
default: ""
|
|
81
|
+
description: >-
|
|
82
|
+
The target URL for the link. This should be omitted or left
|
|
83
|
+
as `""` if the item is a dropdown toggle (i.e., it contains a `menu` array).
|
|
84
|
+
format: uri-reference
|
|
85
|
+
icon:
|
|
86
|
+
type: string
|
|
87
|
+
default: ""
|
|
88
|
+
description: >-
|
|
89
|
+
An icon class (e.g., from Font Awesome) to display next to the label.
|
|
90
|
+
visible_on:
|
|
91
|
+
type: array
|
|
92
|
+
default: ["navbar"]
|
|
93
|
+
description: >-
|
|
94
|
+
Controls where the item is displayed. Possible values include
|
|
95
|
+
`"navbar"`, `"footer"` (referring to the shortcuts component),
|
|
96
|
+
or both (`["navbar", "footer"]`).
|
|
97
|
+
items:
|
|
98
|
+
type: string
|
|
99
|
+
enum:
|
|
100
|
+
- navbar
|
|
101
|
+
- footer
|
|
102
|
+
menu:
|
|
103
|
+
type: array
|
|
104
|
+
default: []
|
|
105
|
+
description: >-
|
|
106
|
+
If this array contains objects, the item renders as a dropdown menu.
|
|
107
|
+
If it is an empty array (`[]`), the item renders as a simple link.
|
|
108
|
+
items:
|
|
109
|
+
type: object
|
|
110
|
+
description: A single link item within the dropdown menu.
|
|
111
|
+
properties:
|
|
112
|
+
name:
|
|
113
|
+
type: string
|
|
114
|
+
description: The visible text for the link within the dropdown menu.
|
|
115
|
+
link:
|
|
116
|
+
type: string
|
|
117
|
+
description: The target URL for the link within the dropdown menu.
|
|
118
|
+
format: uri-reference
|
|
119
|
+
required:
|
|
120
|
+
- name
|
|
121
|
+
- link # Required for all nested links
|
|
122
|
+
additionalProperties: false
|
|
123
|
+
required:
|
|
124
|
+
- name # Required for all top-level links/menus
|
|
125
|
+
additionalProperties: false
|
|
126
|
+
required:
|
|
127
|
+
- navitems # Navigation is critical for the navbar
|
|
128
|
+
additionalProperties: false
|
|
129
|
+
additionalProperties: false
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
title: Dynamic Content List and Format Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for the Dynamic Content List component, which iterates over a provided
|
|
4
|
+
array of data (e.g., child pages, topics, or component lists) and renders
|
|
5
|
+
them in one of several configurable visual formats.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
data:
|
|
9
|
+
type: array
|
|
10
|
+
default: []
|
|
11
|
+
description: >-
|
|
12
|
+
The list of items to be rendered. Each item in the array is expected to be an
|
|
13
|
+
object containing properties such as `title`, `url`, `title_lead`, and optionally
|
|
14
|
+
`name` or a nested `component` object.
|
|
15
|
+
items:
|
|
16
|
+
type: object
|
|
17
|
+
description: Defines the minimum structure for a single item in the list.
|
|
18
|
+
properties:
|
|
19
|
+
title:
|
|
20
|
+
type: string
|
|
21
|
+
description: The main display title of the item (used as the link text in most formats).
|
|
22
|
+
url:
|
|
23
|
+
type: string
|
|
24
|
+
description: The target URL for the link (using the external Link component).
|
|
25
|
+
format: uri-reference
|
|
26
|
+
title_lead:
|
|
27
|
+
type: string
|
|
28
|
+
description: A short description or lead paragraph displayed alongside the link in most formats.
|
|
29
|
+
name:
|
|
30
|
+
type: string
|
|
31
|
+
description: The original filename or slug of the page, used when `show_page_filename` is `true`.
|
|
32
|
+
component:
|
|
33
|
+
type: object
|
|
34
|
+
description: Nested object required for the `component_table` format, containing component-specific metadata.
|
|
35
|
+
properties:
|
|
36
|
+
name:
|
|
37
|
+
type: string
|
|
38
|
+
description: The programmatic name of the component (e.g., `highlight` or `navbar`), used to check its global status (`with_component_name`).
|
|
39
|
+
required:
|
|
40
|
+
- name
|
|
41
|
+
additionalProperties: false
|
|
42
|
+
required:
|
|
43
|
+
- title
|
|
44
|
+
- url
|
|
45
|
+
additionalProperties: true
|
|
46
|
+
format:
|
|
47
|
+
type: string
|
|
48
|
+
default: "list"
|
|
49
|
+
description: >-
|
|
50
|
+
The visual format used to render the list of data items. Only one value can be selected from the following options: `list` (default),
|
|
51
|
+
`card`, `text`, `table`, or `component_table`.
|
|
52
|
+
enum:
|
|
53
|
+
- list
|
|
54
|
+
- card
|
|
55
|
+
- text
|
|
56
|
+
- table
|
|
57
|
+
- component_table
|
|
58
|
+
show_page_filename:
|
|
59
|
+
type: boolean
|
|
60
|
+
default: false
|
|
61
|
+
description: >-
|
|
62
|
+
When `true`, the list item's display name is derived from the item's filename
|
|
63
|
+
(`item.name`) instead of the page title (`item.title`). This is primarily
|
|
64
|
+
used when generating lists of raw files or slugs.
|
|
65
|
+
required:
|
|
66
|
+
- data
|
|
67
|
+
additionalProperties: false
|
data/_data/base/ogp.yml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
locale: en_US
|
|
3
|
+
og:
|
|
4
|
+
type: website
|
|
5
|
+
title: true
|
|
6
|
+
url: true
|
|
7
|
+
description: true
|
|
8
|
+
logo: /assets/icons/apple-touch-icon.png
|
|
9
|
+
image:
|
|
10
|
+
url: true
|
|
11
|
+
alt: The CentOS Project
|
|
12
|
+
type: image/png
|
|
13
|
+
width: 1200
|
|
14
|
+
height: 630
|
|
15
|
+
twitter:
|
|
16
|
+
card: summary_large_image
|
|
17
|
+
site: "@CentOS"
|
|
18
|
+
creator: "@CentOS"
|
|
19
|
+
title: true
|
|
20
|
+
url: true
|
|
21
|
+
description: true
|
|
22
|
+
image:
|
|
23
|
+
url: true
|
|
24
|
+
alt: The CentOS Project
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
title: Open Graph Protocol (OGP) and Twitter Card Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring site metadata using the Open Graph Protocol (OGP)
|
|
4
|
+
and Twitter Cards, enabling rich previews when pages are shared on social
|
|
5
|
+
media platforms.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
with_ogp:
|
|
9
|
+
type: boolean
|
|
10
|
+
default: true
|
|
11
|
+
description: >-
|
|
12
|
+
Enables or disables the rendering of OGP and Twitter Card `<meta>`
|
|
13
|
+
tags in the HTML document's `<head>`. Set to `true` (default) to include tags.
|
|
14
|
+
with_ogp_data:
|
|
15
|
+
type: object
|
|
16
|
+
description: Configuration object for OGP (`og:`) and Twitter (`twitter:`) properties.
|
|
17
|
+
properties:
|
|
18
|
+
og:
|
|
19
|
+
type: object
|
|
20
|
+
description: Configuration for Open Graph (og:) metadata.
|
|
21
|
+
properties:
|
|
22
|
+
type:
|
|
23
|
+
type: string
|
|
24
|
+
default: website
|
|
25
|
+
description: Defines the content type via the `og:type` tag (e.g., `website`, `article`, `product`).
|
|
26
|
+
title:
|
|
27
|
+
type: string
|
|
28
|
+
default: The CentOS Project
|
|
29
|
+
description: The title of the content via the `og:title` tag.
|
|
30
|
+
description:
|
|
31
|
+
type: string
|
|
32
|
+
default: ""
|
|
33
|
+
description: A short description of the content via the `og:description` tag.
|
|
34
|
+
image:
|
|
35
|
+
type: object
|
|
36
|
+
description: Configuration for the main image used in social media previews (`og:image`).
|
|
37
|
+
properties:
|
|
38
|
+
url:
|
|
39
|
+
type: string
|
|
40
|
+
format: uri
|
|
41
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png"
|
|
42
|
+
description: The non-secure URL via the `og:image:url` tag.
|
|
43
|
+
secure_url:
|
|
44
|
+
type: string
|
|
45
|
+
format: uri
|
|
46
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png"
|
|
47
|
+
description: The secure HTTPS URL via the `og:image:secure_url` tag.
|
|
48
|
+
type:
|
|
49
|
+
type: string
|
|
50
|
+
default: image/png
|
|
51
|
+
description: The MIME type of the image via the `og:image:type` tag (e.g., `image/jpeg`).
|
|
52
|
+
width:
|
|
53
|
+
type: integer
|
|
54
|
+
default: 1200
|
|
55
|
+
description: The width of the image in pixels via the `og:image:width` tag.
|
|
56
|
+
height:
|
|
57
|
+
type: integer
|
|
58
|
+
default: 630
|
|
59
|
+
description: The height of the image in pixels via the `og:image:height` tag.
|
|
60
|
+
alt:
|
|
61
|
+
type: string
|
|
62
|
+
default: "The CentOS Project"
|
|
63
|
+
description: A description of the image for accessibility via the `og:image:alt` tag.
|
|
64
|
+
required:
|
|
65
|
+
- url
|
|
66
|
+
- width
|
|
67
|
+
- height
|
|
68
|
+
additionalProperties: false
|
|
69
|
+
audio:
|
|
70
|
+
type: object
|
|
71
|
+
description: Configuration for media files to accompany the content (`og:audio`).
|
|
72
|
+
properties:
|
|
73
|
+
url:
|
|
74
|
+
type: string
|
|
75
|
+
format: uri
|
|
76
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.ogg"
|
|
77
|
+
description: The non-secure URL via the `og:audio:url` tag.
|
|
78
|
+
secure_url:
|
|
79
|
+
type: string
|
|
80
|
+
format: uri
|
|
81
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.ogg"
|
|
82
|
+
description: The secure HTTPS URL via the `og:audio:secure_url` tag.
|
|
83
|
+
type:
|
|
84
|
+
type: string
|
|
85
|
+
default: audio/ogg
|
|
86
|
+
description: The MIME type of the audio file via the `og:audio:type` tag.
|
|
87
|
+
additionalProperties: false
|
|
88
|
+
site_name:
|
|
89
|
+
type: string
|
|
90
|
+
description: >-
|
|
91
|
+
The name of the overall website for the `og:site_name` tag (e.g.,
|
|
92
|
+
`"CentOS"`). Distinct from the page title. Defaults to `site.title`
|
|
93
|
+
from the Jekyll configuration when not set explicitly.
|
|
94
|
+
logo:
|
|
95
|
+
type: string
|
|
96
|
+
default: "/assets/icons/apple-touch-icon.png"
|
|
97
|
+
description: >-
|
|
98
|
+
Path to the organization logo image for the `og:logo` meta tag.
|
|
99
|
+
Used by Google Knowledge Graph and some OGP validators to identify
|
|
100
|
+
the site's primary logo. Not part of the official OGP specification;
|
|
101
|
+
treated as a path relative to `site.url + site.baseurl`.
|
|
102
|
+
video:
|
|
103
|
+
type: object
|
|
104
|
+
description: Configuration for video media files to accompany the content (`og:video`).
|
|
105
|
+
properties:
|
|
106
|
+
url:
|
|
107
|
+
type: string
|
|
108
|
+
format: uri
|
|
109
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.ogg"
|
|
110
|
+
description: The non-secure URL via the `og:video:url` tag.
|
|
111
|
+
secure_url:
|
|
112
|
+
type: string
|
|
113
|
+
format: uri
|
|
114
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.ogg"
|
|
115
|
+
description: The secure HTTPS URL via the `og:video:secure_url` tag.
|
|
116
|
+
type:
|
|
117
|
+
type: string
|
|
118
|
+
default: video/ogg
|
|
119
|
+
description: The MIME type of the video file via the `og:video:type` tag.
|
|
120
|
+
width:
|
|
121
|
+
type: integer
|
|
122
|
+
default: 1200
|
|
123
|
+
description: The width of the video in pixels via the `og:video:width` tag.
|
|
124
|
+
height:
|
|
125
|
+
type: integer
|
|
126
|
+
default: 630
|
|
127
|
+
description: The height of the video in pixels via the `og:video:height` tag.
|
|
128
|
+
required:
|
|
129
|
+
- url
|
|
130
|
+
- width
|
|
131
|
+
- height
|
|
132
|
+
additionalProperties: false
|
|
133
|
+
additionalProperties: false
|
|
134
|
+
twitter:
|
|
135
|
+
type: object
|
|
136
|
+
description: Configuration for Twitter Card metadata, which takes precedence on Twitter.
|
|
137
|
+
properties:
|
|
138
|
+
card:
|
|
139
|
+
type: string
|
|
140
|
+
default: summary_large_image
|
|
141
|
+
description: Defines the Twitter Card type via the `twitter:card` tag (e.g., `summary`, `summary_large_image`).
|
|
142
|
+
site:
|
|
143
|
+
type: string
|
|
144
|
+
default: "@CentOS"
|
|
145
|
+
description: The website's Twitter handle via the `twitter:site` tag (e.g., `@CentOS`).
|
|
146
|
+
creator:
|
|
147
|
+
type: string
|
|
148
|
+
default: "@CentOS"
|
|
149
|
+
description: The content creator's Twitter handle via the `twitter:creator` tag (e.g., `@CentOS`).
|
|
150
|
+
image:
|
|
151
|
+
type: object
|
|
152
|
+
description: Configuration for the main image used in the Twitter Card (`twitter:image`).
|
|
153
|
+
properties:
|
|
154
|
+
url:
|
|
155
|
+
type: string
|
|
156
|
+
format: uri
|
|
157
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png"
|
|
158
|
+
description: The image URL via the `twitter:image:url` tag.
|
|
159
|
+
secure_url:
|
|
160
|
+
type: string
|
|
161
|
+
format: uri
|
|
162
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png"
|
|
163
|
+
description: The secure HTTPS image URL.
|
|
164
|
+
type:
|
|
165
|
+
type: string
|
|
166
|
+
default: image/png
|
|
167
|
+
description: The MIME type of the image.
|
|
168
|
+
width:
|
|
169
|
+
type: integer
|
|
170
|
+
default: 1200
|
|
171
|
+
description: The width of the image in pixels.
|
|
172
|
+
height:
|
|
173
|
+
type: integer
|
|
174
|
+
default: 630
|
|
175
|
+
description: The height of the image in pixels.
|
|
176
|
+
alt:
|
|
177
|
+
type: string
|
|
178
|
+
default: "The CentOS Project"
|
|
179
|
+
description: The image description for accessibility.
|
|
180
|
+
required:
|
|
181
|
+
- url
|
|
182
|
+
- width
|
|
183
|
+
- height
|
|
184
|
+
additionalProperties: false
|
|
185
|
+
additionalProperties: false
|
|
186
|
+
locale:
|
|
187
|
+
type: string
|
|
188
|
+
default: "en_US"
|
|
189
|
+
description: >-
|
|
190
|
+
Locale of the content in language_TERRITORY format (e.g., `en_US`, `es_ES`).
|
|
191
|
+
Used by the `og:locale` tag. Should match the site's primary language.
|
|
192
|
+
additionalProperties: false
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
# -------------------------------------------------------------------------------
|
|
3
|
+
# Project Symbol
|
|
4
|
+
# -------------------------------------------------------------------------------
|
|
5
|
+
image: centos-symbol.svg
|
|
6
|
+
image_class: "img-fluid mb-5"
|
|
7
|
+
image_style: "height: 132px;"
|
|
8
|
+
|
|
9
|
+
# -------------------------------------------------------------------------------
|
|
10
|
+
# Project Name
|
|
11
|
+
# -------------------------------------------------------------------------------
|
|
12
|
+
name: CentOS
|
|
13
|
+
description: Community Enterprise Operating System
|
|
14
|
+
|
|
15
|
+
# -------------------------------------------------------------------------------
|
|
16
|
+
# Project Actions
|
|
17
|
+
# -------------------------------------------------------------------------------
|
|
18
|
+
# Use short verbs to tell users what they can do inside the project (e.g., Know
|
|
19
|
+
# more, Contribute, etc.). Project actions
|
|
20
|
+
actions:
|
|
21
|
+
- name: Know more
|
|
22
|
+
icon: fa-solid fa-arrow-right
|
|
23
|
+
icon_position: end
|
|
24
|
+
link: "https://www.centos.org/"
|
|
25
|
+
|
|
26
|
+
# -------------------------------------------------------------------------------
|
|
27
|
+
# Project Resources
|
|
28
|
+
# -------------------------------------------------------------------------------
|
|
29
|
+
# Use nouns to tell users how the project supports its existence (e.g., GitLab,
|
|
30
|
+
# Mailing Lists, IRC, Blog, etc.)
|
|
31
|
+
resources:
|
|
32
|
+
- name: Blog
|
|
33
|
+
icon: fa-solid fa-newspaper
|
|
34
|
+
link: "https://blog.centos.org/"
|
|
35
|
+
- name: Mailing Lists
|
|
36
|
+
icon: fa-solid fa-envelope
|
|
37
|
+
link: "https://lists.centos.org/"
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
title: Project Presentation Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring a prominent display component for a project, featuring
|
|
4
|
+
branding (logo/icon), a summary, calls-to-action, and key resources.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_project:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: false
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the rendering of the Project Presentation template.
|
|
12
|
+
Set to `true` to display the project component; set to `false` (default) to hide it.
|
|
13
|
+
with_project_data:
|
|
14
|
+
type: object
|
|
15
|
+
default: {}
|
|
16
|
+
description: >-
|
|
17
|
+
Custom configuration object for the Project Presentation template. If defined
|
|
18
|
+
at the page level, these settings override component-specific configuration files.
|
|
19
|
+
properties:
|
|
20
|
+
class:
|
|
21
|
+
type: string
|
|
22
|
+
default: flex-column text-bg-dark bg-image
|
|
23
|
+
description: >-
|
|
24
|
+
Custom Bootstrap classes for the main project container, controlling
|
|
25
|
+
alignment, background, and text colors (e.g., `padding`, `bg-image`).
|
|
26
|
+
screenshot:
|
|
27
|
+
type: string
|
|
28
|
+
default: ""
|
|
29
|
+
description: >-
|
|
30
|
+
The relative file path to a large project screenshot or featured image (relative to `assets/img/`). Used for a prominent visual display.
|
|
31
|
+
screenshot_alt:
|
|
32
|
+
type: string
|
|
33
|
+
default: ""
|
|
34
|
+
description: The alternative text for the project screenshot, used for accessibility.
|
|
35
|
+
screenshot_class:
|
|
36
|
+
type: string
|
|
37
|
+
default: ""
|
|
38
|
+
description: Custom CSS classes applied directly to the screenshot image element.
|
|
39
|
+
image:
|
|
40
|
+
type: string
|
|
41
|
+
default: ""
|
|
42
|
+
description: >-
|
|
43
|
+
The relative file path to the smaller project logo or branding image (relative to `/assets/img/`).
|
|
44
|
+
image_alt:
|
|
45
|
+
type: string
|
|
46
|
+
default: ""
|
|
47
|
+
description: The alternative text for the project logo image.
|
|
48
|
+
image_class:
|
|
49
|
+
type: string
|
|
50
|
+
default: img-fluid mb-3
|
|
51
|
+
description: Custom CSS classes applied to the project logo element (e.g., `img-fluid`, sizing utilities).
|
|
52
|
+
image_style:
|
|
53
|
+
type: string
|
|
54
|
+
default: ""
|
|
55
|
+
description: >-
|
|
56
|
+
Inline CSS styles applied directly to the logo image element (e.g., `height: 142px;`).
|
|
57
|
+
Useful for precise sizing when utility classes are insufficient.
|
|
58
|
+
icon:
|
|
59
|
+
type: string
|
|
60
|
+
default: ""
|
|
61
|
+
description: >-
|
|
62
|
+
A Font Awesome icon class (e.g., `fa-solid fa-house`) to display
|
|
63
|
+
as branding instead of an image.
|
|
64
|
+
icon_class:
|
|
65
|
+
type: string
|
|
66
|
+
default: display-3 fw-bold mb-1
|
|
67
|
+
description: Custom CSS classes applied to the project icon element.
|
|
68
|
+
name:
|
|
69
|
+
type: string
|
|
70
|
+
default: ""
|
|
71
|
+
description: The visible title or name of the project. This field is typically required.
|
|
72
|
+
name_class:
|
|
73
|
+
type: string
|
|
74
|
+
default: display-3 fw-bold mb-1
|
|
75
|
+
description: Custom CSS classes applied to the project name text element.
|
|
76
|
+
description:
|
|
77
|
+
type: string
|
|
78
|
+
default: ""
|
|
79
|
+
description: A detailed summary or description of the project.
|
|
80
|
+
description_class:
|
|
81
|
+
type: string
|
|
82
|
+
default: lead mb-3 text-center
|
|
83
|
+
description: Custom CSS classes applied to the project description text element.
|
|
84
|
+
actions:
|
|
85
|
+
type: array
|
|
86
|
+
default: []
|
|
87
|
+
description: >-
|
|
88
|
+
A list of objects defining prominent call-to-action buttons (e.g., Download, View Demo).
|
|
89
|
+
Each item uses the Link component schema.
|
|
90
|
+
items:
|
|
91
|
+
type: object
|
|
92
|
+
description: Configuration for a single button using the external Link component properties.
|
|
93
|
+
additionalProperties: true
|
|
94
|
+
actions_class:
|
|
95
|
+
type: string
|
|
96
|
+
default: "mb-3"
|
|
97
|
+
description: Custom CSS classes applied to the container wrapping the action buttons list.
|
|
98
|
+
actions_btn_class:
|
|
99
|
+
type: string
|
|
100
|
+
default: btn text-nowrap m-1 btn-
|
|
101
|
+
description: Custom CSS classes applied to each individual action button element.
|
|
102
|
+
resources:
|
|
103
|
+
type: array
|
|
104
|
+
default: []
|
|
105
|
+
description: >-
|
|
106
|
+
A list of objects defining secondary resource links (e.g., Source Code, Documentation).
|
|
107
|
+
Each item uses the Link component schema.
|
|
108
|
+
items:
|
|
109
|
+
type: object
|
|
110
|
+
description: Configuration for a single resource link using the external Link component properties.
|
|
111
|
+
additionalProperties: true
|
|
112
|
+
resources_class:
|
|
113
|
+
type: string
|
|
114
|
+
default: gap-2 d-md-flex justify-content-lg-center bg-dark p-2 rounded-top
|
|
115
|
+
description: Custom CSS classes applied to the container wrapping the resource links.
|
|
116
|
+
resources_btn_class:
|
|
117
|
+
type: string
|
|
118
|
+
default: "btn text-start text-nowrap btn-dark"
|
|
119
|
+
description: ""
|
|
120
|
+
required:
|
|
121
|
+
- name
|
|
122
|
+
- description
|
|
123
|
+
additionalProperties: false
|
|
124
|
+
additionalProperties: false
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
title: Script Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the script component. These properties are set in
|
|
4
|
+
the page front matter and are read automatically by the component when
|
|
5
|
+
it is included in the layout before the closing `</body>` tag.
|
|
6
|
+
type: object
|
|
7
|
+
properties:
|
|
8
|
+
with_fontawesome:
|
|
9
|
+
type: boolean
|
|
10
|
+
default: false
|
|
11
|
+
description: >-
|
|
12
|
+
When `true`, includes the Font Awesome JavaScript bundle before the
|
|
13
|
+
closing `</body>` tag to enable icon rendering across the page.
|
|
14
|
+
with_highlight:
|
|
15
|
+
type: boolean
|
|
16
|
+
default: false
|
|
17
|
+
description: >-
|
|
18
|
+
When `true`, includes the Highlight.js JavaScript bundle and
|
|
19
|
+
initializes syntax highlighting for all code blocks on the page.
|
|
20
|
+
with_datatable:
|
|
21
|
+
type: boolean
|
|
22
|
+
default: false
|
|
23
|
+
description: >-
|
|
24
|
+
When `true`, includes the DataTables JavaScript bundle to enable
|
|
25
|
+
interactive sorting, searching, and pagination on tables that use
|
|
26
|
+
the `dataTable` CSS class.
|
|
27
|
+
with_backtotop:
|
|
28
|
+
type: boolean
|
|
29
|
+
default: false
|
|
30
|
+
description: >-
|
|
31
|
+
When `true`, includes the back-to-top button script, which renders
|
|
32
|
+
a floating button that scrolls the page back to the top when
|
|
33
|
+
clicked.
|
|
34
|
+
with_copyvalue:
|
|
35
|
+
type: boolean
|
|
36
|
+
default: false
|
|
37
|
+
description: >-
|
|
38
|
+
When `true`, includes the copy-value script, which attaches
|
|
39
|
+
clipboard copy functionality to elements that use the designated
|
|
40
|
+
copy-value CSS class.
|
|
41
|
+
additionalProperties: false
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
title: Footer Shortcut Links Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the 'Shortcut' component, typically displayed in the
|
|
4
|
+
footer to present key navigation links grouped under headings.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_shortcut:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: true
|
|
10
|
+
description: >-
|
|
11
|
+
Controls the visibility of the Shortcut component in the page footer.
|
|
12
|
+
Set to `true` (default) to display the component; set to `false` to hide it.
|
|
13
|
+
When enabled, the component will load items where `footer` is included in
|
|
14
|
+
their `visible_on` property, either from global `navitems` or `with_shortcut_data`.
|
|
15
|
+
with_shortcut_data:
|
|
16
|
+
type: object
|
|
17
|
+
default: {}
|
|
18
|
+
description: >-
|
|
19
|
+
Provides a custom set of shortcut navigation items that is completely
|
|
20
|
+
independent of the main Navigation Bar's configuration. When this variable
|
|
21
|
+
is defined, its `navitems` list is used exclusively for the footer shortcuts.
|
|
22
|
+
properties:
|
|
23
|
+
navitems:
|
|
24
|
+
type: array
|
|
25
|
+
default: []
|
|
26
|
+
description: >-
|
|
27
|
+
A list of objects defining the top-level shortcut sections or columns.
|
|
28
|
+
Each object acts as a section heading followed by a list of links (defined in `menu`).
|
|
29
|
+
items:
|
|
30
|
+
type: object
|
|
31
|
+
description: Defines a single shortcut section consisting of a heading and its associated links.
|
|
32
|
+
properties:
|
|
33
|
+
name:
|
|
34
|
+
type: string
|
|
35
|
+
description: The heading text (title) for this section of links in the footer.
|
|
36
|
+
link:
|
|
37
|
+
type: string
|
|
38
|
+
default: ""
|
|
39
|
+
description: >-
|
|
40
|
+
The URL link for top-level items is ignored by this component,
|
|
41
|
+
as these items are treated only as section headers. It should be omitted or left as `""`.
|
|
42
|
+
icon:
|
|
43
|
+
type: string
|
|
44
|
+
default: ""
|
|
45
|
+
description: >-
|
|
46
|
+
An icon class (e.g., from Font Awesome) to display alongside the heading.
|
|
47
|
+
visible_on:
|
|
48
|
+
type: array
|
|
49
|
+
default: ["footer"]
|
|
50
|
+
description: >-
|
|
51
|
+
Controls where this item is displayed. For the Shortcut component,
|
|
52
|
+
this array must contain `"footer"` to be rendered. Other values
|
|
53
|
+
(like `"navbar"`) are ignored in this context.
|
|
54
|
+
items:
|
|
55
|
+
type: string
|
|
56
|
+
enum:
|
|
57
|
+
- navbar
|
|
58
|
+
- footer
|
|
59
|
+
menu:
|
|
60
|
+
type: array
|
|
61
|
+
default: []
|
|
62
|
+
description: >-
|
|
63
|
+
A list of objects defining the individual link items displayed
|
|
64
|
+
under the section heading. The inner objects follow the
|
|
65
|
+
Link component schema.
|
|
66
|
+
items:
|
|
67
|
+
type: object
|
|
68
|
+
description: Configuration for a single link using the external Link component properties.
|
|
69
|
+
additionalProperties: true
|
|
70
|
+
required:
|
|
71
|
+
- name
|
|
72
|
+
- menu # Must have a menu (list of links) to be a functional shortcut section
|
|
73
|
+
additionalProperties: false
|
|
74
|
+
additionalProperties: false
|