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,309 @@
|
|
|
1
|
+
---
|
|
2
|
+
#
|
|
3
|
+
# site.data.download.cards - This file controls the information related to
|
|
4
|
+
# downloadable items.
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
- title: "CentOS Stream"
|
|
8
|
+
description: |
|
|
9
|
+
Continuously delivered distro that tracks just ahead of Red Hat Enterprise
|
|
10
|
+
Linux (RHEL) development, positioned as a midstream between Fedora Linux
|
|
11
|
+
and RHEL. For anyone interested in participating and collaborating in the
|
|
12
|
+
RHEL ecosystem, CentOS Stream is your reliable platform for innovation.
|
|
13
|
+
releases:
|
|
14
|
+
9:
|
|
15
|
+
screenshots:
|
|
16
|
+
- src: "distribution-release-screenshot-1.png"
|
|
17
|
+
alt: "distribution-release-screenshot-1.png"
|
|
18
|
+
- src: "distribution-release-screenshot-2.png"
|
|
19
|
+
alt: "distribution-release-screenshot-2.png"
|
|
20
|
+
- src: "distribution-release-screenshot-3.png"
|
|
21
|
+
alt: "distribution-release-screenshot-3.png"
|
|
22
|
+
mirrors:
|
|
23
|
+
- architecture: "x86_64"
|
|
24
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso&redirect=1&protocol=https"
|
|
25
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
26
|
+
cloud: "https://cloud.centos.org/centos/9-stream/x86_64/images"
|
|
27
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
28
|
+
vagrant: ""
|
|
29
|
+
- architecture: "ARM64 (aarch64)"
|
|
30
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/aarch64/iso/CentOS-Stream-9-latest-aarch64-dvd1.iso&redirect=1&protocol=https"
|
|
31
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
32
|
+
cloud: "https://cloud.centos.org/centos/9-stream/aarch64/images"
|
|
33
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
34
|
+
vagrant: ""
|
|
35
|
+
- architecture: "IBM Power (ppc64le)"
|
|
36
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/ppc64le/iso/CentOS-Stream-9-latest-ppc64le-dvd1.iso&redirect=1&protocol=https"
|
|
37
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
38
|
+
cloud: "https://cloud.centos.org/centos/9-stream/ppc64le/images"
|
|
39
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
40
|
+
vagrant: ""
|
|
41
|
+
- architecture: "IBM Z (s390x)"
|
|
42
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/s390x/iso/CentOS-Stream-9-latest-s390x-dvd1.iso&redirect=1&protocol=https"
|
|
43
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
44
|
+
cloud: "https://cloud.centos.org/centos/9-stream/s390x/images"
|
|
45
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
46
|
+
vagrant: ""
|
|
47
|
+
documentation:
|
|
48
|
+
- title: Release Notes
|
|
49
|
+
link: "https://blog.centos.org/2021/12/introducing-centos-stream-9/"
|
|
50
|
+
- title: Release Email
|
|
51
|
+
link: "https://lists.centos.org/pipermail/centos-announce/2021-December/060971.html"
|
|
52
|
+
- title: Website
|
|
53
|
+
link: "https://docs.centos.org/en-US/docs/"
|
|
54
|
+
eol:
|
|
55
|
+
- title: ""
|
|
56
|
+
description: |
|
|
57
|
+
End of RHEL9 <a href="https://access.redhat.com/support/policy/updates/errata#Full_Support_Phase">full support</a> phase.
|
|
58
|
+
8:
|
|
59
|
+
screenshots:
|
|
60
|
+
- src: "distribution-release-screenshot-1.png"
|
|
61
|
+
alt: "distribution-release-screenshot-1.png"
|
|
62
|
+
- src: "distribution-release-screenshot-2.png"
|
|
63
|
+
alt: "distribution-release-screenshot-2.png"
|
|
64
|
+
- src: "distribution-release-screenshot-3.png"
|
|
65
|
+
alt: "distribution-release-screenshot-3.png"
|
|
66
|
+
mirrors:
|
|
67
|
+
- architecture: "x86_64"
|
|
68
|
+
iso: "http://isoredirect.centos.org/centos/8-stream/isos/x86_64/"
|
|
69
|
+
rpm: "http://mirror.centos.org/centos/8-stream/"
|
|
70
|
+
cloud: "https://cloud.centos.org/centos/8-stream/x86_64/images/"
|
|
71
|
+
containers: "https://quay.io/centos/centos:stream8"
|
|
72
|
+
vagrant: ""
|
|
73
|
+
- architecture: "ARM64 (aarch64)"
|
|
74
|
+
iso: "http://isoredirect.centos.org/centos/8-stream/isos/aarch64/"
|
|
75
|
+
rpm: "http://mirror.centos.org/centos/8-stream/"
|
|
76
|
+
cloud: "https://cloud.centos.org/centos/8-stream/aarch64/images/"
|
|
77
|
+
containers: "https://quay.io/centos/centos:stream8"
|
|
78
|
+
vagrant: ""
|
|
79
|
+
- architecture: "IBM Power (ppc64le)"
|
|
80
|
+
iso: "http://isoredirect.centos.org/centos/8-stream/isos/ppc64le/"
|
|
81
|
+
rpm: "http://mirror.centos.org/centos/8-stream/"
|
|
82
|
+
cloud: "https://cloud.centos.org/centos/8-stream/ppc64le/images/"
|
|
83
|
+
containers: "https://quay.io/centos/centos:stream8"
|
|
84
|
+
vagrant: ""
|
|
85
|
+
documentation:
|
|
86
|
+
- title: Release Notes
|
|
87
|
+
link: "https://wiki.centos.org/Manuals/ReleaseNotes/CentOSStream"
|
|
88
|
+
- title: Release Email
|
|
89
|
+
link: "https://lists.centos.org/pipermail/centos-announce/2019-September/023449.html"
|
|
90
|
+
- title: Webiste
|
|
91
|
+
link: "https://docs.centos.org/"
|
|
92
|
+
eol:
|
|
93
|
+
- title: "31 May 2024"
|
|
94
|
+
description: ""
|
|
95
|
+
commands:
|
|
96
|
+
- title: "Converting from CentOS Linux 8 to CentOS Stream 8"
|
|
97
|
+
lines: |-
|
|
98
|
+
dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos
|
|
99
|
+
dnf distro-sync
|
|
100
|
+
|
|
101
|
+
- title: "Fictitious Stream Distribution 1"
|
|
102
|
+
releases:
|
|
103
|
+
v0.1:
|
|
104
|
+
screenshots:
|
|
105
|
+
- src: "distribution-release-screenshot-1.png"
|
|
106
|
+
alt: "distribution-release-screenshot-1.png"
|
|
107
|
+
- src: "distribution-release-screenshot-2.png"
|
|
108
|
+
alt: "distribution-release-screenshot-2.png"
|
|
109
|
+
- src: "distribution-release-screenshot-3.png"
|
|
110
|
+
alt: "distribution-release-screenshot-3.png"
|
|
111
|
+
mirrors:
|
|
112
|
+
- architecture: "x86_64"
|
|
113
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso&redirect=1&protocol=https"
|
|
114
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
115
|
+
cloud: "https://cloud.centos.org/centos/9-stream/x86_64/images"
|
|
116
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
117
|
+
vagrant: ""
|
|
118
|
+
- architecture: "ARM64 (aarch64)"
|
|
119
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/aarch64/iso/CentOS-Stream-9-latest-aarch64-dvd1.iso&redirect=1&protocol=https"
|
|
120
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
121
|
+
cloud: "https://cloud.centos.org/centos/9-stream/aarch64/images"
|
|
122
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
123
|
+
vagrant: ""
|
|
124
|
+
- architecture: "IBM Power (ppc64le)"
|
|
125
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/ppc64le/iso/CentOS-Stream-9-latest-ppc64le-dvd1.iso&redirect=1&protocol=https"
|
|
126
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
127
|
+
cloud: "https://cloud.centos.org/centos/9-stream/ppc64le/images"
|
|
128
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
129
|
+
vagrant: ""
|
|
130
|
+
- architecture: "IBM Z (s390x)"
|
|
131
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/s390x/iso/CentOS-Stream-9-latest-s390x-dvd1.iso&redirect=1&protocol=https"
|
|
132
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
133
|
+
cloud: "https://cloud.centos.org/centos/9-stream/s390x/images"
|
|
134
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
135
|
+
vagrant: ""
|
|
136
|
+
documentation:
|
|
137
|
+
- title: Release Notes
|
|
138
|
+
link: "https://blog.centos.org/2021/12/introducing-centos-stream-9/"
|
|
139
|
+
- title: Release Email
|
|
140
|
+
link: "https://lists.centos.org/pipermail/centos-announce/2021-December/060971.html"
|
|
141
|
+
- title: Website
|
|
142
|
+
link: "https://docs.centos.org/en-US/docs/"
|
|
143
|
+
eol:
|
|
144
|
+
- title: "31 May 2024"
|
|
145
|
+
description: |
|
|
146
|
+
He was soon borne away by the waves, and lost in darkness and
|
|
147
|
+
distance. -- Frankenstein; or, The Modern Prometheus, by Mary
|
|
148
|
+
Shelley (1818)
|
|
149
|
+
commands:
|
|
150
|
+
- title: "Converting from CentOS Linux 8 to CentOS Stream 8"
|
|
151
|
+
lines: |-
|
|
152
|
+
dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos
|
|
153
|
+
dnf distro-sync
|
|
154
|
+
v0.2:
|
|
155
|
+
screenshots:
|
|
156
|
+
- src: "distribution-release-screenshot-1.png"
|
|
157
|
+
alt: "distribution-release-screenshot-1.png"
|
|
158
|
+
- src: "distribution-release-screenshot-2.png"
|
|
159
|
+
alt: "distribution-release-screenshot-2.png"
|
|
160
|
+
- src: "distribution-release-screenshot-3.png"
|
|
161
|
+
alt: "distribution-release-screenshot-3.png"
|
|
162
|
+
mirrors:
|
|
163
|
+
- architecture: "x86_64"
|
|
164
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso&redirect=1&protocol=https"
|
|
165
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
166
|
+
cloud: "https://cloud.centos.org/centos/9-stream/x86_64/images"
|
|
167
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
168
|
+
vagrant: ""
|
|
169
|
+
- architecture: "ARM64 (aarch64)"
|
|
170
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/aarch64/iso/CentOS-Stream-9-latest-aarch64-dvd1.iso&redirect=1&protocol=https"
|
|
171
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
172
|
+
cloud: "https://cloud.centos.org/centos/9-stream/aarch64/images"
|
|
173
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
174
|
+
vagrant: ""
|
|
175
|
+
- architecture: "IBM Power (ppc64le)"
|
|
176
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/ppc64le/iso/CentOS-Stream-9-latest-ppc64le-dvd1.iso&redirect=1&protocol=https"
|
|
177
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
178
|
+
cloud: "https://cloud.centos.org/centos/9-stream/ppc64le/images"
|
|
179
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
180
|
+
vagrant: ""
|
|
181
|
+
- architecture: "IBM Z (s390x)"
|
|
182
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/s390x/iso/CentOS-Stream-9-latest-s390x-dvd1.iso&redirect=1&protocol=https"
|
|
183
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
184
|
+
cloud: "https://cloud.centos.org/centos/9-stream/s390x/images"
|
|
185
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
186
|
+
vagrant: ""
|
|
187
|
+
documentation:
|
|
188
|
+
- title: Release Notes
|
|
189
|
+
link: "https://blog.centos.org/2021/12/introducing-centos-stream-9/"
|
|
190
|
+
- title: Release Email
|
|
191
|
+
link: "https://lists.centos.org/pipermail/centos-announce/2021-December/060971.html"
|
|
192
|
+
- title: Website
|
|
193
|
+
link: "https://docs.centos.org/en-US/docs/"
|
|
194
|
+
eol:
|
|
195
|
+
- title: "31 May 2024"
|
|
196
|
+
description: |
|
|
197
|
+
I got to light out for the territory ahead of the rest, because
|
|
198
|
+
Aunt Sally she’s going to adopt me and sivilize me, and I can’t
|
|
199
|
+
stand it. I been there before. -- Adventures of Huckleberry Finn,”
|
|
200
|
+
by Mark Twain (1884)
|
|
201
|
+
commands:
|
|
202
|
+
- title: "Converting from CentOS Linux 8 to CentOS Stream 8"
|
|
203
|
+
lines: |-
|
|
204
|
+
dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos
|
|
205
|
+
dnf distro-sync
|
|
206
|
+
|
|
207
|
+
- title: "Fictitious Stream Distribution 2"
|
|
208
|
+
releases:
|
|
209
|
+
v0.1:
|
|
210
|
+
screenshots:
|
|
211
|
+
- src: "distribution-release-screenshot-1.png"
|
|
212
|
+
alt: "distribution-release-screenshot-1.png"
|
|
213
|
+
- src: "distribution-release-screenshot-2.png"
|
|
214
|
+
alt: "distribution-release-screenshot-2.png"
|
|
215
|
+
- src: "distribution-release-screenshot-3.png"
|
|
216
|
+
alt: "distribution-release-screenshot-3.png"
|
|
217
|
+
mirrors:
|
|
218
|
+
- architecture: "x86_64"
|
|
219
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso&redirect=1&protocol=https"
|
|
220
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
221
|
+
cloud: "https://cloud.centos.org/centos/9-stream/x86_64/images"
|
|
222
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
223
|
+
vagrant: ""
|
|
224
|
+
- architecture: "ARM64 (aarch64)"
|
|
225
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/aarch64/iso/CentOS-Stream-9-latest-aarch64-dvd1.iso&redirect=1&protocol=https"
|
|
226
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
227
|
+
cloud: "https://cloud.centos.org/centos/9-stream/aarch64/images"
|
|
228
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
229
|
+
vagrant: ""
|
|
230
|
+
- architecture: "IBM Power (ppc64le)"
|
|
231
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/ppc64le/iso/CentOS-Stream-9-latest-ppc64le-dvd1.iso&redirect=1&protocol=https"
|
|
232
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
233
|
+
cloud: "https://cloud.centos.org/centos/9-stream/ppc64le/images"
|
|
234
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
235
|
+
vagrant: ""
|
|
236
|
+
- architecture: "IBM Z (s390x)"
|
|
237
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/s390x/iso/CentOS-Stream-9-latest-s390x-dvd1.iso&redirect=1&protocol=https"
|
|
238
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
239
|
+
cloud: "https://cloud.centos.org/centos/9-stream/s390x/images"
|
|
240
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
241
|
+
vagrant: ""
|
|
242
|
+
documentation:
|
|
243
|
+
- title: Release Notes
|
|
244
|
+
link: "https://blog.centos.org/2021/12/introducing-centos-stream-9/"
|
|
245
|
+
- title: Release Email
|
|
246
|
+
link: "https://lists.centos.org/pipermail/centos-announce/2021-December/060971.html"
|
|
247
|
+
- title: Website
|
|
248
|
+
link: "https://docs.centos.org/en-US/docs/"
|
|
249
|
+
eol:
|
|
250
|
+
- title: "31 May 2024"
|
|
251
|
+
description: |
|
|
252
|
+
Reader, I did not even have coffee with him. That much I learned in
|
|
253
|
+
college. -- A Gate at the Stairs, by Lorrie Moore (2009)
|
|
254
|
+
commands:
|
|
255
|
+
- title: "Converting from CentOS Linux 8 to CentOS Stream 8"
|
|
256
|
+
lines: |-
|
|
257
|
+
dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos
|
|
258
|
+
dnf distro-sync
|
|
259
|
+
v0.2:
|
|
260
|
+
screenshots:
|
|
261
|
+
- src: "distribution-release-screenshot-1.png"
|
|
262
|
+
alt: "distribution-release-screenshot-1.png"
|
|
263
|
+
- src: "distribution-release-screenshot-2.png"
|
|
264
|
+
alt: "distribution-release-screenshot-2.png"
|
|
265
|
+
- src: "distribution-release-screenshot-3.png"
|
|
266
|
+
alt: "distribution-release-screenshot-3.png"
|
|
267
|
+
mirrors:
|
|
268
|
+
- architecture: "x86_64"
|
|
269
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso&redirect=1&protocol=https"
|
|
270
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
271
|
+
cloud: "https://cloud.centos.org/centos/9-stream/x86_64/images"
|
|
272
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
273
|
+
vagrant: ""
|
|
274
|
+
- architecture: "ARM64 (aarch64)"
|
|
275
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/aarch64/iso/CentOS-Stream-9-latest-aarch64-dvd1.iso&redirect=1&protocol=https"
|
|
276
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
277
|
+
cloud: "https://cloud.centos.org/centos/9-stream/aarch64/images"
|
|
278
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
279
|
+
vagrant: ""
|
|
280
|
+
- architecture: "IBM Power (ppc64le)"
|
|
281
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/ppc64le/iso/CentOS-Stream-9-latest-ppc64le-dvd1.iso&redirect=1&protocol=https"
|
|
282
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
283
|
+
cloud: "https://cloud.centos.org/centos/9-stream/ppc64le/images"
|
|
284
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
285
|
+
vagrant: ""
|
|
286
|
+
- architecture: "IBM Z (s390x)"
|
|
287
|
+
iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/s390x/iso/CentOS-Stream-9-latest-s390x-dvd1.iso&redirect=1&protocol=https"
|
|
288
|
+
rpm: "http://mirror.stream.centos.org/9-stream/"
|
|
289
|
+
cloud: "https://cloud.centos.org/centos/9-stream/s390x/images"
|
|
290
|
+
containers: "https://quay.io/centos/centos:stream9"
|
|
291
|
+
vagrant: ""
|
|
292
|
+
documentation:
|
|
293
|
+
- title: Release Notes
|
|
294
|
+
link: "https://blog.centos.org/2021/12/introducing-centos-stream-9/"
|
|
295
|
+
- title: Release Email
|
|
296
|
+
link: "https://lists.centos.org/pipermail/centos-announce/2021-December/060971.html"
|
|
297
|
+
- title: Website
|
|
298
|
+
link: "https://docs.centos.org/en-US/docs/"
|
|
299
|
+
eol:
|
|
300
|
+
- title: "31 May 2024"
|
|
301
|
+
description: |
|
|
302
|
+
It's funny. Don't ever tell anybody anything. If you do, you start
|
|
303
|
+
missing everybody. -- "The Catcher in the Rye," by J.D. Salinger
|
|
304
|
+
(1951)
|
|
305
|
+
commands:
|
|
306
|
+
- title: "Converting from CentOS Linux 8 to CentOS Stream 8"
|
|
307
|
+
lines: |-
|
|
308
|
+
dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos
|
|
309
|
+
dnf distro-sync
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{%- comment %}
|
|
2
|
+
================================================================================
|
|
3
|
+
Template: Announcement Component
|
|
4
|
+
Purpose: Renders dismissible alert boxes with icon and content.
|
|
5
|
+
================================================================================
|
|
6
|
+
|
|
7
|
+
Design Logic:
|
|
8
|
+
- Multi-level data source hierarchy for flexibility
|
|
9
|
+
- Dismissible alerts for user visibility management
|
|
10
|
+
- Icon and color support for visual categorization
|
|
11
|
+
- Looping structure for multiple announcements
|
|
12
|
+
- Consistent fallback chain for content
|
|
13
|
+
|
|
14
|
+
Required Inputs:
|
|
15
|
+
- content: The announcement message or HTML content
|
|
16
|
+
|
|
17
|
+
Optional Inputs:
|
|
18
|
+
- data: Array of announcement objects (overrides fallbacks)
|
|
19
|
+
- color: Alert color scheme (default: 'primary')
|
|
20
|
+
- icon: Icon class for Font Awesome (default: 'fa-solid fa-bullhorn')
|
|
21
|
+
|
|
22
|
+
Data Source Hierarchy (priority):
|
|
23
|
+
1. include.data
|
|
24
|
+
2. page.with_announcement_data
|
|
25
|
+
3. site.data.announcement
|
|
26
|
+
4. site.data.base.announcement
|
|
27
|
+
================================================================================
|
|
28
|
+
{%- endcomment %}
|
|
29
|
+
|
|
30
|
+
{%- assign with_announcement = include.with_announcement
|
|
31
|
+
| default: page.with_announcement
|
|
32
|
+
%}
|
|
33
|
+
|
|
34
|
+
{%- assign with_announcement_data = include.data
|
|
35
|
+
| default: page.with_announcement_data
|
|
36
|
+
| default: site.data.announcement
|
|
37
|
+
| default: site.data.base.announcement
|
|
38
|
+
%}
|
|
39
|
+
|
|
40
|
+
{%- if with_announcement %}
|
|
41
|
+
|
|
42
|
+
{%- assign with_announcement_schema = site.data.base.announcement_schema.properties.with_announcement_data.items.properties %}
|
|
43
|
+
|
|
44
|
+
{%- comment %} === Presentation === {% endcomment %}
|
|
45
|
+
{%- for announcement in with_announcement_data %}
|
|
46
|
+
|
|
47
|
+
{%- comment %} --- Defaults --- {% endcomment %}
|
|
48
|
+
{%- assign announcement_color = announcement.color | default: with_announcement_schema.color.default %}
|
|
49
|
+
{%- assign announcement_icon = announcement.icon | default: with_announcement_schema.icon.default %}
|
|
50
|
+
|
|
51
|
+
{%- comment %} --- HTML --- {% endcomment %}
|
|
52
|
+
<div class="announcement alert alert-{{ announcement_color }} alert-dismissible fade show shadow mb-3" role="alert">
|
|
53
|
+
<div class="d-flex justify-content-between align-items-center">
|
|
54
|
+
<div class="me-3">
|
|
55
|
+
<div class="h6 my-1"><i class="{{ announcement_icon }}"></i></div>
|
|
56
|
+
</div>
|
|
57
|
+
<p class="flex-fill text-start mb-0">
|
|
58
|
+
{{- announcement.content }}
|
|
59
|
+
</p>
|
|
60
|
+
</div>
|
|
61
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
62
|
+
</div>
|
|
63
|
+
{%- endfor %}
|
|
64
|
+
|
|
65
|
+
{%- endif -%}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{% comment %}
|
|
2
|
+
================================================================================
|
|
3
|
+
Template: Artwork Component
|
|
4
|
+
Purpose: Renders responsive images with intelligent URL resolution.
|
|
5
|
+
Supports external URLs (http/https) and local asset paths.
|
|
6
|
+
================================================================================
|
|
7
|
+
|
|
8
|
+
Design Logic:
|
|
9
|
+
- Smart URL resolution: detects external vs internal URLs
|
|
10
|
+
- External URLs (http/https) rendered as-is
|
|
11
|
+
- Internal paths prefixed with site.baseurl
|
|
12
|
+
- Schema-based defaults for consistent styling
|
|
13
|
+
- Alt text support for accessibility
|
|
14
|
+
|
|
15
|
+
Required Inputs:
|
|
16
|
+
- image: Image filename or full URL
|
|
17
|
+
|
|
18
|
+
Optional Inputs:
|
|
19
|
+
- alt: Alt text for accessibility
|
|
20
|
+
- class: Container div CSS classes
|
|
21
|
+
- image_class: Image element CSS classes
|
|
22
|
+
- data: Artwork data object (overrides fallbacks)
|
|
23
|
+
|
|
24
|
+
Data Source Hierarchy (priority):
|
|
25
|
+
1. include.data
|
|
26
|
+
2. page.with_artwork_data
|
|
27
|
+
3. site.data.artwork
|
|
28
|
+
4. site.data.base.artwork
|
|
29
|
+
================================================================================
|
|
30
|
+
{% endcomment %}
|
|
31
|
+
|
|
32
|
+
{%- assign with_artwork = include.with_artwork
|
|
33
|
+
| default: page.with_artwork
|
|
34
|
+
%}
|
|
35
|
+
|
|
36
|
+
{%- assign with_artwork_data = include.data
|
|
37
|
+
| default: page.with_artwork_data
|
|
38
|
+
| default: site.data.artwork
|
|
39
|
+
| default: site.data.base.artwork
|
|
40
|
+
%}
|
|
41
|
+
|
|
42
|
+
{%- if with_artwork %}
|
|
43
|
+
|
|
44
|
+
{%- assign with_artwork_schema = site.data.base.artwork_schema.properties.with_artwork_data.properties %}
|
|
45
|
+
|
|
46
|
+
{%- comment %} === Presentation === {% endcomment %}
|
|
47
|
+
|
|
48
|
+
{%- comment %} --- Defaults --- {% endcomment %}
|
|
49
|
+
{%- assign artwork_image = with_artwork_data.image | default: with_artwork_schema.image.default %}
|
|
50
|
+
{%- assign artwork_alt = with_artwork_data.alt | default: with_artwork_schema.alt.default %}
|
|
51
|
+
{%- assign artwork_class = with_artwork_data.class | default: with_artwork_schema.class.default %}
|
|
52
|
+
{%- assign artwork_image_class = with_artwork_data.image_class | default: with_artwork_schema.image_class.default %}
|
|
53
|
+
|
|
54
|
+
{%- comment %} --- HTML --- {% endcomment %}
|
|
55
|
+
<div class="{{ artwork_class }}">
|
|
56
|
+
{%- if artwork_image contains "://" %}
|
|
57
|
+
<img src="{{ artwork_image }}" class="{{ artwork_image_class }}" alt="{{ artwork_alt }}" />
|
|
58
|
+
{%- else %}
|
|
59
|
+
<img src="{{ site.baseurl }}{{ artwork_image }}" class="{{ artwork_image_class }}" alt="{{ artwork_alt }}" />
|
|
60
|
+
{%- endif %}
|
|
61
|
+
</div>
|
|
62
|
+
|
|
63
|
+
{%- endif -%}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{% comment %}
|
|
2
|
+
================================================================================
|
|
3
|
+
Template: Back-to-Top Button Component
|
|
4
|
+
Purpose: Loads vanilla-back-to-top library for floating scroll-to-top button.
|
|
5
|
+
Customizable size and colors with CDN-based loading.
|
|
6
|
+
================================================================================
|
|
7
|
+
|
|
8
|
+
Design Logic:
|
|
9
|
+
- CDN-based library loading for performance
|
|
10
|
+
- Configurable button size (diameter) and colors
|
|
11
|
+
- Floating button widget (standard UX pattern)
|
|
12
|
+
- Vanilla JavaScript (no jQuery dependency)
|
|
13
|
+
- Schema-based defaults
|
|
14
|
+
|
|
15
|
+
Optional Inputs:
|
|
16
|
+
- cdn: CDN base URL (defaults to unpkg.com)
|
|
17
|
+
- version: Library version (e.g., "7.0.4")
|
|
18
|
+
- diameter: Button diameter in pixels (default: 56)
|
|
19
|
+
- background_color: Button background color (CSS hex)
|
|
20
|
+
- text_color: Button text/icon color (CSS hex)
|
|
21
|
+
- data: Configuration object (overrides fallbacks)
|
|
22
|
+
|
|
23
|
+
Data Source Hierarchy (priority):
|
|
24
|
+
1. include.data
|
|
25
|
+
2. page.with_backtotop_data
|
|
26
|
+
3. site.data.backtotop
|
|
27
|
+
4. site.data.base.backtotop
|
|
28
|
+
================================================================================
|
|
29
|
+
{% endcomment %}
|
|
30
|
+
|
|
31
|
+
{%- assign with_backtotop = include.with_backtotop
|
|
32
|
+
| default: page.with_backtotop
|
|
33
|
+
%}
|
|
34
|
+
|
|
35
|
+
{%- assign with_backtotop_data = include.data
|
|
36
|
+
| default: page.with_backtotop_data
|
|
37
|
+
| default: site.data.backtotop
|
|
38
|
+
| default: site.data.base.backtotop
|
|
39
|
+
%}
|
|
40
|
+
|
|
41
|
+
{%- assign with_backtotop_schema = site.data.base.backtotop_schema.properties.with_backtotop_data.properties %}
|
|
42
|
+
|
|
43
|
+
{%- if with_backtotop %}
|
|
44
|
+
|
|
45
|
+
{%- comment %} === Presentation === {% endcomment %}
|
|
46
|
+
|
|
47
|
+
{%- comment %} --- Defaults --- {% endcomment %}
|
|
48
|
+
{%- assign backtotop_cdn = with_backtotop_data.cdn | default: with_backtotop_schema.cdn.default %}
|
|
49
|
+
{%- assign backtotop_version = with_backtotop_data.version | default: with_backtotop_schema.version.default %}
|
|
50
|
+
{%- assign backtotop_script_integrity = with_backtotop_data.script_integrity | default: with_backtotop_schema.script_integrity.default %}
|
|
51
|
+
{%- assign backtotop_diameter = with_backtotop_data.diameter | default: with_backtotop_schema.diameter.default %}
|
|
52
|
+
{%- assign backtotop_background_color = with_backtotop_data.background_color | default: with_backtotop_schema.background_color.default %}
|
|
53
|
+
{%- assign backtotop_text_color = with_backtotop_data.text_color | default: with_backtotop_schema.text_color.default %}
|
|
54
|
+
|
|
55
|
+
{%- comment %} --- HTML --- {% endcomment %}
|
|
56
|
+
<!-- Load vanilla-back-to-top library from CDN -->
|
|
57
|
+
<script src="{{ backtotop_cdn }}/vanilla-back-to-top@{{ backtotop_version }}/dist/vanilla-back-to-top.min.js" integrity="{{ backtotop_script_integrity }}" crossorigin="anonymous" referrerpolicy="no-referrer" defer></script>
|
|
58
|
+
|
|
59
|
+
<!-- Initialize back-to-top button with configuration via data attributes -->
|
|
60
|
+
<script id="centos-backtop"
|
|
61
|
+
{%- if with_backtotop_data.diameter %}
|
|
62
|
+
data-diameter="{{ backtotop_diameter }}"
|
|
63
|
+
{%- endif %}
|
|
64
|
+
{%- if with_backtotop_data.background_color %}
|
|
65
|
+
data-background-color="{{ backtotop_background_color }}"
|
|
66
|
+
{%- endif %}
|
|
67
|
+
{%- if with_backtotop_data.text_color %}
|
|
68
|
+
data-text-color="{{ backtotop_text_color }}"
|
|
69
|
+
{%- endif %}
|
|
70
|
+
src="{{ site.baseurl }}/assets/js/base/backtotop.min.js"
|
|
71
|
+
defer></script>
|
|
72
|
+
|
|
73
|
+
{%- endif %}
|