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
|
@@ -1,423 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
width="640"
|
|
6
|
-
height="365.64258"
|
|
7
|
-
viewBox="0 0 169.33333 96.742932"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
-
sodipodi:docname="page-with-project.svg"
|
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
-
<sodipodi:namedview
|
|
17
|
-
id="namedview1"
|
|
18
|
-
pagecolor="#ffffff"
|
|
19
|
-
bordercolor="#000000"
|
|
20
|
-
borderopacity="0.25"
|
|
21
|
-
inkscape:showpageshadow="2"
|
|
22
|
-
inkscape:pageopacity="0.0"
|
|
23
|
-
inkscape:pagecheckerboard="0"
|
|
24
|
-
inkscape:deskcolor="#d1d1d1"
|
|
25
|
-
inkscape:document-units="px"
|
|
26
|
-
inkscape:zoom="1"
|
|
27
|
-
inkscape:cx="566.5"
|
|
28
|
-
inkscape:cy="4.5"
|
|
29
|
-
inkscape:window-width="3440"
|
|
30
|
-
inkscape:window-height="1403"
|
|
31
|
-
inkscape:window-x="0"
|
|
32
|
-
inkscape:window-y="0"
|
|
33
|
-
inkscape:window-maximized="1"
|
|
34
|
-
inkscape:current-layer="layer1"
|
|
35
|
-
showgrid="false" />
|
|
36
|
-
<defs
|
|
37
|
-
id="defs1">
|
|
38
|
-
<filter
|
|
39
|
-
inkscape:collect="always"
|
|
40
|
-
style="color-interpolation-filters:sRGB"
|
|
41
|
-
id="filter71"
|
|
42
|
-
x="-0.030834845"
|
|
43
|
-
y="-0.046393454"
|
|
44
|
-
width="1.0616697"
|
|
45
|
-
height="1.0927869">
|
|
46
|
-
<feGaussianBlur
|
|
47
|
-
inkscape:collect="always"
|
|
48
|
-
stdDeviation="4.1775707"
|
|
49
|
-
id="feGaussianBlur71" />
|
|
50
|
-
</filter>
|
|
51
|
-
<clipPath
|
|
52
|
-
clipPathUnits="userSpaceOnUse"
|
|
53
|
-
id="clipPath49">
|
|
54
|
-
<path
|
|
55
|
-
id="path50"
|
|
56
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.66337;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
57
|
-
d="m 1149.7951,-157.90825 c -3.0733,0 -5.5476,2.47426 -5.5476,5.54757 V 26.318138 c 10.099,-6.254946 21.3503,-11.566201 30.4395,-11.566201 22.1046,0 34.8951,31.415282 57.0001,31.415282 22.1047,0 34.8946,-31.415282 56.9994,-31.415282 22.1048,0 34.8948,31.415282 56.9994,31.415282 22.1049,0 34.8955,-31.415282 57.0002,-31.415282 22.1048,0 34.6278,31.819605 56.9995,31.415282 15.4909,-0.279868 36.8583,-16.604388 48.5366,-26.619537 V -152.36068 c 0,-3.07331 -2.4743,-5.54757 -5.5477,-5.54757 z"
|
|
58
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
59
|
-
</clipPath>
|
|
60
|
-
<clipPath
|
|
61
|
-
clipPathUnits="userSpaceOnUse"
|
|
62
|
-
id="clipPath50">
|
|
63
|
-
<path
|
|
64
|
-
id="path51"
|
|
65
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765522;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
66
|
-
d="m 831.39218,-531.25574 c -1.4144,0 -2.55313,1.13871 -2.55313,2.55312 v 82.23208 c 4.64779,-2.87867 9.82589,-5.32303 14.00895,-5.32303 10.17305,0 16.05953,14.45803 26.23275,14.45803 10.17309,0 16.0593,-14.45803 26.23243,-14.45803 10.17314,0 16.05939,14.45803 26.23243,14.45803 10.17318,0 16.05971,-14.45803 26.2328,-14.45803 10.17313,0 15.9365,14.64411 26.23247,14.45803 7.12927,-0.1288 16.96303,-7.64172 22.33765,-12.25092 v -79.11616 c 0,-1.41441 -1.13873,-2.55312 -2.55318,-2.55312 z"
|
|
67
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
68
|
-
</clipPath>
|
|
69
|
-
</defs>
|
|
70
|
-
<g
|
|
71
|
-
inkscape:label="Layer 1"
|
|
72
|
-
inkscape:groupmode="layer"
|
|
73
|
-
id="layer1"
|
|
74
|
-
transform="translate(-1004.6688,437.32864)">
|
|
75
|
-
<rect
|
|
76
|
-
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.51171;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
|
|
77
|
-
id="project"
|
|
78
|
-
width="169.33333"
|
|
79
|
-
height="96.742928"
|
|
80
|
-
x="1004.6688"
|
|
81
|
-
y="-437.32864" />
|
|
82
|
-
<g
|
|
83
|
-
id="g87"
|
|
84
|
-
transform="matrix(0.46022288,0,0,0.46022288,478.97187,-363.24517)"
|
|
85
|
-
clip-path="url(#clipPath49)">
|
|
86
|
-
<rect
|
|
87
|
-
style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;filter:url(#filter71);stop-color:#000000"
|
|
88
|
-
id="rect71"
|
|
89
|
-
width="346.56506"
|
|
90
|
-
height="230.34026"
|
|
91
|
-
x="1152.9523"
|
|
92
|
-
y="-147.22197"
|
|
93
|
-
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
94
|
-
inkscape:export-xdpi="96"
|
|
95
|
-
inkscape:export-ydpi="96" />
|
|
96
|
-
<rect
|
|
97
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.14981;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
98
|
-
id="rect4291"
|
|
99
|
-
width="346.56506"
|
|
100
|
-
height="231.96628"
|
|
101
|
-
x="1152.9523"
|
|
102
|
-
y="-147.22197"
|
|
103
|
-
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
104
|
-
inkscape:export-xdpi="96"
|
|
105
|
-
inkscape:export-ydpi="96" />
|
|
106
|
-
<rect
|
|
107
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.497636;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
108
|
-
id="rect4433"
|
|
109
|
-
width="334.28003"
|
|
110
|
-
height="19.72998"
|
|
111
|
-
x="1159.0947"
|
|
112
|
-
y="-141.15588"
|
|
113
|
-
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
114
|
-
inkscape:export-xdpi="96"
|
|
115
|
-
inkscape:export-ydpi="96" />
|
|
116
|
-
<g
|
|
117
|
-
id="g1012"
|
|
118
|
-
transform="matrix(0.24685874,0,0,0.24685874,1062.9732,-110.40602)"
|
|
119
|
-
style="fill:#f6edf4;stroke-width:3.80952">
|
|
120
|
-
<g
|
|
121
|
-
aria-label="CentOS"
|
|
122
|
-
id="text57015"
|
|
123
|
-
style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:2.85397"
|
|
124
|
-
transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)">
|
|
125
|
-
<path
|
|
126
|
-
d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
|
|
127
|
-
id="path2097"
|
|
128
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
|
|
129
|
-
<path
|
|
130
|
-
d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
|
|
131
|
-
id="path2099"
|
|
132
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
|
|
133
|
-
<path
|
|
134
|
-
d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
|
|
135
|
-
id="path2101"
|
|
136
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
|
|
137
|
-
<path
|
|
138
|
-
d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
|
|
139
|
-
id="path2103"
|
|
140
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
|
|
141
|
-
<path
|
|
142
|
-
d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
|
|
143
|
-
id="path2105"
|
|
144
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
|
|
145
|
-
<path
|
|
146
|
-
d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
|
|
147
|
-
id="path2107"
|
|
148
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
|
|
149
|
-
</g>
|
|
150
|
-
<g
|
|
151
|
-
id="g28251-9"
|
|
152
|
-
transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
|
|
153
|
-
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
154
|
-
inkscape:export-xdpi="10.11"
|
|
155
|
-
inkscape:export-ydpi="10.11"
|
|
156
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
|
|
157
|
-
<path
|
|
158
|
-
id="ellipse15079-1-3"
|
|
159
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
160
|
-
d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" />
|
|
161
|
-
</g>
|
|
162
|
-
</g>
|
|
163
|
-
<rect
|
|
164
|
-
style="fill:#ecdce8;fill-opacity:1;stroke:#d9b9d1;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
165
|
-
id="rect119"
|
|
166
|
-
width="16.372637"
|
|
167
|
-
height="10.339692"
|
|
168
|
-
x="1452.1016"
|
|
169
|
-
y="-136.46074"
|
|
170
|
-
rx="1.2440896"
|
|
171
|
-
ry="1.2440896" />
|
|
172
|
-
<g
|
|
173
|
-
id="g121"
|
|
174
|
-
transform="matrix(0.94041424,0,0,0.94041424,475.53132,5.0191882)"
|
|
175
|
-
style="stroke:#9a9996;stroke-opacity:1">
|
|
176
|
-
<path
|
|
177
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
178
|
-
d="m 1040.8931,-147.50672 h 12.5172"
|
|
179
|
-
id="path119" />
|
|
180
|
-
<path
|
|
181
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
182
|
-
d="m 1040.8931,-144.94685 h 12.5172"
|
|
183
|
-
id="path120" />
|
|
184
|
-
<path
|
|
185
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
186
|
-
d="m 1040.8931,-142.38698 h 12.5172"
|
|
187
|
-
id="path121" />
|
|
188
|
-
</g>
|
|
189
|
-
<path
|
|
190
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.248818px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
191
|
-
d="m 1227.4685,-139.55744 v 12.69302"
|
|
192
|
-
id="path8" />
|
|
193
|
-
<g
|
|
194
|
-
id="g1"
|
|
195
|
-
transform="matrix(1.4277799,0,0,1.4277799,99.63989,136.37013)"
|
|
196
|
-
style="fill:#d9b9d1">
|
|
197
|
-
<g
|
|
198
|
-
id="use1-3-3"
|
|
199
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke:#f6f5f4;stroke-opacity:1"
|
|
200
|
-
transform="matrix(0.00800799,0,0,0.00800799,793.73956,-190.8614)">
|
|
201
|
-
<title
|
|
202
|
-
id="title18">align-left</title>
|
|
203
|
-
<path
|
|
204
|
-
d="m 288,44 v 40 c 0,8.837 -7.163,16 -16,16 H 16 C 7.163,100 0,92.837 0,84 V 44 C 0,35.163 7.163,28 16,28 h 256 c 8.837,0 16,7.163 16,16 z M 0,172 v 40 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 z m 16,312 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 z M 272,284 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 h 256 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 z"
|
|
205
|
-
id="path20" />
|
|
206
|
-
</g>
|
|
207
|
-
</g>
|
|
208
|
-
<g
|
|
209
|
-
id="g13"
|
|
210
|
-
transform="matrix(0.94041424,0,0,0.94041424,487.73501,33.070036)">
|
|
211
|
-
<rect
|
|
212
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.240121;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
213
|
-
id="rect3425"
|
|
214
|
-
width="305.13757"
|
|
215
|
-
height="20.980095"
|
|
216
|
-
x="739.05914"
|
|
217
|
-
y="-29.768446"
|
|
218
|
-
rx="1.4067383"
|
|
219
|
-
ry="1.4067383" />
|
|
220
|
-
<path
|
|
221
|
-
d="m 756.48292,-23.545422 c 0,-0.245766 -0.14862,-0.468658 -0.37722,-0.563919 -0.22863,-0.09527 -0.48963,-0.04189 -0.66489,0.131557 l -0.83065,0.832546 c -0.91446,0.914457 -2.1547,1.428866 -3.44829,1.428866 h -0.16575 -0.60964 -1.82893 c -0.67252,0 -1.21928,0.546766 -1.21928,1.219278 v 1.828931 c 0,0.672496 0.54676,1.219278 1.21928,1.219278 v 2.43857 c 0,0.337222 0.27243,0.60964 0.60965,0.60964 h 1.21928 c 0.33722,0 0.60964,-0.272418 0.60964,-0.60964 v -2.43857 h 0.16575 c 1.29359,0 2.53383,0.514379 3.44829,1.428852 l 0.83065,0.830643 c 0.17526,0.17527 0.43626,0.226727 0.66489,0.131556 0.22861,-0.09542 0.37722,-0.316265 0.37722,-0.563919 v -2.810083 c 0.35435,-0.167644 0.60965,-0.619165 0.60965,-1.150697 0,-0.531532 -0.2553,-0.983053 -0.60965,-1.150697 z m -1.21928,1.461241 v 2.501427 2.501458 c -1.12024,-1.019261 -2.58148,-1.586985 -4.10177,-1.586985 h -0.16575 v -1.828931 h 0.16575 c 1.52029,0 2.98153,-0.56774 4.10177,-1.586969 z"
|
|
222
|
-
id="path3462"
|
|
223
|
-
style="fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.390216" />
|
|
224
|
-
<g
|
|
225
|
-
id="g39"
|
|
226
|
-
transform="matrix(0.60142389,0,0,0.60142392,402.68323,53.580101)"
|
|
227
|
-
style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.13921;stroke-opacity:1">
|
|
228
|
-
<path
|
|
229
|
-
style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
230
|
-
d="m 1044.5533,-124.15749 6.0283,6.02831"
|
|
231
|
-
id="path38-3" />
|
|
232
|
-
<path
|
|
233
|
-
style="fill:none;fill-opacity:1;stroke:#c795ba;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
234
|
-
d="m 1050.5816,-124.15749 -6.0283,6.02831"
|
|
235
|
-
id="path39-5" />
|
|
236
|
-
</g>
|
|
237
|
-
</g>
|
|
238
|
-
<g
|
|
239
|
-
id="use108"
|
|
240
|
-
transform="matrix(1.4488325,0,0,1.4488325,-1571.3439,-475.27474)">
|
|
241
|
-
<rect
|
|
242
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.496626;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:0.0397303, 0.0397303;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
243
|
-
id="rect5"
|
|
244
|
-
width="198.05994"
|
|
245
|
-
height="30.561462"
|
|
246
|
-
x="1900.9103"
|
|
247
|
-
y="351.51724"
|
|
248
|
-
inkscape:export-filename="page-with-bits-collapsed.webp"
|
|
249
|
-
inkscape:export-xdpi="96"
|
|
250
|
-
inkscape:export-ydpi="96" />
|
|
251
|
-
<g
|
|
252
|
-
id="g55"
|
|
253
|
-
transform="translate(0.24830881,-0.15490532)">
|
|
254
|
-
<g
|
|
255
|
-
id="g30"
|
|
256
|
-
transform="matrix(0.56967611,0,0,0.56967611,1211.4474,351.50659)" />
|
|
257
|
-
<g
|
|
258
|
-
id="g49"
|
|
259
|
-
transform="matrix(0.56967611,0,0,0.56967611,893.13767,247.87097)">
|
|
260
|
-
<rect
|
|
261
|
-
style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.965889;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
262
|
-
id="rect37"
|
|
263
|
-
width="267.67557"
|
|
264
|
-
height="200.75668"
|
|
265
|
-
x="1809.025"
|
|
266
|
-
y="309.52332"
|
|
267
|
-
inkscape:export-filename="screenshot-example-1600x1200.webp"
|
|
268
|
-
inkscape:export-xdpi="96"
|
|
269
|
-
inkscape:export-ydpi="96" />
|
|
270
|
-
<g
|
|
271
|
-
id="g44"
|
|
272
|
-
style="stroke:#5c2e4f;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
|
|
273
|
-
transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)" />
|
|
274
|
-
<g
|
|
275
|
-
id="g45"
|
|
276
|
-
style="stroke-width:2.64583;stroke-dasharray:none"
|
|
277
|
-
transform="matrix(0.61034383,0,0,0.61034383,235.78356,159.35745)" />
|
|
278
|
-
<g
|
|
279
|
-
id="g60"
|
|
280
|
-
style="stroke-width:2.64583;stroke-dasharray:none"
|
|
281
|
-
transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)" />
|
|
282
|
-
<rect
|
|
283
|
-
style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.485467;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
284
|
-
id="rect46"
|
|
285
|
-
width="267.67557"
|
|
286
|
-
height="50.714802"
|
|
287
|
-
x="1809.025"
|
|
288
|
-
y="384.54428" />
|
|
289
|
-
<g
|
|
290
|
-
id="g47"
|
|
291
|
-
transform="matrix(0.63230446,0,0,0.63230446,459.16835,41.417553)"
|
|
292
|
-
style="fill:#5c2e4f;fill-opacity:1">
|
|
293
|
-
<g
|
|
294
|
-
id="g46"
|
|
295
|
-
transform="translate(-168.48926,4.0104842)"
|
|
296
|
-
style="fill:#5c2e4f;fill-opacity:1" />
|
|
297
|
-
</g>
|
|
298
|
-
</g>
|
|
299
|
-
<rect
|
|
300
|
-
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
301
|
-
id="rect52"
|
|
302
|
-
width="160.85735"
|
|
303
|
-
height="7.5363345"
|
|
304
|
-
x="1919.5116"
|
|
305
|
-
y="358.57538"
|
|
306
|
-
ry="2.6458335"
|
|
307
|
-
rx="2.6458335" />
|
|
308
|
-
</g>
|
|
309
|
-
</g>
|
|
310
|
-
<rect
|
|
311
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.511739;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
312
|
-
id="rect36"
|
|
313
|
-
width="334.27991"
|
|
314
|
-
height="19.72998"
|
|
315
|
-
x="1159.0947"
|
|
316
|
-
y="-23.864132"
|
|
317
|
-
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
318
|
-
inkscape:export-xdpi="96"
|
|
319
|
-
inkscape:export-ydpi="96" />
|
|
320
|
-
<g
|
|
321
|
-
id="g41"
|
|
322
|
-
transform="matrix(0.94040116,0,0,0.94040116,490.21147,151.12851)">
|
|
323
|
-
<rect
|
|
324
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
|
|
325
|
-
id="rect40"
|
|
326
|
-
width="13.576674"
|
|
327
|
-
height="9.7555847"
|
|
328
|
-
x="1026.684"
|
|
329
|
-
y="-180.47063"
|
|
330
|
-
ry="1.5810586"
|
|
331
|
-
rx="1.5810586" />
|
|
332
|
-
<g
|
|
333
|
-
id="use1-5"
|
|
334
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none"
|
|
335
|
-
transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)">
|
|
336
|
-
<title
|
|
337
|
-
id="title20">arrow-right</title>
|
|
338
|
-
<path
|
|
339
|
-
d="m 190.5,66.9 22.2,-22.2 c 9.4,-9.4 24.6,-9.4 33.9,0 L 441,239 c 9.4,9.4 9.4,24.6 0,33.9 L 246.6,467.3 c -9.4,9.4 -24.6,9.4 -33.9,0 l -22.2,-22.2 c -9.5,-9.5 -9.3,-25 0.4,-34.3 L 311.4,296 H 24 C 10.7,296 0,285.3 0,272 V 240 C 0,226.7 10.7,216 24,216 H 311.4 L 190.9,101.2 c -9.8,-9.3 -10,-24.8 -0.4,-34.3 z"
|
|
340
|
-
id="path22" />
|
|
341
|
-
</g>
|
|
342
|
-
</g>
|
|
343
|
-
<path
|
|
344
|
-
d="m 1192.595,-18.011957 c 0,-0.231122 -0.1402,-0.440727 -0.3547,-0.530307 -0.215,-0.08952 -0.4604,-0.03939 -0.6253,0.123739 l -0.7811,0.782948 c -0.8601,0.859964 -2.0264,1.343728 -3.2428,1.343728 h -0.156 -0.5734 -1.72 c -0.6325,0 -1.1466,0.514187 -1.1466,1.146629 v 1.719958 c 0,0.632427 0.5141,1.146614 1.1466,1.146614 v 2.2932737 c 0,0.3171347 0.2563,0.5733141 0.5734,0.5733141 h 1.1466 c 0.3171,0 0.5734,-0.2561794 0.5734,-0.5733141 v -2.2932737 h 0.156 c 1.2164,0 2.3827,0.483734 3.2428,1.343728 l 0.7811,0.781148 c 0.1649,0.1648294 0.4103,0.2132185 0.6253,0.123739 0.2149,-0.08968 0.3547,-0.297415 0.3547,-0.530306 v -2.642649 c 0.3332,-0.157661 0.5734,-0.58228 0.5734,-1.082134 0,-0.499867 -0.2402,-0.924488 -0.5734,-1.082135 z m -1.1466,1.374183 v 2.352384 2.352399 c -1.0534,-0.958528 -2.4276,-1.492419 -3.8574,-1.492419 h -0.1561 v -1.719959 h 0.1561 c 1.4298,0 2.804,-0.533907 3.8574,-1.492405 z"
|
|
345
|
-
id="path32"
|
|
346
|
-
style="fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.366966" />
|
|
347
|
-
<g
|
|
348
|
-
id="g101"
|
|
349
|
-
transform="translate(359.32283,2.5263128)">
|
|
350
|
-
<path
|
|
351
|
-
id="path31-3"
|
|
352
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0759096;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
353
|
-
d="m 1134.052,-123.95228 v 97.561836 H 799.77184 v -97.561836 z"
|
|
354
|
-
sodipodi:nodetypes="ccccc" />
|
|
355
|
-
<path
|
|
356
|
-
id="rect38"
|
|
357
|
-
style="fill:#c795ba;fill-opacity:1;stroke-width:0.461067;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
358
|
-
d="m 826.07972,-43.474524 h 281.66398 c 1.4658,0 2.6459,1.180041 2.6459,2.645833 v 14.438247 H 823.43388 v -14.438247 c 0,-1.465792 1.18004,-2.645833 2.64584,-2.645833 z"
|
|
359
|
-
sodipodi:nodetypes="sssccss" />
|
|
360
|
-
<circle
|
|
361
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.08635;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:4.34539, 4.34539;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
362
|
-
id="circle125-7-5"
|
|
363
|
-
cx="966.91193"
|
|
364
|
-
cy="-103.76298"
|
|
365
|
-
r="12.213036" />
|
|
366
|
-
<rect
|
|
367
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
368
|
-
id="rect274-9"
|
|
369
|
-
width="149.16376"
|
|
370
|
-
height="4.8648129"
|
|
371
|
-
x="892.33008"
|
|
372
|
-
y="-83.623833"
|
|
373
|
-
ry="1.7079141"
|
|
374
|
-
rx="1.7079141" />
|
|
375
|
-
<rect
|
|
376
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
377
|
-
id="rect125-0-5-1"
|
|
378
|
-
width="24.557205"
|
|
379
|
-
height="7.9111004"
|
|
380
|
-
x="927.99078"
|
|
381
|
-
y="-38.253174"
|
|
382
|
-
rx="4.2525544"
|
|
383
|
-
ry="3.4158282" />
|
|
384
|
-
<rect
|
|
385
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
386
|
-
id="rect232-2"
|
|
387
|
-
width="24.557205"
|
|
388
|
-
height="7.9111004"
|
|
389
|
-
x="954.63312"
|
|
390
|
-
y="-38.253174"
|
|
391
|
-
rx="4.2525544"
|
|
392
|
-
ry="3.4158282" />
|
|
393
|
-
<rect
|
|
394
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
395
|
-
id="rect233-7"
|
|
396
|
-
width="24.557205"
|
|
397
|
-
height="7.9111004"
|
|
398
|
-
x="981.27582"
|
|
399
|
-
y="-38.253174"
|
|
400
|
-
rx="4.2525544"
|
|
401
|
-
ry="3.4158282" />
|
|
402
|
-
<rect
|
|
403
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
404
|
-
id="rect246-6-0"
|
|
405
|
-
width="149.16376"
|
|
406
|
-
height="4.8648129"
|
|
407
|
-
x="892.33008"
|
|
408
|
-
y="-72.250313"
|
|
409
|
-
ry="1.7079141"
|
|
410
|
-
rx="1.7079141" />
|
|
411
|
-
<rect
|
|
412
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:0.375997;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
413
|
-
id="rect125-0-6"
|
|
414
|
-
width="30.57077"
|
|
415
|
-
height="9.8483696"
|
|
416
|
-
x="951.62653"
|
|
417
|
-
y="-59.010605"
|
|
418
|
-
rx="4.2525544"
|
|
419
|
-
ry="4.252296" />
|
|
420
|
-
</g>
|
|
421
|
-
</g>
|
|
422
|
-
</g>
|
|
423
|
-
</svg>
|