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
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
## Headings
|
|
2
|
+
|
|
3
|
+
### Heading three
|
|
4
|
+
|
|
5
|
+
```markdown
|
|
6
|
+
### Heading three
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
#### Heading four
|
|
10
|
+
|
|
11
|
+
```markdown
|
|
12
|
+
#### Heading four
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
##### Heading five
|
|
16
|
+
|
|
17
|
+
```markdown
|
|
18
|
+
##### Heading five
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
###### Heading six
|
|
22
|
+
|
|
23
|
+
```markdown
|
|
24
|
+
###### Heading six
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Paragraphs
|
|
28
|
+
|
|
29
|
+
Incididunt ex adipisicing ea ullamco consectetur in voluptate proident fugiat tempor deserunt reprehenderit ullamco id dolore laborum. Do laboris laboris minim incididunt qui consectetur exercitation adipisicing dolore et magna consequat magna anim sunt. Officia fugiat Lorem sunt pariatur incididunt Lorem reprehenderit proident irure. Dolore ipsum aliqua mollit ad officia fugiat sit eu aliquip cupidatat ipsum duis laborum laborum fugiat esse. Voluptate anim ex dolore deserunt ea ex eiusmod irure. Occaecat excepteur aliqua exercitation aliquip dolor esse eu eu.
|
|
30
|
+
|
|
31
|
+
Officia dolore laborum aute incididunt commodo nisi velit est est elit et dolore elit exercitation. Enim aliquip magna id ipsum aliquip consectetur ad nulla quis. Incididunt pariatur dolor consectetur cillum enim velit cupidatat laborum quis ex.
|
|
32
|
+
|
|
33
|
+
Officia irure in non voluptate adipisicing sit amet tempor duis dolore deserunt enim ut. Reprehenderit incididunt in ad anim et deserunt deserunt Lorem laborum quis. Enim aute anim labore proident laboris voluptate elit excepteur in. Ex labore nulla velit officia ullamco Lorem Lorem id do. Dolore ullamco ipsum magna dolor pariatur voluptate ipsum id occaecat ipsum. Dolore tempor quis duis commodo quis quis enim.
|
|
34
|
+
|
|
35
|
+
```markdown
|
|
36
|
+
Incididunt ex adipisicing ea ullamco consectetur in voluptate proident fugiat tempor deserunt reprehenderit ullamco id dolore laborum. Do laboris laboris minim incididunt qui consectetur exercitation adipisicing dolore et magna consequat magna anim sunt. Officia fugiat Lorem sunt pariatur incididunt Lorem reprehenderit proident irure. Dolore ipsum aliqua mollit ad officia fugiat sit eu aliquip cupidatat ipsum duis laborum laborum fugiat esse. Voluptate anim ex dolore deserunt ea ex eiusmod irure. Occaecat excepteur aliqua exercitation aliquip dolor esse eu eu.
|
|
37
|
+
|
|
38
|
+
Officia dolore laborum aute incididunt commodo nisi velit est est elit et dolore elit exercitation. Enim aliquip magna id ipsum aliquip consectetur ad nulla quis. Incididunt pariatur dolor consectetur cillum enim velit cupidatat laborum quis ex.
|
|
39
|
+
|
|
40
|
+
Officia irure in non voluptate adipisicing sit amet tempor duis dolore deserunt enim ut. Reprehenderit incididunt in ad anim et deserunt deserunt Lorem laborum quis. Enim aute anim labore proident laboris voluptate elit excepteur in. Ex labore nulla velit officia ullamco Lorem Lorem id do. Dolore ullamco ipsum magna dolor pariatur voluptate ipsum id occaecat ipsum. Dolore tempor quis duis commodo quis quis enim.
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Emphasis
|
|
44
|
+
|
|
45
|
+
__This is bold text__
|
|
46
|
+
|
|
47
|
+
```markdown
|
|
48
|
+
__This is bold text__
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
_This is italic text_
|
|
52
|
+
|
|
53
|
+
```markdown
|
|
54
|
+
_This is italic text_
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
~~Strikethrough~~
|
|
58
|
+
|
|
59
|
+
```markdown
|
|
60
|
+
~~Strikethrough~~
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Ordered List
|
|
64
|
+
|
|
65
|
+
1. Longan
|
|
66
|
+
2. Lychee
|
|
67
|
+
3. Excepteur ad cupidatat do elit laborum amet cillum reprehenderit consequat quis.
|
|
68
|
+
Deserunt officia esse aliquip consectetur duis ut labore laborum commodo aliquip aliquip velit pariatur dolore.
|
|
69
|
+
4. Marionberry
|
|
70
|
+
5. Melon
|
|
71
|
+
- Cantaloupe
|
|
72
|
+
- Honeydew
|
|
73
|
+
- Watermelon
|
|
74
|
+
6. Miracle fruit
|
|
75
|
+
7. Mulberry
|
|
76
|
+
|
|
77
|
+
```markdown
|
|
78
|
+
1. Longan
|
|
79
|
+
2. Lychee
|
|
80
|
+
3. Excepteur ad cupidatat do elit laborum amet cillum reprehenderit consequat quis.
|
|
81
|
+
Deserunt officia esse aliquip consectetur duis ut labore laborum commodo aliquip aliquip velit pariatur dolore.
|
|
82
|
+
4. Marionberry
|
|
83
|
+
5. Melon
|
|
84
|
+
- Cantaloupe
|
|
85
|
+
- Honeydew
|
|
86
|
+
- Watermelon
|
|
87
|
+
6. Miracle fruit
|
|
88
|
+
7. Mulberry
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## Unordered List
|
|
92
|
+
|
|
93
|
+
- Olive
|
|
94
|
+
- Orange
|
|
95
|
+
- Blood orange
|
|
96
|
+
- Clementine
|
|
97
|
+
- Papaya
|
|
98
|
+
- Ut aute ipsum occaecat nisi culpa Lorem id occaecat cupidatat id id magna laboris ad duis. Fugiat cillum dolore veniam nostrud proident sint consectetur eiusmod irure adipisicing.
|
|
99
|
+
- Passionfruit
|
|
100
|
+
|
|
101
|
+
```markdown
|
|
102
|
+
- Olive
|
|
103
|
+
- Orange
|
|
104
|
+
- Blood orange
|
|
105
|
+
- Clementine
|
|
106
|
+
- Papaya
|
|
107
|
+
- Ut aute ipsum occaecat nisi culpa Lorem id occaecat cupidatat id id magna laboris ad duis. Fugiat cillum dolore veniam nostrud proident sint consectetur eiusmod irure adipisicing.
|
|
108
|
+
- Passionfruit
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
## Tables
|
|
112
|
+
|
|
113
|
+
| Table Heading 1 | Table Heading 2 | Center align | Right align | Table Heading 5 |
|
|
114
|
+
| :-------------- | :-------------- | :-------------: | --------------: | :-------------- |
|
|
115
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
116
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
117
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
118
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
119
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
120
|
+
|
|
121
|
+
```markdown
|
|
122
|
+
| Table Heading 1 | Table Heading 2 | Center align | Right align | Table Heading 5 |
|
|
123
|
+
| :-------------- | :-------------- | :-------------: | --------------: | :-------------- |
|
|
124
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
125
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
126
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
127
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
128
|
+
| Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## Inline code
|
|
132
|
+
|
|
133
|
+
Ad amet irure est magna id mollit Lorem in do duis enim. Excepteur velit nisi magna ea pariatur pariatur ullamco fugiat deserunt sint non sint. Duis duis est `code in text` velit velit aute culpa ex quis pariatur pariatur laborum aute pariatur duis tempor sunt ad. Irure magna voluptate dolore consectetur consectetur irure esse. Anim magna `<strong>in culpa qui officia</strong>` dolor eiusmod esse amet aute cupidatat aliqua do id voluptate cupidatat reprehenderit amet labore deserunt.
|
|
134
|
+
|
|
135
|
+
## Code
|
|
136
|
+
|
|
137
|
+
```python
|
|
138
|
+
# Program to display the Fibonacci sequence up to n-th term
|
|
139
|
+
|
|
140
|
+
nterms = int(input("How many terms? "))
|
|
141
|
+
|
|
142
|
+
# first two terms
|
|
143
|
+
n1, n2 = 0, 1
|
|
144
|
+
count = 0
|
|
145
|
+
|
|
146
|
+
# check if the number of terms is valid
|
|
147
|
+
if nterms <= 0:
|
|
148
|
+
print("Please enter a positive integer")
|
|
149
|
+
elif nterms == 1:
|
|
150
|
+
print("Fibonacci sequence upto",nterms,":")
|
|
151
|
+
print(n1)
|
|
152
|
+
else:
|
|
153
|
+
print("Fibonacci sequence:")
|
|
154
|
+
while count < nterms:
|
|
155
|
+
print(n1)
|
|
156
|
+
nth = n1 + n2
|
|
157
|
+
# update values
|
|
158
|
+
n1 = n2
|
|
159
|
+
n2 = nth
|
|
160
|
+
count += 1
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
<pre>
|
|
164
|
+
```python
|
|
165
|
+
# Program to display the Fibonacci sequence up to n-th term
|
|
166
|
+
|
|
167
|
+
nterms = int(input("How many terms? "))
|
|
168
|
+
|
|
169
|
+
# first two terms
|
|
170
|
+
n1, n2 = 0, 1
|
|
171
|
+
count = 0
|
|
172
|
+
|
|
173
|
+
# check if the number of terms is valid
|
|
174
|
+
if nterms <= 0:
|
|
175
|
+
print("Please enter a positive integer")
|
|
176
|
+
elif nterms == 1:
|
|
177
|
+
print("Fibonacci sequence upto",nterms,":")
|
|
178
|
+
print(n1)
|
|
179
|
+
else:
|
|
180
|
+
print("Fibonacci sequence:")
|
|
181
|
+
while count < nterms:
|
|
182
|
+
print(n1)
|
|
183
|
+
nth = n1 + n2
|
|
184
|
+
# update values
|
|
185
|
+
n1 = n2
|
|
186
|
+
n2 = nth
|
|
187
|
+
count += 1
|
|
188
|
+
```
|
|
189
|
+
</pre>
|
|
190
|
+
|
|
191
|
+
Supported languanges can be found at <https://github.com/rouge-ruby/rouge/wiki/List-of-supported-languages-and-lexers>.
|
|
192
|
+
|
|
193
|
+
## Images
|
|
194
|
+
|
|
195
|
+
{% include centos-content/figure.html src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/003e1649-1298-4774-a5fe-0cbc297194f1/de947wq-3400547c-c4ad-49f6-b200-62b60140b2c8.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3sicGF0aCI6IlwvZlwvMDAzZTE2NDktMTI5OC00Nzc0LWE1ZmUtMGNiYzI5NzE5NGYxXC9kZTk0N3dxLTM0MDA1NDdjLWM0YWQtNDlmNi1iMjAwLTYyYjYwMTQwYjJjOC5qcGcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ._xzy8oWpfHlCjtcCj0RFP66I7ivHH0-T3hjREODl0vA" alt="Landscape sketching by Philipp Urlich" caption="Landscape sketching by Philipp Urlich" %}
|
|
196
|
+
|
|
197
|
+
```markdown
|
|
198
|
+
{% raw %}{% include centos-content/figure.html src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/003e1649-1298-4774-a5fe-0cbc297194f1/de947wq-3400547c-c4ad-49f6-b200-62b60140b2c8.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3sicGF0aCI6IlwvZlwvMDAzZTE2NDktMTI5OC00Nzc0LWE1ZmUtMGNiYzI5NzE5NGYxXC9kZTk0N3dxLTM0MDA1NDdjLWM0YWQtNDlmNi1iMjAwLTYyYjYwMTQwYjJjOC5qcGcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ._xzy8oWpfHlCjtcCj0RFP66I7ivHH0-T3hjREODl0vA" alt="Landscape sketching by Philipp Urlich" caption="Landscape sketching by Philipp Urlich" %}{% endraw %}
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
## Videos
|
|
202
|
+
|
|
203
|
+
{% include centos-content/video.html src="https://www.youtube.com/embed/WhWc3b3KhnY" %}
|
|
204
|
+
|
|
205
|
+
```markdown
|
|
206
|
+
{% raw %}{% include centos-content/video.html src="https://www.youtube.com/embed/WhWc3b3KhnY" %}{% endraw %}
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
## Blockquotes
|
|
210
|
+
|
|
211
|
+
> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
212
|
+
>> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
213
|
+
>>> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
214
|
+
>>>> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
215
|
+
|
|
216
|
+
```markdown
|
|
217
|
+
> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
218
|
+
>> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
219
|
+
>>> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
220
|
+
>>>> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
## Admonitions
|
|
224
|
+
|
|
225
|
+
{% include centos-content/admonition/note.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}
|
|
226
|
+
```markdown
|
|
227
|
+
{% raw %}{% include centos-content/admonition/note.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}{% endraw %}
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
{% include centos-content/admonition/warning.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}
|
|
231
|
+
```markdown
|
|
232
|
+
{% raw %}{% include centos-content/admonition/warning.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}{% endraw %}
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
{% include centos-content/admonition/caution.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}
|
|
236
|
+
```markdown
|
|
237
|
+
{% raw %}{% include centos-content/admonition/caution.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}{% endraw %}
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
{% include centos-content/admonition/idea.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}
|
|
241
|
+
```markdown
|
|
242
|
+
{% raw %}{% include centos-content/admonition/idea.html content="Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut." %}{% endraw %}
|
|
243
|
+
```
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ page.lang | default: 'en' }}">
|
|
3
|
+
|
|
4
|
+
{% include centos-head.html %}
|
|
5
|
+
|
|
6
|
+
<body>
|
|
7
|
+
|
|
8
|
+
{% include centos-nav.html -%}
|
|
9
|
+
{% include centos-header.html -%}
|
|
10
|
+
|
|
11
|
+
<main class="centos-content container">
|
|
12
|
+
<div class="row">
|
|
13
|
+
{% include centos-content/1col.html %}
|
|
14
|
+
</div>
|
|
15
|
+
</main>
|
|
16
|
+
|
|
17
|
+
{% include centos-footer.html -%}
|
|
18
|
+
|
|
19
|
+
<script src="/assets/js/jquery.min.js"></script>
|
|
20
|
+
<script src="/assets/js/jquery.dataTables.min.js"></script>
|
|
21
|
+
<script src="/assets/js/dataTables.bootstrap4.min.js"></script>
|
|
22
|
+
<script>
|
|
23
|
+
$(document).ready(function() {
|
|
24
|
+
$('#centos-mirrors-table').DataTable();
|
|
25
|
+
} );
|
|
26
|
+
</script>
|
|
27
|
+
<script src="/assets/js/bootstrap.min.js"></script>
|
|
28
|
+
</body>
|
|
29
|
+
|
|
30
|
+
</html>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<main class="centos-content-1col">
|
|
6
|
+
<div class="centos-content-download">
|
|
7
|
+
<div class="row">
|
|
8
|
+
{% include centos-content/download/cards.html %}
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
|
|
12
|
+
<div class="container">
|
|
13
|
+
<div class="row">
|
|
14
|
+
{% include centos-content/2col.html %}
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
</main>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: centos-content/1col
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{{ content }}
|
|
6
|
+
|
|
7
|
+
<section class="centos-content-sponsors-cards">
|
|
8
|
+
<div class="d-flex align-content-start flex-wrap align-content-stretch">
|
|
9
|
+
{% for sponsor in site.sponsors %}
|
|
10
|
+
<div class="card">
|
|
11
|
+
<a href="{{ sponsor.address }}">
|
|
12
|
+
<img class="card-img-top" src="{{ sponsor.logo }}" alt="{{ sponsor.name }}">
|
|
13
|
+
<div class="card-body">
|
|
14
|
+
<p class="card-title">{{ sponsor.name }}</p>
|
|
15
|
+
<p class="card-text">{{ sponsor.description }}</p>
|
|
16
|
+
</div>
|
|
17
|
+
</a>
|
|
18
|
+
</div>
|
|
19
|
+
{% endfor %}
|
|
20
|
+
</div>
|
|
21
|
+
</section>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ page.lang | default: 'en' }}">
|
|
3
|
+
|
|
4
|
+
{% include centos-head.html -%}
|
|
5
|
+
|
|
6
|
+
<body>
|
|
7
|
+
|
|
8
|
+
{% include centos-nav.html -%}
|
|
9
|
+
{% include centos-header.html -%}
|
|
10
|
+
|
|
11
|
+
<main class="centos-content container">
|
|
12
|
+
<div class="row">
|
|
13
|
+
{% include centos-content/news.html -%}
|
|
14
|
+
{% include centos-content/sponsors.html %}
|
|
15
|
+
</div>
|
|
16
|
+
<div class="row">
|
|
17
|
+
{% include centos-content/around.html -%}
|
|
18
|
+
</div>
|
|
19
|
+
</main>
|
|
20
|
+
|
|
21
|
+
{% include centos-footer.html -%}
|
|
22
|
+
|
|
23
|
+
<script src="/assets/js/jquery.min.js"></script>
|
|
24
|
+
<script src="/assets/js/bootstrap.min.js"></script>
|
|
25
|
+
<script src="/assets/js/moment.min.js"></script>
|
|
26
|
+
<script src="/assets/js/jquery.rss.js"></script>
|
|
27
|
+
<script>
|
|
28
|
+
jQuery(function($) {
|
|
29
|
+
$("#rss-feeds").rss("https://www.centos.org/assets/planet.rss", {
|
|
30
|
+
limit: 5,
|
|
31
|
+
ssl: true,
|
|
32
|
+
entryTemplate: '<li><a href="{url}">{date} : {title}</a><br/>{shortBodyPlain}</li>'
|
|
33
|
+
},
|
|
34
|
+
)
|
|
35
|
+
})
|
|
36
|
+
</script>
|
|
37
|
+
</body>
|
|
38
|
+
|
|
39
|
+
</html>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ page.lang | default: 'en' }}">
|
|
3
|
+
|
|
4
|
+
{% include centos-head.html -%}
|
|
5
|
+
|
|
6
|
+
<body>
|
|
7
|
+
{% include centos-nav.html -%}
|
|
8
|
+
{% include centos-header.html -%}
|
|
9
|
+
|
|
10
|
+
{{ content }}
|
|
11
|
+
|
|
12
|
+
{% include centos-footer.html -%}
|
|
13
|
+
|
|
14
|
+
<script src="/assets/js/jquery.min.js"></script>
|
|
15
|
+
<script src="/assets/js/bootstrap.min.js"></script>
|
|
16
|
+
</body>
|
|
17
|
+
|
|
18
|
+
</html>
|
data/_layouts/post.html
ADDED
data/_sass/bootstrap/_alert.scss
CHANGED
|
@@ -3,25 +3,11 @@
|
|
|
3
3
|
//
|
|
4
4
|
|
|
5
5
|
.alert {
|
|
6
|
-
// scss-docs-start alert-css-vars
|
|
7
|
-
--#{$prefix}alert-bg: transparent;
|
|
8
|
-
--#{$prefix}alert-padding-x: #{$alert-padding-x};
|
|
9
|
-
--#{$prefix}alert-padding-y: #{$alert-padding-y};
|
|
10
|
-
--#{$prefix}alert-margin-bottom: #{$alert-margin-bottom};
|
|
11
|
-
--#{$prefix}alert-color: inherit;
|
|
12
|
-
--#{$prefix}alert-border-color: transparent;
|
|
13
|
-
--#{$prefix}alert-border: #{$alert-border-width} solid var(--#{$prefix}alert-border-color);
|
|
14
|
-
--#{$prefix}alert-border-radius: #{$alert-border-radius};
|
|
15
|
-
--#{$prefix}alert-link-color: inherit;
|
|
16
|
-
// scss-docs-end alert-css-vars
|
|
17
|
-
|
|
18
6
|
position: relative;
|
|
19
|
-
padding:
|
|
20
|
-
margin-bottom:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
border: var(--#{$prefix}alert-border);
|
|
24
|
-
@include border-radius(var(--#{$prefix}alert-border-radius));
|
|
7
|
+
padding: $alert-padding-y $alert-padding-x;
|
|
8
|
+
margin-bottom: $alert-margin-bottom;
|
|
9
|
+
border: $alert-border-width solid transparent;
|
|
10
|
+
@include border-radius($alert-border-radius);
|
|
25
11
|
}
|
|
26
12
|
|
|
27
13
|
// Headings for larger alerts
|
|
@@ -33,7 +19,6 @@
|
|
|
33
19
|
// Provide class for links that match alerts
|
|
34
20
|
.alert-link {
|
|
35
21
|
font-weight: $alert-link-font-weight;
|
|
36
|
-
color: var(--#{$prefix}alert-link-color);
|
|
37
22
|
}
|
|
38
23
|
|
|
39
24
|
|
|
@@ -42,27 +27,26 @@
|
|
|
42
27
|
// Expand the right padding and account for the close button's positioning.
|
|
43
28
|
|
|
44
29
|
.alert-dismissible {
|
|
45
|
-
padding-right: $alert-
|
|
30
|
+
padding-right: $close-font-size + $alert-padding-x * 2;
|
|
46
31
|
|
|
47
32
|
// Adjust close link position
|
|
48
|
-
.
|
|
33
|
+
.close {
|
|
49
34
|
position: absolute;
|
|
50
35
|
top: 0;
|
|
51
36
|
right: 0;
|
|
52
|
-
z-index:
|
|
53
|
-
padding: $alert-padding-y
|
|
37
|
+
z-index: 2;
|
|
38
|
+
padding: $alert-padding-y $alert-padding-x;
|
|
39
|
+
color: inherit;
|
|
54
40
|
}
|
|
55
41
|
}
|
|
56
42
|
|
|
57
43
|
|
|
58
|
-
//
|
|
59
|
-
//
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
--#{$prefix}alert-link-color: var(--#{$prefix}#{$state}-text-emphasis);
|
|
44
|
+
// Alternate styles
|
|
45
|
+
//
|
|
46
|
+
// Generate contextual modifier classes for colorizing the alert.
|
|
47
|
+
|
|
48
|
+
@each $color, $value in $theme-colors {
|
|
49
|
+
.alert-#{$color} {
|
|
50
|
+
@include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level));
|
|
66
51
|
}
|
|
67
52
|
}
|
|
68
|
-
// scss-docs-end alert-modifiers
|
data/_sass/bootstrap/_badge.scss
CHANGED
|
@@ -4,26 +4,22 @@
|
|
|
4
4
|
// `background-color`.
|
|
5
5
|
|
|
6
6
|
.badge {
|
|
7
|
-
// scss-docs-start badge-css-vars
|
|
8
|
-
--#{$prefix}badge-padding-x: #{$badge-padding-x};
|
|
9
|
-
--#{$prefix}badge-padding-y: #{$badge-padding-y};
|
|
10
|
-
@include rfs($badge-font-size, --#{$prefix}badge-font-size);
|
|
11
|
-
--#{$prefix}badge-font-weight: #{$badge-font-weight};
|
|
12
|
-
--#{$prefix}badge-color: #{$badge-color};
|
|
13
|
-
--#{$prefix}badge-border-radius: #{$badge-border-radius};
|
|
14
|
-
// scss-docs-end badge-css-vars
|
|
15
|
-
|
|
16
7
|
display: inline-block;
|
|
17
|
-
padding:
|
|
18
|
-
@include font-size(
|
|
19
|
-
font-weight:
|
|
8
|
+
padding: $badge-padding-y $badge-padding-x;
|
|
9
|
+
@include font-size($badge-font-size);
|
|
10
|
+
font-weight: $badge-font-weight;
|
|
20
11
|
line-height: 1;
|
|
21
|
-
color: var(--#{$prefix}badge-color);
|
|
22
12
|
text-align: center;
|
|
23
13
|
white-space: nowrap;
|
|
24
14
|
vertical-align: baseline;
|
|
25
|
-
@include border-radius(
|
|
26
|
-
@include
|
|
15
|
+
@include border-radius($badge-border-radius);
|
|
16
|
+
@include transition($badge-transition);
|
|
17
|
+
|
|
18
|
+
@at-root a#{&} {
|
|
19
|
+
@include hover-focus() {
|
|
20
|
+
text-decoration: none;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
27
23
|
|
|
28
24
|
// Empty badges collapse automatically
|
|
29
25
|
&:empty {
|
|
@@ -36,3 +32,23 @@
|
|
|
36
32
|
position: relative;
|
|
37
33
|
top: -1px;
|
|
38
34
|
}
|
|
35
|
+
|
|
36
|
+
// Pill badges
|
|
37
|
+
//
|
|
38
|
+
// Make them extra rounded with a modifier to replace v3's badges.
|
|
39
|
+
|
|
40
|
+
.badge-pill {
|
|
41
|
+
padding-right: $badge-pill-padding-x;
|
|
42
|
+
padding-left: $badge-pill-padding-x;
|
|
43
|
+
@include border-radius($badge-pill-border-radius);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Colors
|
|
47
|
+
//
|
|
48
|
+
// Contextual variations (linked badges get darker on :hover).
|
|
49
|
+
|
|
50
|
+
@each $color, $value in $theme-colors {
|
|
51
|
+
.badge-#{$color} {
|
|
52
|
+
@include badge-variant($value);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -1,40 +1,44 @@
|
|
|
1
1
|
.breadcrumb {
|
|
2
|
-
// scss-docs-start breadcrumb-css-vars
|
|
3
|
-
--#{$prefix}breadcrumb-padding-x: #{$breadcrumb-padding-x};
|
|
4
|
-
--#{$prefix}breadcrumb-padding-y: #{$breadcrumb-padding-y};
|
|
5
|
-
--#{$prefix}breadcrumb-margin-bottom: #{$breadcrumb-margin-bottom};
|
|
6
|
-
@include rfs($breadcrumb-font-size, --#{$prefix}breadcrumb-font-size);
|
|
7
|
-
--#{$prefix}breadcrumb-bg: #{$breadcrumb-bg};
|
|
8
|
-
--#{$prefix}breadcrumb-border-radius: #{$breadcrumb-border-radius};
|
|
9
|
-
--#{$prefix}breadcrumb-divider-color: #{$breadcrumb-divider-color};
|
|
10
|
-
--#{$prefix}breadcrumb-item-padding-x: #{$breadcrumb-item-padding-x};
|
|
11
|
-
--#{$prefix}breadcrumb-item-active-color: #{$breadcrumb-active-color};
|
|
12
|
-
// scss-docs-end breadcrumb-css-vars
|
|
13
|
-
|
|
14
2
|
display: flex;
|
|
15
3
|
flex-wrap: wrap;
|
|
16
|
-
padding:
|
|
17
|
-
margin-bottom:
|
|
18
|
-
@include font-size(
|
|
4
|
+
padding: $breadcrumb-padding-y $breadcrumb-padding-x;
|
|
5
|
+
margin-bottom: $breadcrumb-margin-bottom;
|
|
6
|
+
@include font-size($breadcrumb-font-size);
|
|
19
7
|
list-style: none;
|
|
20
|
-
background-color:
|
|
21
|
-
@include border-radius(
|
|
8
|
+
background-color: $breadcrumb-bg;
|
|
9
|
+
@include border-radius($breadcrumb-border-radius);
|
|
22
10
|
}
|
|
23
11
|
|
|
24
12
|
.breadcrumb-item {
|
|
13
|
+
display: flex;
|
|
14
|
+
|
|
25
15
|
// The separator between breadcrumbs (by default, a forward-slash: "/")
|
|
26
16
|
+ .breadcrumb-item {
|
|
27
|
-
padding-left:
|
|
17
|
+
padding-left: $breadcrumb-item-padding;
|
|
28
18
|
|
|
29
19
|
&::before {
|
|
30
|
-
|
|
31
|
-
padding-right:
|
|
32
|
-
color:
|
|
33
|
-
content:
|
|
20
|
+
display: inline-block; // Suppress underlining of the separator in modern browsers
|
|
21
|
+
padding-right: $breadcrumb-item-padding;
|
|
22
|
+
color: $breadcrumb-divider-color;
|
|
23
|
+
content: escape-svg($breadcrumb-divider);
|
|
34
24
|
}
|
|
35
25
|
}
|
|
36
26
|
|
|
27
|
+
// IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
|
|
28
|
+
// without `<ul>`s. The `::before` pseudo-element generates an element
|
|
29
|
+
// *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
|
|
30
|
+
//
|
|
31
|
+
// To trick IE into suppressing the underline, we give the pseudo-element an
|
|
32
|
+
// underline and then immediately remove it.
|
|
33
|
+
+ .breadcrumb-item:hover::before {
|
|
34
|
+
text-decoration: underline;
|
|
35
|
+
}
|
|
36
|
+
// stylelint-disable-next-line no-duplicate-selectors
|
|
37
|
+
+ .breadcrumb-item:hover::before {
|
|
38
|
+
text-decoration: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
37
41
|
&.active {
|
|
38
|
-
color:
|
|
42
|
+
color: $breadcrumb-active-color;
|
|
39
43
|
}
|
|
40
44
|
}
|