jekyll-theme-centos 0.0.0 → 0.1.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 +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +66 -0
- data/_includes/centos-content/1col.html +11 -0
- data/_includes/centos-content/2col.html +15 -0
- data/_includes/centos-content/admonition/caution.html +4 -0
- data/_includes/centos-content/admonition/idea.html +4 -0
- data/_includes/centos-content/admonition/note.html +4 -0
- data/_includes/centos-content/admonition/warning.html +4 -0
- data/_includes/centos-content/around.html +6 -0
- data/_includes/centos-content/breadcrumbs.html +11 -0
- data/_includes/centos-content/download/stream-8-doc.html +5 -0
- data/_includes/centos-content/download/stream-8-eol.html +5 -0
- data/_includes/centos-content/download/stream-8.html +5 -0
- data/_includes/centos-content/download/stream.html +16 -0
- data/_includes/centos-content/download/table-body-doc.html +6 -0
- data/_includes/centos-content/download/table-body-eol.html +4 -0
- data/_includes/centos-content/download/table-body.html +7 -0
- data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
- data/_includes/centos-content/download/table-header-doc.html +8 -0
- data/_includes/centos-content/download/table-header-eol.html +8 -0
- data/_includes/centos-content/download/table-header.html +10 -0
- data/_includes/centos-content/figure.html +4 -0
- data/_includes/centos-content/news.html +15 -0
- data/_includes/centos-content/sponsors.html +19 -0
- data/_includes/centos-content/toc.html +103 -0
- data/_includes/centos-content/video.html +3 -0
- data/_includes/centos-footer.html +42 -0
- data/_includes/centos-head.html +7 -0
- data/_includes/centos-header/home.html +15 -0
- data/_includes/centos-header/page.html +12 -0
- data/_includes/centos-header.html +7 -0
- data/_includes/centos-nav.html +29 -0
- data/_includes/centos-styleguide.md +243 -0
- data/_layouts/centos-content/1col.html +9 -0
- data/_layouts/centos-content/2col.html +9 -0
- data/_layouts/centos-content/download-mirror.html +30 -0
- data/_layouts/centos-content/download.html +18 -0
- data/_layouts/centos-content/sponsors.html +21 -0
- data/_layouts/centos-home.html +39 -0
- data/_layouts/default.html +18 -0
- data/_layouts/{download/cards.html → page.html} +0 -2
- data/_layouts/post.html +5 -0
- data/_sass/bootstrap/_alert.scss +16 -32
- data/_sass/bootstrap/_badge.scss +31 -15
- data/_sass/bootstrap/_breadcrumb.scss +27 -23
- data/_sass/bootstrap/_button-group.scss +48 -32
- data/_sass/bootstrap/_buttons.scss +71 -145
- data/_sass/bootstrap/_card.scss +123 -75
- data/_sass/bootstrap/_carousel.scss +39 -68
- data/_sass/bootstrap/_close.scss +27 -53
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +524 -0
- data/_sass/bootstrap/_dropdown.scss +71 -129
- data/_sass/bootstrap/_forms.scss +347 -9
- data/_sass/bootstrap/_functions.scss +23 -181
- data/_sass/bootstrap/_grid.scss +52 -18
- data/_sass/bootstrap/_images.scss +1 -1
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +48 -93
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +15 -10
- data/_sass/bootstrap/_modal.scss +112 -112
- data/_sass/bootstrap/_nav.scss +29 -103
- data/_sass/bootstrap/_navbar.scss +171 -136
- data/_sass/bootstrap/_pagination.scss +37 -72
- data/_sass/bootstrap/_popover.scss +73 -99
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +15 -36
- data/_sass/bootstrap/_reboot.scss +200 -333
- data/_sass/bootstrap/_root.scss +10 -177
- data/_sass/bootstrap/_spinners.scss +22 -52
- data/_sass/bootstrap/_tables.scss +115 -101
- data/_sass/bootstrap/_toasts.scss +27 -54
- data/_sass/bootstrap/_tooltip.scss +63 -67
- data/_sass/bootstrap/_transitions.scss +1 -8
- data/_sass/bootstrap/_type.scss +59 -40
- data/_sass/bootstrap/_utilities.scss +18 -806
- data/_sass/bootstrap/_variables.scss +611 -1222
- data/_sass/bootstrap/bootstrap-grid.scss +20 -53
- data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
- data/_sass/bootstrap/bootstrap.scss +13 -21
- data/_sass/bootstrap/mixins/_alert.scss +6 -11
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
- data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
- data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
- data/_sass/bootstrap/mixins/_buttons.scss +100 -60
- data/_sass/bootstrap/mixins/_caret.scss +27 -34
- data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
- data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +78 -63
- data/_sass/bootstrap/mixins/_gradients.scss +11 -13
- data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
- data/_sass/bootstrap/mixins/_grid.scss +37 -119
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +21 -1
- data/_sass/bootstrap/mixins/_list-group.scss +2 -7
- data/_sass/bootstrap/mixins/_lists.scss +1 -1
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +19 -7
- data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
- data/_sass/bootstrap/mixins/_resize.scss +0 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
- data/_sass/bootstrap/mixins/_transition.scss +1 -1
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +72 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +132 -276
- data/_sass/centos/_content.scss +101 -0
- data/_sass/centos/_datatable.scss +271 -0
- data/_sass/centos/_fonts.scss +1 -0
- data/_sass/centos/_footer.scss +49 -0
- data/_sass/centos/_header.scss +25 -0
- data/_sass/centos/_highlighter.scss +360 -0
- data/_sass/centos/_mixins.scss +4 -0
- data/_sass/centos/_nav.scss +10 -0
- data/_sass/centos/_rssfeeds.scss +17 -0
- data/_sass/centos/_variables.scss +111 -0
- data/_sass/centos/centos.scss +23 -0
- data/_sass/centos/content/_1col.scss +32 -0
- data/_sass/centos/content/_2col.scss +44 -0
- data/_sass/centos/content/_download.scss +17 -0
- data/_sass/centos/content/_sponsors.scss +9 -0
- data/_sass/centos/fonts/_montserrat.scss +256 -0
- data/_sass/centos/header/_home.scss +4 -0
- data/_sass/centos/header/_page.scss +4 -0
- data/_sass/centos/mixins/_content-card.scss +13 -0
- data/_sass/centos/mixins/_content-heading.scss +28 -0
- data/_sass/centos/mixins/_content-toc.scss +18 -0
- data/_sass/centos/mixins/_footer-link.scss +10 -0
- data/_sass/fontawesome/_animated.scss +20 -0
- data/_sass/fontawesome/_bordered-pulled.scss +20 -0
- data/_sass/fontawesome/_core.scss +21 -0
- data/_sass/fontawesome/_fixed-width.scss +6 -0
- data/_sass/fontawesome/_icons.scss +1462 -0
- data/_sass/fontawesome/_larger.scss +23 -0
- data/_sass/fontawesome/_list.scss +18 -0
- data/_sass/fontawesome/_mixins.scss +56 -0
- data/_sass/fontawesome/_rotated-flipped.scss +24 -0
- data/_sass/fontawesome/_screen-reader.scss +5 -0
- data/_sass/fontawesome/_shims.scss +2066 -0
- data/_sass/fontawesome/_stacked.scss +31 -0
- data/_sass/fontawesome/_variables.scss +1479 -0
- data/_sass/fontawesome/brands.scss +23 -0
- data/_sass/fontawesome/fontawesome.scss +16 -0
- data/_sass/fontawesome/regular.scss +23 -0
- data/_sass/fontawesome/solid.scss +24 -0
- data/_sass/fontawesome/v4-shims.scss +6 -0
- data/assets/css/centos.bootstrap.min.scss +4 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat.css +327 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/README.MD +35 -0
- data/assets/fonts/fa-brands-400.eot +0 -0
- data/assets/fonts/fa-brands-400.svg +3717 -0
- data/assets/fonts/fa-brands-400.ttf +0 -0
- data/assets/fonts/fa-brands-400.woff +0 -0
- data/assets/fonts/fa-brands-400.woff2 +0 -0
- data/assets/fonts/fa-regular-400.eot +0 -0
- data/assets/fonts/fa-regular-400.svg +801 -0
- data/assets/fonts/fa-regular-400.ttf +0 -0
- data/assets/fonts/fa-regular-400.woff +0 -0
- data/assets/fonts/fa-regular-400.woff2 +0 -0
- data/assets/fonts/fa-solid-900.eot +0 -0
- data/assets/fonts/fa-solid-900.svg +5028 -0
- data/assets/fonts/fa-solid-900.ttf +0 -0
- data/assets/fonts/fa-solid-900.woff +0 -0
- data/assets/fonts/fa-solid-900.woff2 +0 -0
- data/assets/img/centos-logo-white.png +0 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/favicon.png +0 -0
- data/assets/js/bootstrap.min.js +4 -4
- data/assets/js/bootstrap.min.js.map +1 -1
- data/assets/js/dataTables.bootstrap4.min.js +14 -0
- data/assets/js/jquery.dataTables.min.js +184 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.rss.js +11 -0
- data/assets/js/moment.min.js +7 -0
- metadata +238 -492
- data/_config.yml +0 -196
- data/_data/base/announcement_schema.yml +0 -49
- data/_data/base/artwork_schema.yml +0 -46
- data/_data/base/backtotop_schema.yml +0 -59
- data/_data/base/bits.yml +0 -96
- data/_data/base/bits_schema.yml +0 -185
- data/_data/base/breadcrumb_schema.yml +0 -27
- data/_data/base/breakingnews_schema.yml +0 -67
- data/_data/base/card_schema.yml +0 -146
- data/_data/base/color.yml +0 -1042
- data/_data/base/color_schema.yml +0 -1036
- data/_data/base/configuration_variables_schema.yml +0 -42
- data/_data/base/content.yml +0 -2
- data/_data/base/content_schema.yml +0 -26
- data/_data/base/copyright.yml +0 -12
- data/_data/base/copyright_schema.yml +0 -74
- data/_data/base/copyvalue_schema.yml +0 -49
- data/_data/base/datatable_schema.yml +0 -57
- data/_data/base/event_schema.yml +0 -130
- data/_data/base/fontawesome_schema.yml +0 -62
- data/_data/base/footer.yml +0 -9
- data/_data/base/footer_schema.yml +0 -55
- data/_data/base/head_schema.yml +0 -19
- data/_data/base/heading_anchor.yml +0 -2
- data/_data/base/heading_anchor_schema.yml +0 -37
- data/_data/base/highlight_schema.yml +0 -98
- data/_data/base/image_schema.yml +0 -34
- data/_data/base/languages.yml +0 -186
- data/_data/base/link_schema.yml +0 -187
- data/_data/base/locales_schema.yml +0 -158
- data/_data/base/navbar.yml +0 -20
- data/_data/base/navbar_schema.yml +0 -129
- data/_data/base/navindex_schema.yml +0 -67
- data/_data/base/ogp.yml +0 -24
- data/_data/base/ogp_schema.yml +0 -192
- data/_data/base/project.yml +0 -37
- data/_data/base/project_schema.yml +0 -124
- data/_data/base/script_schema.yml +0 -41
- data/_data/base/shortcut_schema.yml +0 -74
- data/_data/base/social.yml +0 -26
- data/_data/base/social_schema.yml +0 -57
- data/_data/base/sponsors.yml +0 -41
- data/_data/base/sponsors_schema.yml +0 -73
- data/_data/base/title_schema.yml +0 -49
- data/_data/base/toc_schema.yml +0 -114
- data/_data/download/cards.yml +0 -309
- data/_data/download/navbar.yml +0 -11
- data/_includes/base/announcement.html.liquid +0 -65
- data/_includes/base/artwork.html.liquid +0 -63
- data/_includes/base/backtotop.html.liquid +0 -73
- data/_includes/base/bits.html.liquid +0 -152
- data/_includes/base/breadcrumb.html.liquid +0 -77
- data/_includes/base/breakingnews.html.liquid +0 -90
- data/_includes/base/card.html.liquid +0 -110
- data/_includes/base/color-table.html.liquid +0 -33
- data/_includes/base/configuration_variables-nested.html.liquid +0 -98
- data/_includes/base/configuration_variables.html.liquid +0 -98
- data/_includes/base/content.html.liquid +0 -7
- data/_includes/base/copyright.html.liquid +0 -70
- data/_includes/base/copyvalue.html.liquid +0 -82
- data/_includes/base/datatable.html.liquid +0 -83
- data/_includes/base/event.html.liquid +0 -105
- data/_includes/base/fontawesome.html.liquid +0 -91
- data/_includes/base/footer.html.liquid +0 -69
- data/_includes/base/head.html.liquid +0 -135
- data/_includes/base/heading_anchor.html.liquid +0 -67
- data/_includes/base/highlight.html.liquid +0 -84
- data/_includes/base/image.html.liquid +0 -42
- data/_includes/base/link.html.liquid +0 -129
- data/_includes/base/locales.html.liquid +0 -78
- data/_includes/base/navbar.html.liquid +0 -121
- data/_includes/base/navindex.html.liquid +0 -200
- data/_includes/base/ogp.html.liquid +0 -144
- data/_includes/base/project.html.liquid +0 -104
- data/_includes/base/shortcut.html.liquid +0 -77
- data/_includes/base/social.html.liquid +0 -76
- data/_includes/base/sponsors-cards.html.liquid +0 -69
- data/_includes/base/sponsors-carousel.html.liquid +0 -91
- data/_includes/base/title.html.liquid +0 -65
- data/_includes/base/toc-generator.html.liquid +0 -189
- data/_includes/base/toc.html.liquid +0 -95
- data/_includes/download/cards-body-commands.html +0 -7
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-documentation.html +0 -11
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-mirrors.html +0 -8
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body-screenshots.html +0 -32
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-header-commands.html +0 -8
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-documentation.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-mirrors.html +0 -13
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header-screenshots.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -120
- data/_layouts/base/default.html +0 -68
- data/_layouts/download/default.html +0 -7
- data/_layouts/people/default.html +0 -68
- data/_sass/base/_customization.scss +0 -331
- data/_sass/base/_light-dark.scss +0 -10
- data/_sass/base/_maps.scss +0 -104
- data/_sass/base/_variables.scss +0 -232
- data/_sass/bootstrap/_accordion.scss +0 -153
- data/_sass/bootstrap/_containers.scss +0 -41
- data/_sass/bootstrap/_helpers.scss +0 -12
- data/_sass/bootstrap/_maps.scss +0 -174
- data/_sass/bootstrap/_offcanvas.scss +0 -147
- data/_sass/bootstrap/_placeholders.scss +0 -51
- data/_sass/bootstrap/_variables-dark.scss +0 -102
- data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
- data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
- data/_sass/bootstrap/forms/_form-check.scss +0 -189
- data/_sass/bootstrap/forms/_form-control.scss +0 -214
- data/_sass/bootstrap/forms/_form-range.scss +0 -91
- data/_sass/bootstrap/forms/_form-select.scss +0 -80
- data/_sass/bootstrap/forms/_form-text.scss +0 -11
- data/_sass/bootstrap/forms/_input-group.scss +0 -132
- data/_sass/bootstrap/forms/_labels.scss +0 -36
- data/_sass/bootstrap/forms/_validation.scss +0 -12
- data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
- data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
- data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
- data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
- data/_sass/bootstrap/helpers/_position.scss +0 -36
- data/_sass/bootstrap/helpers/_ratio.scss +0 -26
- data/_sass/bootstrap/helpers/_stacks.scss +0 -15
- data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
- data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
- data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
- data/_sass/bootstrap/helpers/_vr.scss +0 -8
- data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
- data/_sass/bootstrap/mixins/_banner.scss +0 -7
- data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
- data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
- data/_sass/bootstrap/mixins/_container.scss +0 -11
- data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
- data/_sass/bootstrap/mixins/_utilities.scss +0 -97
- data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
- data/_sass/bootstrap/utilities/_api.scss +0 -47
- data/assets/css/base/stylesheet.min.scss +0 -35
- 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 +0 -1
- data/assets/img/anaconda-symbolic.svg +0 -1
- data/assets/img/anaconda.svg +0 -1
- data/assets/img/base/centos-colors.gpl +0 -55
- data/assets/img/base/example-ogp-image.svg +0 -297
- data/assets/img/base/example-sponsors-design.svg +0 -226
- data/assets/img/base/example-sponsors-logo-1.svg +0 -120
- data/assets/img/base/example-sponsors-logo-2.svg +0 -116
- data/assets/img/base/example-sponsors-logo-3.svg +0 -123
- data/assets/img/base/example-sponsors-logo-4.svg +0 -116
- data/assets/img/base/example-sponsors-logo-5.svg +0 -116
- data/assets/img/base/example-sponsors-logo-6.svg +0 -116
- data/assets/img/base/example-sponsors-logo-7.svg +0 -116
- data/assets/img/base/example-sponsors-logo-8.svg +0 -110
- data/assets/img/base/page-layout-default.svg +0 -1217
- data/assets/img/base/page-with-alert.svg +0 -383
- data/assets/img/base/page-with-announcement.svg +0 -956
- data/assets/img/base/page-with-artwork.svg +0 -1009
- data/assets/img/base/page-with-backtotop.svg +0 -1009
- data/assets/img/base/page-with-bits.svg +0 -891
- data/assets/img/base/page-with-breadcrumb.svg +0 -676
- data/assets/img/base/page-with-breakingnews.svg +0 -957
- data/assets/img/base/page-with-color.svg +0 -57
- data/assets/img/base/page-with-copyright.svg +0 -1018
- data/assets/img/base/page-with-copyvalue.svg +0 -57
- data/assets/img/base/page-with-datatable.svg +0 -857
- data/assets/img/base/page-with-event.svg +0 -518
- data/assets/img/base/page-with-fontawesome.svg +0 -147
- data/assets/img/base/page-with-footer.svg +0 -1018
- data/assets/img/base/page-with-heading.svg +0 -57
- data/assets/img/base/page-with-highlight.svg +0 -86
- data/assets/img/base/page-with-image.svg +0 -57
- data/assets/img/base/page-with-link.svg +0 -57
- data/assets/img/base/page-with-locales.svg +0 -1009
- data/assets/img/base/page-with-navbar.svg +0 -958
- data/assets/img/base/page-with-navindex.svg +0 -279
- data/assets/img/base/page-with-ogp.svg +0 -401
- data/assets/img/base/page-with-project.svg +0 -423
- data/assets/img/base/page-with-shortcut.svg +0 -937
- data/assets/img/base/page-with-social.svg +0 -937
- data/assets/img/base/page-with-sponsors.svg +0 -937
- data/assets/img/base/page-with-title.svg +0 -584
- data/assets/img/base/page-with-toc.svg +0 -399
- data/assets/img/base/screenshot-1200x600.svg +0 -114
- data/assets/img/centos-dynamicmsg-logo.svg +0 -1
- data/assets/img/centos-dynamicmsg-type.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
- data/assets/img/centos-gdm-whitelogo.svg +0 -1
- data/assets/img/centos-ipa-whiteheader.svg +0 -1
- data/assets/img/centos-logo-2bits.svg +0 -1
- data/assets/img/centos-logo.svg +0 -1
- data/assets/img/centos-message-logo.svg +0 -1
- data/assets/img/centos-poweredby-logo.svg +0 -1
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +0 -1
- data/assets/img/centos-symbol.svg +0 -1
- data/assets/img/centos-type.svg +0 -1
- data/assets/img/centos-vertical-logo.svg +0 -1
- data/assets/img/centos-vertical-message-logo.svg +0 -1
- data/assets/img/centos-whitelogo.svg +0 -1
- 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 +0 -134
- data/assets/img/download/download.svg +0 -421
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +0 -900
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +0 -20
- data/assets/js/base/copyvalue.js +0 -145
- data/assets/js/base/datatable.js +0 -41
- data/assets/js/base/heading-anchor.js +0 -108
- data/assets/js/base/highlight.js +0 -12
- data/assets/js/base/init-tooltips.js +0 -12
- data/assets/js/bootstrap.bundle.js +0 -6312
- data/assets/js/bootstrap.bundle.js.map +0 -1
- data/assets/js/bootstrap.bundle.min.js +0 -7
- data/assets/js/bootstrap.bundle.min.js.map +0 -1
- data/assets/js/bootstrap.esm.js +0 -4447
- data/assets/js/bootstrap.esm.js.map +0 -1
- data/assets/js/bootstrap.esm.min.js +0 -7
- data/assets/js/bootstrap.esm.min.js.map +0 -1
- data/assets/js/bootstrap.js +0 -4494
- data/assets/js/bootstrap.js.map +0 -1
- data/site.webmanifest +0 -11
data/_data/download/cards.yml
DELETED
|
@@ -1,309 +0,0 @@
|
|
|
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
|
data/_data/download/navbar.yml
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
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 -%}
|
|
@@ -1,63 +0,0 @@
|
|
|
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 -%}
|
|
@@ -1,73 +0,0 @@
|
|
|
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 %}
|