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
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
title: Link Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for defining and configuring a single link element. This component is
|
|
4
|
+
often reused by other components to define buttons or navigation items.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_link:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: true
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the rendering of the Link component. Set to `true`
|
|
12
|
+
(default) to display the link; set to `false` to suppress rendering.
|
|
13
|
+
with_link_data:
|
|
14
|
+
type: object
|
|
15
|
+
default: {}
|
|
16
|
+
description: >-
|
|
17
|
+
The configuration object containing all attributes necessary to render and
|
|
18
|
+
style the link element (`<a>`). Requires `name` parameter. The `link` parameter
|
|
19
|
+
is optional - if omitted, an anchor link is automatically generated from the name
|
|
20
|
+
for in-page navigation.
|
|
21
|
+
properties:
|
|
22
|
+
name:
|
|
23
|
+
type: string
|
|
24
|
+
default: ""
|
|
25
|
+
description: The visible text or label of the link. This field is required unless `icon` is provided for icon-only links.
|
|
26
|
+
link:
|
|
27
|
+
type: string
|
|
28
|
+
default: ""
|
|
29
|
+
description: >-
|
|
30
|
+
The target URL the link points to. This can be a relative path (prefixed by site URL settings), a path using `../` (e.g., `../some-page`),
|
|
31
|
+
or an absolute URL (e.g., `https://example.com`). If omitted, an
|
|
32
|
+
anchor link is generated from the `name` parameter by converting to lowercase and replacing spaces with hyphens
|
|
33
|
+
(e.g., "Back to Top" becomes "#back-to-top"), enabling in-page navigation to section headings.
|
|
34
|
+
format: uri-reference
|
|
35
|
+
target:
|
|
36
|
+
type: string
|
|
37
|
+
default: ""
|
|
38
|
+
description: >-
|
|
39
|
+
The link target behavior. Set to `_blank` to open the link in a new window or tab.
|
|
40
|
+
When set to `_blank` with external cross-domain links, the component automatically adds
|
|
41
|
+
`rel="noopener noreferrer"` for security and performance best practices, and an
|
|
42
|
+
external-link icon (fa-solid fa-external-link) is automatically displayed at the end
|
|
43
|
+
of the link text (unless a custom icon is explicitly provided).
|
|
44
|
+
enum:
|
|
45
|
+
- ""
|
|
46
|
+
- _blank
|
|
47
|
+
class:
|
|
48
|
+
type: string
|
|
49
|
+
default: ""
|
|
50
|
+
description: >-
|
|
51
|
+
One or more CSS classes to apply to the link element. Use this
|
|
52
|
+
to override default link styling and apply component styles like
|
|
53
|
+
Bootstrap buttons (e.g., `btn btn-primary btn-lg`).
|
|
54
|
+
role:
|
|
55
|
+
type: string
|
|
56
|
+
default: ""
|
|
57
|
+
description: >-
|
|
58
|
+
The ARIA role for the link element (e.g., `button` for styled links
|
|
59
|
+
that act as buttons). Used primarily for accessibility when the HTML
|
|
60
|
+
element's semantic meaning is being overridden.
|
|
61
|
+
aria_label:
|
|
62
|
+
type: string
|
|
63
|
+
default: ""
|
|
64
|
+
description: >-
|
|
65
|
+
The ARIA label providing a concise, accessible description of the link's purpose, used primarily when the link contains no visible text (e.g., icon-only social media buttons).
|
|
66
|
+
color:
|
|
67
|
+
type: string
|
|
68
|
+
default: primary
|
|
69
|
+
description: >-
|
|
70
|
+
The visual color of the link text. Possible values are standard
|
|
71
|
+
Bootstrap color utility classes (e.g., `primary`, `danger`, `dark`).
|
|
72
|
+
enum:
|
|
73
|
+
- primary
|
|
74
|
+
- secondary
|
|
75
|
+
- success
|
|
76
|
+
- info
|
|
77
|
+
- warning
|
|
78
|
+
- danger
|
|
79
|
+
- light
|
|
80
|
+
- dark
|
|
81
|
+
icon:
|
|
82
|
+
type: string
|
|
83
|
+
default: ""
|
|
84
|
+
description: >-
|
|
85
|
+
The Font Awesome icon class (e.g., `fa-solid fa-download`) to display
|
|
86
|
+
within the link. When a custom icon is provided, it overrides any automatic
|
|
87
|
+
icon generation. For external cross-domain links with `target="_blank"`,
|
|
88
|
+
the component automatically adds a `fa-solid fa-external-link` icon
|
|
89
|
+
if no custom icon is specified.
|
|
90
|
+
icon_position:
|
|
91
|
+
type: string
|
|
92
|
+
default: start
|
|
93
|
+
description: >-
|
|
94
|
+
The position of the icon relative to the link text. Choose `start`
|
|
95
|
+
(default) for the icon before the text, or `end` for the icon
|
|
96
|
+
after the text.
|
|
97
|
+
enum:
|
|
98
|
+
- start
|
|
99
|
+
- end
|
|
100
|
+
required:
|
|
101
|
+
- name
|
|
102
|
+
additionalProperties: false
|
|
103
|
+
_notes:
|
|
104
|
+
type: object
|
|
105
|
+
description: Metadata and reference information
|
|
106
|
+
properties:
|
|
107
|
+
implementation_file:
|
|
108
|
+
type: string
|
|
109
|
+
default: "src/HTML/jekyll/_includes/link.html.liquid"
|
|
110
|
+
description: Location of the component implementation
|
|
111
|
+
user_documentation:
|
|
112
|
+
type: string
|
|
113
|
+
default: "examples/jekyll/layouts/default/components/link.md"
|
|
114
|
+
description: Location of user-facing documentation
|
|
115
|
+
anchor_generation:
|
|
116
|
+
type: string
|
|
117
|
+
default: "When 'link' parameter is omitted, component generates anchor from 'name'"
|
|
118
|
+
description: Explanation of anchor link generation behavior
|
|
119
|
+
_examples:
|
|
120
|
+
type: array
|
|
121
|
+
description: Practical configuration examples
|
|
122
|
+
items:
|
|
123
|
+
- description: "Basic text link"
|
|
124
|
+
with_link_data:
|
|
125
|
+
name: "Documentation"
|
|
126
|
+
link: "/docs/"
|
|
127
|
+
- description: "Anchor link for in-page navigation"
|
|
128
|
+
with_link_data:
|
|
129
|
+
name: "Back to top"
|
|
130
|
+
- description: "Button with icon"
|
|
131
|
+
with_link_data:
|
|
132
|
+
name: "Download"
|
|
133
|
+
link: "/files/document.pdf"
|
|
134
|
+
icon: "fa-solid fa-download"
|
|
135
|
+
class: "btn btn-primary"
|
|
136
|
+
role: "button"
|
|
137
|
+
- description: "Icon-only link with accessibility"
|
|
138
|
+
with_link_data:
|
|
139
|
+
icon: "fa-solid fa-search"
|
|
140
|
+
link: "/search/"
|
|
141
|
+
aria_label: "Open search"
|
|
142
|
+
- description: "Link opening in new window (automatic external-link icon)"
|
|
143
|
+
with_link_data:
|
|
144
|
+
name: "Visit Example"
|
|
145
|
+
link: "https://example.com"
|
|
146
|
+
target: "_blank"
|
|
147
|
+
- description: "Link opening in new window (custom icon override)"
|
|
148
|
+
with_link_data:
|
|
149
|
+
name: "Custom Icon"
|
|
150
|
+
icon: "fa-solid fa-arrow-up-right-from-square"
|
|
151
|
+
link: "https://example.com"
|
|
152
|
+
target: "_blank"
|
|
153
|
+
additionalProperties: false
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
title: Language Selector Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the 'Language Selector' component, which allows users
|
|
4
|
+
to switch between different localized versions of the content.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_locales:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: false
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the Language Selector component. Set to `true` to
|
|
12
|
+
display the selector and initiate the content localization process. Set
|
|
13
|
+
to `false` (default) to hide the selector.
|
|
14
|
+
with_locales_data:
|
|
15
|
+
type: array
|
|
16
|
+
default: []
|
|
17
|
+
description: >-
|
|
18
|
+
An array of ISO 639-1 or ISO 639-2 language codes (e.g., `["en", "es", "fr"]`).
|
|
19
|
+
These codes are used to define the list of available languages in the
|
|
20
|
+
selector and initiate the pipeline that generates localized pages.
|
|
21
|
+
items:
|
|
22
|
+
type: string
|
|
23
|
+
description: A single language code (e.g., `es` for Spanish).
|
|
24
|
+
minItems: 0 # Explicitly allowing an empty array
|
|
25
|
+
additionalProperties: false
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
brand_manifestation: jekyll-theme-centos
|
|
3
|
+
navitems: []
|
|
4
|
+
# navitems:
|
|
5
|
+
# - name: "Link"
|
|
6
|
+
# icon: "fa-solid fa-book"
|
|
7
|
+
# link: "/"
|
|
8
|
+
# menu: []
|
|
9
|
+
# visible_on: ["navbar"]
|
|
10
|
+
# - name: "Menu"
|
|
11
|
+
# icon: "fa-solid fa-book"
|
|
12
|
+
# link: ""
|
|
13
|
+
# menu:
|
|
14
|
+
# - name: Item 1
|
|
15
|
+
# link: "/item-1/"
|
|
16
|
+
# - name: Item 2
|
|
17
|
+
# link: "/item-2/"
|
|
18
|
+
# - name: Item 3
|
|
19
|
+
# link: "/item-3/"
|
|
20
|
+
# visible_on: ["navbar"]
|
|
@@ -0,0 +1,121 @@
|
|
|
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
|
+
with_navbar_data:
|
|
15
|
+
type: object
|
|
16
|
+
default: {}
|
|
17
|
+
description: >-
|
|
18
|
+
The page-level configuration object for the Navigation Bar component.
|
|
19
|
+
Settings defined here (in the page's front matter) override any global
|
|
20
|
+
`navbar` data defined in site-wide `_data` files.
|
|
21
|
+
properties:
|
|
22
|
+
class:
|
|
23
|
+
type: string
|
|
24
|
+
default: ""
|
|
25
|
+
description: >-
|
|
26
|
+
One or more Bootstrap CSS classes to apply to the main `<nav>` element
|
|
27
|
+
for custom styling, background colors, or utility purposes.
|
|
28
|
+
brand_image:
|
|
29
|
+
type: string
|
|
30
|
+
default: "centos-whitelogo.svg"
|
|
31
|
+
description: >-
|
|
32
|
+
The filename of the brand logo or image to display. This file is
|
|
33
|
+
expected to be located in your site's image assets directory.
|
|
34
|
+
brand_image_class:
|
|
35
|
+
type: string
|
|
36
|
+
default: ""
|
|
37
|
+
description: >-
|
|
38
|
+
One or more Bootstrap CSS classes to apply directly to the brand
|
|
39
|
+
image element (`<img>`).
|
|
40
|
+
brand_image_height:
|
|
41
|
+
type: string
|
|
42
|
+
default: "32"
|
|
43
|
+
description: >-
|
|
44
|
+
The desired fixed height for the brand image, specified in pixels
|
|
45
|
+
as a string (e.g., `"32"`).
|
|
46
|
+
brand_manifestation:
|
|
47
|
+
type: string
|
|
48
|
+
default: ""
|
|
49
|
+
description: >-
|
|
50
|
+
The text label or name (e.g., project name) that is typically displayed
|
|
51
|
+
alongside the brand image.
|
|
52
|
+
brand_manifestation_class:
|
|
53
|
+
type: string
|
|
54
|
+
default: ""
|
|
55
|
+
description: >-
|
|
56
|
+
One or more Bootstrap CSS classes to apply to the brand manifestation
|
|
57
|
+
text element.
|
|
58
|
+
navitems:
|
|
59
|
+
type: array
|
|
60
|
+
default: []
|
|
61
|
+
description: >-
|
|
62
|
+
A list of objects defining the primary navigation links and dropdown menus.
|
|
63
|
+
Each object represents a top-level item in the navbar.
|
|
64
|
+
items:
|
|
65
|
+
type: object
|
|
66
|
+
properties:
|
|
67
|
+
name:
|
|
68
|
+
type: string
|
|
69
|
+
description: The visible text label of the link or menu title. This is required.
|
|
70
|
+
link:
|
|
71
|
+
type: string
|
|
72
|
+
default: ""
|
|
73
|
+
description: >-
|
|
74
|
+
The target URL for the link. This should be omitted or left
|
|
75
|
+
as `""` if the item is a dropdown toggle (i.e., it contains a `menu` array).
|
|
76
|
+
format: uri-reference
|
|
77
|
+
icon:
|
|
78
|
+
type: string
|
|
79
|
+
default: ""
|
|
80
|
+
description: >-
|
|
81
|
+
An icon class (e.g., from Font Awesome) to display next to the label.
|
|
82
|
+
visible_on:
|
|
83
|
+
type: array
|
|
84
|
+
default: ["navbar"]
|
|
85
|
+
description: >-
|
|
86
|
+
Controls where the item is displayed. Possible values include
|
|
87
|
+
`"navbar"`, `"footer"` (referring to the shortcuts component),
|
|
88
|
+
or both (`["navbar", "footer"]`).
|
|
89
|
+
items:
|
|
90
|
+
type: string
|
|
91
|
+
enum:
|
|
92
|
+
- navbar
|
|
93
|
+
- footer
|
|
94
|
+
menu:
|
|
95
|
+
type: array
|
|
96
|
+
default: []
|
|
97
|
+
description: >-
|
|
98
|
+
If this array contains objects, the item renders as a dropdown menu.
|
|
99
|
+
If it is an empty array (`[]`), the item renders as a simple link.
|
|
100
|
+
items:
|
|
101
|
+
type: object
|
|
102
|
+
description: A single link item within the dropdown menu.
|
|
103
|
+
properties:
|
|
104
|
+
name:
|
|
105
|
+
type: string
|
|
106
|
+
description: The visible text for the link within the dropdown menu.
|
|
107
|
+
link:
|
|
108
|
+
type: string
|
|
109
|
+
description: The target URL for the link within the dropdown menu.
|
|
110
|
+
format: uri-reference
|
|
111
|
+
required:
|
|
112
|
+
- name
|
|
113
|
+
- link # Required for all nested links
|
|
114
|
+
additionalProperties: false
|
|
115
|
+
required:
|
|
116
|
+
- name # Required for all top-level links/menus
|
|
117
|
+
additionalProperties: false
|
|
118
|
+
required:
|
|
119
|
+
- navitems # Navigation is critical for the navbar
|
|
120
|
+
additionalProperties: false
|
|
121
|
+
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
|
|
@@ -0,0 +1,186 @@
|
|
|
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: "centos-social-share.png"
|
|
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
|
+
video:
|
|
89
|
+
type: object
|
|
90
|
+
description: Configuration for video media files to accompany the content (`og:video`).
|
|
91
|
+
properties:
|
|
92
|
+
url:
|
|
93
|
+
type: string
|
|
94
|
+
format: uri
|
|
95
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.ogg"
|
|
96
|
+
description: The non-secure URL via the `og:video:url` tag.
|
|
97
|
+
secure_url:
|
|
98
|
+
type: string
|
|
99
|
+
format: uri
|
|
100
|
+
default: "{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.ogg"
|
|
101
|
+
description: The secure HTTPS URL via the `og:video:secure_url` tag.
|
|
102
|
+
type:
|
|
103
|
+
type: string
|
|
104
|
+
default: video/ogg
|
|
105
|
+
description: The MIME type of the video file via the `og:video:type` tag.
|
|
106
|
+
width:
|
|
107
|
+
type: integer
|
|
108
|
+
default: 1200
|
|
109
|
+
description: The width of the video in pixels via the `og:video:width` tag.
|
|
110
|
+
height:
|
|
111
|
+
type: integer
|
|
112
|
+
default: 630
|
|
113
|
+
description: The height of the video in pixels via the `og:video:height` tag.
|
|
114
|
+
required:
|
|
115
|
+
- url
|
|
116
|
+
- width
|
|
117
|
+
- height
|
|
118
|
+
additionalProperties: false
|
|
119
|
+
additionalProperties: false
|
|
120
|
+
twitter:
|
|
121
|
+
type: object
|
|
122
|
+
description: Configuration for Twitter Card metadata, which takes precedence on Twitter.
|
|
123
|
+
properties:
|
|
124
|
+
card:
|
|
125
|
+
type: string
|
|
126
|
+
default: summary_large_image
|
|
127
|
+
description: Defines the Twitter Card type via the `twitter:card` tag (e.g., `summary`, `summary_large_image`).
|
|
128
|
+
site:
|
|
129
|
+
type: object
|
|
130
|
+
description: The Twitter account of the website via the `twitter:site` tag.
|
|
131
|
+
properties:
|
|
132
|
+
id:
|
|
133
|
+
type: string
|
|
134
|
+
default: "@CentOS"
|
|
135
|
+
description: The site's Twitter handle (e.g., `@CentOS`).
|
|
136
|
+
required:
|
|
137
|
+
- id
|
|
138
|
+
additionalProperties: false
|
|
139
|
+
creator:
|
|
140
|
+
type: object
|
|
141
|
+
description: The Twitter account of the content creator via the `twitter:creator` tag.
|
|
142
|
+
properties:
|
|
143
|
+
id:
|
|
144
|
+
type: string
|
|
145
|
+
default: "@CentOS"
|
|
146
|
+
description: The creator's Twitter handle (e.g., `@CentOS`).
|
|
147
|
+
required:
|
|
148
|
+
- id
|
|
149
|
+
additionalProperties: false
|
|
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: "centos-social-share.png"
|
|
179
|
+
description: The image description for accessibility.
|
|
180
|
+
required:
|
|
181
|
+
- url
|
|
182
|
+
- width
|
|
183
|
+
- height
|
|
184
|
+
additionalProperties: false
|
|
185
|
+
additionalProperties: false
|
|
186
|
+
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/"
|