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,67 @@
|
|
|
1
|
+
title: Breaking News Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the 'Breaking News' display component within the Jekyll theme.
|
|
4
|
+
This component is typically used to draw attention to urgent or critical updates.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
with_breakingnews:
|
|
8
|
+
type: boolean
|
|
9
|
+
default: false
|
|
10
|
+
description: >-
|
|
11
|
+
Enables or disables the Breaking News component. Set to `true` to
|
|
12
|
+
display the messages; set to `false` (default) to hide them. When enabled,
|
|
13
|
+
the `with_breakingnews_data` property must be provided.
|
|
14
|
+
breakingnews_alert_height:
|
|
15
|
+
type: integer
|
|
16
|
+
default: 31
|
|
17
|
+
description: >-
|
|
18
|
+
Height in pixels of a single breaking news alert bar. Used by both the
|
|
19
|
+
breakingnews component and the head component to calculate sticky
|
|
20
|
+
positioning and scroll-margin-top offsets. Must match the rendered height
|
|
21
|
+
of `.breakingnews.alert.p-2`.
|
|
22
|
+
with_breakingnews_data:
|
|
23
|
+
type: array
|
|
24
|
+
default: [] # Corrected: Moved default to array level and set to []
|
|
25
|
+
description: >-
|
|
26
|
+
An array of objects containing the configuration and messages for the
|
|
27
|
+
breaking news display. If multiple items are provided, they will be
|
|
28
|
+
presented in the order they appear in this list.
|
|
29
|
+
items:
|
|
30
|
+
type: object
|
|
31
|
+
properties:
|
|
32
|
+
content:
|
|
33
|
+
type: string
|
|
34
|
+
description: The main text content of the breaking news message. This field is required.
|
|
35
|
+
color:
|
|
36
|
+
type: string
|
|
37
|
+
default: primary
|
|
38
|
+
description: >-
|
|
39
|
+
Defines the visual style/severity of the message. Defaults to
|
|
40
|
+
`primary`. Available options are listed in the `enum`.
|
|
41
|
+
enum:
|
|
42
|
+
- primary
|
|
43
|
+
- secondary
|
|
44
|
+
- info
|
|
45
|
+
- warning
|
|
46
|
+
- danger
|
|
47
|
+
- success
|
|
48
|
+
- dark
|
|
49
|
+
- light
|
|
50
|
+
icon:
|
|
51
|
+
type: string
|
|
52
|
+
default: fa-solid fa-bullhorn
|
|
53
|
+
description: >-
|
|
54
|
+
The Font Awesome icon class displayed on the left side of the
|
|
55
|
+
message (e.g., `fa-solid fa-bell`). The default is `fa-solid fa-bullhorn`.
|
|
56
|
+
Note that the [Font Awesome theme addon](../../addons/fontawesome/) must be enabled for these icons to render.
|
|
57
|
+
link:
|
|
58
|
+
type: string
|
|
59
|
+
format: uri
|
|
60
|
+
description: >-
|
|
61
|
+
The URL pointing to a page or resource with detailed information
|
|
62
|
+
about the breaking news message.
|
|
63
|
+
required:
|
|
64
|
+
- content
|
|
65
|
+
additionalProperties: false
|
|
66
|
+
required:
|
|
67
|
+
- with_breakingnews
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
title: Card Component Configuration
|
|
2
|
+
description: >-
|
|
3
|
+
Schema for configuring the card component. All parameters are passed
|
|
4
|
+
directly as include parameters when calling the component.
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
class:
|
|
8
|
+
type: string
|
|
9
|
+
default: "flex-column align-items-start mb-3"
|
|
10
|
+
description: >-
|
|
11
|
+
CSS classes applied to the outer card container `<div>`. Controls
|
|
12
|
+
layout direction and spacing (e.g., `flex-column align-items-start mb-3`).
|
|
13
|
+
color:
|
|
14
|
+
type: string
|
|
15
|
+
default: "primary"
|
|
16
|
+
description: >-
|
|
17
|
+
Bootstrap color scheme applied to the card. Used as the screenshot
|
|
18
|
+
background color and as the default button color suffix
|
|
19
|
+
(e.g., `primary`, `secondary`, `danger`).
|
|
20
|
+
image:
|
|
21
|
+
type: string
|
|
22
|
+
default: ""
|
|
23
|
+
description: >-
|
|
24
|
+
Filename of an image to display at the top of the card, relative to
|
|
25
|
+
`/assets/img/`. When empty, no image is rendered.
|
|
26
|
+
image_class:
|
|
27
|
+
type: string
|
|
28
|
+
default: "img-fluid mb-3 rounded"
|
|
29
|
+
description: >-
|
|
30
|
+
CSS classes applied to the image element (e.g., `img-fluid mb-3 rounded`).
|
|
31
|
+
image_style:
|
|
32
|
+
type: string
|
|
33
|
+
default: ""
|
|
34
|
+
description: >-
|
|
35
|
+
Inline CSS style string applied to the image element
|
|
36
|
+
(e.g., `max-height: 200px`). When empty, no inline style is added.
|
|
37
|
+
image_alt:
|
|
38
|
+
type: string
|
|
39
|
+
default: ""
|
|
40
|
+
description: >-
|
|
41
|
+
Alt text for the image. Defaults to the image filename when not set.
|
|
42
|
+
icon:
|
|
43
|
+
type: string
|
|
44
|
+
default: ""
|
|
45
|
+
description: >-
|
|
46
|
+
Font Awesome icon class to display in the card
|
|
47
|
+
(e.g., `fa-solid fa-star`). When empty, no icon is rendered.
|
|
48
|
+
icon_class:
|
|
49
|
+
type: string
|
|
50
|
+
default: "display-6 mb-3"
|
|
51
|
+
description: >-
|
|
52
|
+
CSS classes applied to the icon wrapper `<div>`
|
|
53
|
+
(e.g., `display-6 mb-3`).
|
|
54
|
+
name:
|
|
55
|
+
type: string
|
|
56
|
+
default: ""
|
|
57
|
+
description: >-
|
|
58
|
+
Title text displayed in the card. When empty, the name section is
|
|
59
|
+
not rendered.
|
|
60
|
+
name_class:
|
|
61
|
+
type: string
|
|
62
|
+
default: "display-5 fw-bold mb-3"
|
|
63
|
+
description: >-
|
|
64
|
+
CSS classes applied to the name wrapper `<div>`
|
|
65
|
+
(e.g., `display-5 fw-bold mb-3`).
|
|
66
|
+
screenshot:
|
|
67
|
+
type: string
|
|
68
|
+
default: ""
|
|
69
|
+
description: >-
|
|
70
|
+
Filename of a screenshot image shown inside a colored background box,
|
|
71
|
+
relative to `/assets/img/`. When empty, no screenshot is rendered.
|
|
72
|
+
screenshot_class:
|
|
73
|
+
type: string
|
|
74
|
+
default: "img-fluid"
|
|
75
|
+
description: >-
|
|
76
|
+
CSS classes applied to the screenshot image element
|
|
77
|
+
(e.g., `img-fluid`).
|
|
78
|
+
screenshot_style:
|
|
79
|
+
type: string
|
|
80
|
+
default: ""
|
|
81
|
+
description: >-
|
|
82
|
+
Inline CSS style string applied to the screenshot image element.
|
|
83
|
+
When empty, no inline style is added.
|
|
84
|
+
screenshot_alt:
|
|
85
|
+
type: string
|
|
86
|
+
default: ""
|
|
87
|
+
description: >-
|
|
88
|
+
Alt text for the screenshot image. Defaults to the screenshot
|
|
89
|
+
filename when not set.
|
|
90
|
+
description:
|
|
91
|
+
type: string
|
|
92
|
+
default: ""
|
|
93
|
+
description: >-
|
|
94
|
+
Body text displayed below the name. When empty, the description
|
|
95
|
+
section is not rendered.
|
|
96
|
+
description_class:
|
|
97
|
+
type: string
|
|
98
|
+
default: "mb-3"
|
|
99
|
+
description: >-
|
|
100
|
+
CSS classes applied to the description wrapper `<div>`
|
|
101
|
+
(e.g., `mb-3`).
|
|
102
|
+
actions:
|
|
103
|
+
type: array
|
|
104
|
+
default: ""
|
|
105
|
+
description: >-
|
|
106
|
+
List of action button definitions. Each item is rendered as a link
|
|
107
|
+
button using the `link` component. When empty or not provided, no
|
|
108
|
+
action buttons are rendered.
|
|
109
|
+
items:
|
|
110
|
+
type: object
|
|
111
|
+
properties:
|
|
112
|
+
name:
|
|
113
|
+
type: string
|
|
114
|
+
default: ""
|
|
115
|
+
description: Visible label text for the action button.
|
|
116
|
+
url:
|
|
117
|
+
type: string
|
|
118
|
+
default: ""
|
|
119
|
+
description: Target URL the action button links to.
|
|
120
|
+
icon:
|
|
121
|
+
type: string
|
|
122
|
+
default: ""
|
|
123
|
+
description: >-
|
|
124
|
+
Font Awesome icon class displayed alongside the button text
|
|
125
|
+
(e.g., `fa-solid fa-download`).
|
|
126
|
+
icon_position:
|
|
127
|
+
type: string
|
|
128
|
+
default: "start"
|
|
129
|
+
description: >-
|
|
130
|
+
Position of the icon relative to the button text. Use `start`
|
|
131
|
+
to place the icon before the text or `end` to place it after.
|
|
132
|
+
additionalProperties: false
|
|
133
|
+
actions_class:
|
|
134
|
+
type: string
|
|
135
|
+
default: ""
|
|
136
|
+
description: >-
|
|
137
|
+
CSS classes applied to the actions wrapper `<div>`. Use to align
|
|
138
|
+
or space the action buttons (e.g., `d-flex gap-2`).
|
|
139
|
+
actions_btn_class:
|
|
140
|
+
type: string
|
|
141
|
+
default: "btn m-1 btn-{color}"
|
|
142
|
+
description: >-
|
|
143
|
+
CSS classes applied to each action button. The `{color}` placeholder
|
|
144
|
+
is replaced at render time with the value of the `color` parameter
|
|
145
|
+
(e.g., `btn m-1 btn-primary`).
|
|
146
|
+
additionalProperties: false
|