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,401 +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="396.73569"
|
|
7
|
-
viewBox="0 0 169.33334 104.96965"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
-
sodipodi:docname="page-with-ogp.svg"
|
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
-
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
15
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
|
17
|
-
<sodipodi:namedview
|
|
18
|
-
id="namedview1"
|
|
19
|
-
pagecolor="#ffffff"
|
|
20
|
-
bordercolor="#000000"
|
|
21
|
-
borderopacity="0.25"
|
|
22
|
-
inkscape:showpageshadow="2"
|
|
23
|
-
inkscape:pageopacity="0.0"
|
|
24
|
-
inkscape:pagecheckerboard="0"
|
|
25
|
-
inkscape:deskcolor="#d1d1d1"
|
|
26
|
-
inkscape:document-units="px"
|
|
27
|
-
inkscape:zoom="1.4142136"
|
|
28
|
-
inkscape:cx="163.69522"
|
|
29
|
-
inkscape:cy="199.05055"
|
|
30
|
-
inkscape:window-width="3440"
|
|
31
|
-
inkscape:window-height="1371"
|
|
32
|
-
inkscape:window-x="0"
|
|
33
|
-
inkscape:window-y="0"
|
|
34
|
-
inkscape:window-maximized="1"
|
|
35
|
-
inkscape:current-layer="layer1"
|
|
36
|
-
showgrid="false" />
|
|
37
|
-
<defs
|
|
38
|
-
id="defs1">
|
|
39
|
-
<clipPath
|
|
40
|
-
clipPathUnits="userSpaceOnUse"
|
|
41
|
-
id="clipPath4">
|
|
42
|
-
<path
|
|
43
|
-
id="path5"
|
|
44
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
45
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
46
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
47
|
-
</clipPath>
|
|
48
|
-
<clipPath
|
|
49
|
-
clipPathUnits="userSpaceOnUse"
|
|
50
|
-
id="clipPath28">
|
|
51
|
-
<path
|
|
52
|
-
id="path29"
|
|
53
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.33797;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
54
|
-
d="m 306.371,-325.03536 c -8.65176,8.97009 -11.52002,30.40853 -12.46598,42.74731 l 89.64143,89.64143 c 2.18643,-9.3018 5.56546,-18.72181 10.73522,-23.89156 12.57262,-12.57263 37.71574,-1.97899 50.28856,-14.55181 12.57279,-12.57279 1.97911,-37.71587 14.55184,-50.28859 12.57274,-12.57274 37.71593,-1.97918 50.28858,-14.55183 12.57282,-12.57282 1.97974,-37.7165 14.55249,-50.28924 12.57276,-12.57276 37.79402,-1.59733 50.28856,-14.55181 8.65178,-8.97012 11.52005,-30.40856 12.46598,-42.74732 l -89.64207,-89.64207 c -2.18647,9.30184 -5.5648,18.72243 -10.73455,23.89218 -12.57265,12.57265 -37.7164,1.97965 -50.28925,14.55249 -12.57272,12.57272 -1.97908,37.71585 -14.55183,50.28859 -12.57272,12.57272 -37.71594,1.97918 -50.28856,14.55181 -12.57288,12.57288 -1.97915,37.7159 -14.55183,50.28858 -12.57279,12.57279 -37.79403,1.59733 -50.28859,14.55184 z"
|
|
55
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
56
|
-
</clipPath>
|
|
57
|
-
<clipPath
|
|
58
|
-
clipPathUnits="userSpaceOnUse"
|
|
59
|
-
id="clipPath29">
|
|
60
|
-
<path
|
|
61
|
-
id="path30"
|
|
62
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
63
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
64
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
65
|
-
</clipPath>
|
|
66
|
-
<clipPath
|
|
67
|
-
clipPathUnits="userSpaceOnUse"
|
|
68
|
-
id="clipPath30">
|
|
69
|
-
<path
|
|
70
|
-
id="path31"
|
|
71
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
72
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
73
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
74
|
-
</clipPath>
|
|
75
|
-
<clipPath
|
|
76
|
-
clipPathUnits="userSpaceOnUse"
|
|
77
|
-
id="clipPath31">
|
|
78
|
-
<path
|
|
79
|
-
id="path32"
|
|
80
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
81
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
82
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
83
|
-
</clipPath>
|
|
84
|
-
<clipPath
|
|
85
|
-
clipPathUnits="userSpaceOnUse"
|
|
86
|
-
id="clipPath32">
|
|
87
|
-
<path
|
|
88
|
-
id="path33"
|
|
89
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
90
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
91
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
92
|
-
</clipPath>
|
|
93
|
-
<clipPath
|
|
94
|
-
clipPathUnits="userSpaceOnUse"
|
|
95
|
-
id="clipPath33">
|
|
96
|
-
<path
|
|
97
|
-
id="path35"
|
|
98
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
99
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
100
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
101
|
-
</clipPath>
|
|
102
|
-
<clipPath
|
|
103
|
-
clipPathUnits="userSpaceOnUse"
|
|
104
|
-
id="clipPath35">
|
|
105
|
-
<path
|
|
106
|
-
id="path36"
|
|
107
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
108
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
109
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
110
|
-
</clipPath>
|
|
111
|
-
<clipPath
|
|
112
|
-
clipPathUnits="userSpaceOnUse"
|
|
113
|
-
id="clipPath36">
|
|
114
|
-
<path
|
|
115
|
-
id="path37"
|
|
116
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
117
|
-
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
118
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
119
|
-
</clipPath>
|
|
120
|
-
<clipPath
|
|
121
|
-
clipPathUnits="userSpaceOnUse"
|
|
122
|
-
id="clipPath47">
|
|
123
|
-
<path
|
|
124
|
-
id="path48"
|
|
125
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
126
|
-
d="m 359.79966,36.04497 c -7.12928,0.12879 -16.96305,7.641732 -22.33766,12.250932 v 72.532518 c 4.64781,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17304,0 16.05931,14.45803 26.23251,14.45803 10.17312,0 16.0594,-14.45803 26.2325,-14.45803 10.17312,0 16.05949,14.45803 26.23251,14.45803 10.1732,0 16.05994,-14.45803 26.23303,-14.45803 10.17313,0 15.93656,14.64412 26.2325,14.45803 7.12928,-0.12878 16.96305,-7.64173 22.33766,-12.25093 V 45.179813 c -4.64781,2.87867 -9.82591,5.323189 -14.00897,5.323189 -10.17304,0 -16.05982,-14.458032 -26.23302,-14.458032 -10.17312,0 -16.05941,14.458032 -26.23251,14.458032 -10.17312,0 -16.05949,-14.458032 -26.23251,-14.458032 -10.1732,0 -16.05941,14.458032 -26.2325,14.458032 -10.17313,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
127
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
128
|
-
</clipPath>
|
|
129
|
-
</defs>
|
|
130
|
-
<g
|
|
131
|
-
inkscape:label="Layer 1"
|
|
132
|
-
inkscape:groupmode="layer"
|
|
133
|
-
id="layer1"
|
|
134
|
-
transform="translate(-336.55017,-30.6131)">
|
|
135
|
-
<rect
|
|
136
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.48621;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
137
|
-
id="ogp"
|
|
138
|
-
width="169.33334"
|
|
139
|
-
height="104.96965"
|
|
140
|
-
x="336.55017"
|
|
141
|
-
y="30.6131"
|
|
142
|
-
inkscape:export-filename="page-with-breadcrumb.png"
|
|
143
|
-
inkscape:export-xdpi="96"
|
|
144
|
-
inkscape:export-ydpi="96" />
|
|
145
|
-
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
146
|
-
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
147
|
-
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
148
|
-
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
149
|
-
<path
|
|
150
|
-
id="path12-5"
|
|
151
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
|
|
152
|
-
d="m 504.80143,134.68663 v -15.11721 c -5.36361,4.59975 -15.17744,12.09731 -22.29216,12.22604 -10.27518,0.18554 -16.02666,-14.42893 -26.17905,-14.42893 -10.15264,0 -16.02743,14.42893 -26.17994,14.42893 -10.15239,0 -16.02679,-14.42893 -26.17917,-14.42893 -10.15252,0 -16.02653,14.42893 -26.17892,14.42893 -10.15277,0 -16.0273,-14.42893 -26.17956,-14.42893 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 12.00775"
|
|
153
|
-
sodipodi:nodetypes="ccsssssscc" />
|
|
154
|
-
<path
|
|
155
|
-
d="m 879.05575,136.13334 h 0.8118 l -1.77308,2.02606 2.08585,2.75737 h -1.63281 l -1.27979,-1.6719 -1.46263,1.6719 h -0.81295 l 1.89612,-2.16749 -1.99961,-2.61594 h 1.6742 l 1.15561,1.52817 z m -0.28516,4.29819 h 0.44959 l -2.90225,-3.83824 h -0.48294 z"
|
|
156
|
-
id="path1-6"
|
|
157
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.0114986"
|
|
158
|
-
clip-path="url(#clipPath4)"
|
|
159
|
-
transform="translate(-400.55697,-4.2234453)" />
|
|
160
|
-
<path
|
|
161
|
-
id="path68"
|
|
162
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
|
|
163
|
-
d="m 337.63225,31.839944 v 14.257317 c 5.36361,-4.59975 15.17744,-12.09731 22.29216,-12.22604 10.27518,-0.18554 16.02666,14.42893 26.17905,14.42893 10.15264,0 16.02743,-14.42893 26.17994,-14.42893 10.15239,0 16.02679,14.42893 26.17917,14.42893 10.15252,0 16.02653,-14.42893 26.17892,-14.42893 10.15277,0 16.0273,14.42893 26.17956,14.42893 4.17468,0 9.3419,-2.43958 13.98038,-5.31235 V 31.839944"
|
|
164
|
-
sodipodi:nodetypes="ccsssssscc" />
|
|
165
|
-
<g
|
|
166
|
-
id="g47"
|
|
167
|
-
transform="translate(0,0.09354582)"
|
|
168
|
-
clip-path="url(#clipPath47)">
|
|
169
|
-
<g
|
|
170
|
-
id="g38"
|
|
171
|
-
transform="translate(0,-0.0935445)">
|
|
172
|
-
<rect
|
|
173
|
-
style="fill:#a14f8c;stroke-width:0.264583;stroke-linejoin:round"
|
|
174
|
-
id="rect21"
|
|
175
|
-
width="121.23346"
|
|
176
|
-
height="32.179253"
|
|
177
|
-
x="761.06354"
|
|
178
|
-
y="71.231743"
|
|
179
|
-
rx="2.6458335"
|
|
180
|
-
ry="2.6458335"
|
|
181
|
-
clip-path="url(#clipPath36)"
|
|
182
|
-
transform="translate(-400.55697,-4.2234453)" />
|
|
183
|
-
<rect
|
|
184
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
185
|
-
id="rect22"
|
|
186
|
-
width="84.384949"
|
|
187
|
-
height="31.316229"
|
|
188
|
-
x="797.91205"
|
|
189
|
-
y="71.720589"
|
|
190
|
-
rx="2.6458335"
|
|
191
|
-
ry="2.6458335"
|
|
192
|
-
clip-path="url(#clipPath35)"
|
|
193
|
-
transform="translate(-400.55697,-4.2234453)" />
|
|
194
|
-
<g
|
|
195
|
-
id="g37"
|
|
196
|
-
transform="translate(8.4580609)">
|
|
197
|
-
<rect
|
|
198
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
199
|
-
id="rect23"
|
|
200
|
-
width="72.590401"
|
|
201
|
-
height="2.245064"
|
|
202
|
-
x="799.97797"
|
|
203
|
-
y="76.283142"
|
|
204
|
-
rx="1.6078529"
|
|
205
|
-
ry="1.3229167"
|
|
206
|
-
clip-path="url(#clipPath33)"
|
|
207
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
208
|
-
<rect
|
|
209
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
210
|
-
id="rect24"
|
|
211
|
-
width="40.78532"
|
|
212
|
-
height="2.2450638"
|
|
213
|
-
x="799.97797"
|
|
214
|
-
y="83.392509"
|
|
215
|
-
rx="1.6078529"
|
|
216
|
-
ry="1.3229167"
|
|
217
|
-
clip-path="url(#clipPath32)"
|
|
218
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
219
|
-
<rect
|
|
220
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
221
|
-
id="rect25"
|
|
222
|
-
width="75.396721"
|
|
223
|
-
height="2.2450638"
|
|
224
|
-
x="799.97797"
|
|
225
|
-
y="88.630997"
|
|
226
|
-
rx="1.6078529"
|
|
227
|
-
ry="1.3229167"
|
|
228
|
-
clip-path="url(#clipPath31)"
|
|
229
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-3.8492692)" />
|
|
230
|
-
<rect
|
|
231
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
232
|
-
id="rect26"
|
|
233
|
-
width="40.224052"
|
|
234
|
-
height="2.2450638"
|
|
235
|
-
x="799.97797"
|
|
236
|
-
y="95.366188"
|
|
237
|
-
rx="1.6078529"
|
|
238
|
-
ry="1.3229167"
|
|
239
|
-
clip-path="url(#clipPath30)"
|
|
240
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
241
|
-
<rect
|
|
242
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
243
|
-
id="rect27"
|
|
244
|
-
width="20.953909"
|
|
245
|
-
height="2.2450638"
|
|
246
|
-
x="843.19543"
|
|
247
|
-
y="83.392509"
|
|
248
|
-
rx="1.6078529"
|
|
249
|
-
ry="1.3229167"
|
|
250
|
-
clip-path="url(#clipPath29)"
|
|
251
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
252
|
-
</g>
|
|
253
|
-
<g
|
|
254
|
-
id="g27"
|
|
255
|
-
transform="matrix(0.40457033,0.40457033,-0.40457033,0.40457033,104.35139,43.689564)"
|
|
256
|
-
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
257
|
-
inkscape:export-xdpi="10.11"
|
|
258
|
-
inkscape:export-ydpi="10.11"
|
|
259
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"
|
|
260
|
-
clip-path="url(#clipPath28)">
|
|
261
|
-
<path
|
|
262
|
-
id="path27"
|
|
263
|
-
style="fill:#ffffff;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"
|
|
264
|
-
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" />
|
|
265
|
-
</g>
|
|
266
|
-
<rect
|
|
267
|
-
style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:round;stroke-dasharray:none"
|
|
268
|
-
id="rect37"
|
|
269
|
-
width="121.23346"
|
|
270
|
-
height="32.179253"
|
|
271
|
-
x="761.06354"
|
|
272
|
-
y="71.231743"
|
|
273
|
-
rx="2.6458335"
|
|
274
|
-
ry="2.6458335"
|
|
275
|
-
clip-path="url(#clipPath36)"
|
|
276
|
-
transform="translate(-400.55697,-4.2234453)" />
|
|
277
|
-
</g>
|
|
278
|
-
<g
|
|
279
|
-
id="g46"
|
|
280
|
-
transform="translate(0,-39.47571)">
|
|
281
|
-
<rect
|
|
282
|
-
style="fill:#f6edf4;stroke-width:0.264583;stroke-linejoin:round"
|
|
283
|
-
id="rect38"
|
|
284
|
-
width="121.23346"
|
|
285
|
-
height="32.179253"
|
|
286
|
-
x="761.06354"
|
|
287
|
-
y="71.231743"
|
|
288
|
-
rx="2.6458335"
|
|
289
|
-
ry="2.6458335"
|
|
290
|
-
clip-path="url(#clipPath36)"
|
|
291
|
-
transform="translate(-400.55697,-4.2234453)" />
|
|
292
|
-
<rect
|
|
293
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
294
|
-
id="rect39"
|
|
295
|
-
width="84.384949"
|
|
296
|
-
height="31.316229"
|
|
297
|
-
x="797.91205"
|
|
298
|
-
y="71.720589"
|
|
299
|
-
rx="2.6458335"
|
|
300
|
-
ry="2.6458335"
|
|
301
|
-
clip-path="url(#clipPath35)"
|
|
302
|
-
transform="translate(-400.55697,-4.2234453)" />
|
|
303
|
-
<g
|
|
304
|
-
id="g44"
|
|
305
|
-
transform="translate(8.4580609)"
|
|
306
|
-
style="fill:#f6edf4">
|
|
307
|
-
<rect
|
|
308
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
309
|
-
id="rect40"
|
|
310
|
-
width="72.590401"
|
|
311
|
-
height="2.245064"
|
|
312
|
-
x="799.97797"
|
|
313
|
-
y="76.283142"
|
|
314
|
-
rx="1.6078529"
|
|
315
|
-
ry="1.3229167"
|
|
316
|
-
clip-path="url(#clipPath33)"
|
|
317
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
318
|
-
<rect
|
|
319
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
320
|
-
id="rect41"
|
|
321
|
-
width="40.78532"
|
|
322
|
-
height="2.2450638"
|
|
323
|
-
x="799.97797"
|
|
324
|
-
y="83.392509"
|
|
325
|
-
rx="1.6078529"
|
|
326
|
-
ry="1.3229167"
|
|
327
|
-
clip-path="url(#clipPath32)"
|
|
328
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
329
|
-
<rect
|
|
330
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
331
|
-
id="rect42"
|
|
332
|
-
width="75.396721"
|
|
333
|
-
height="2.2450638"
|
|
334
|
-
x="799.97797"
|
|
335
|
-
y="88.630997"
|
|
336
|
-
rx="1.6078529"
|
|
337
|
-
ry="1.3229167"
|
|
338
|
-
clip-path="url(#clipPath31)"
|
|
339
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-3.8492692)" />
|
|
340
|
-
<rect
|
|
341
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
342
|
-
id="rect43"
|
|
343
|
-
width="40.224052"
|
|
344
|
-
height="2.2450638"
|
|
345
|
-
x="799.97797"
|
|
346
|
-
y="95.366188"
|
|
347
|
-
rx="1.6078529"
|
|
348
|
-
ry="1.3229167"
|
|
349
|
-
clip-path="url(#clipPath30)"
|
|
350
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
351
|
-
<rect
|
|
352
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
353
|
-
id="rect44"
|
|
354
|
-
width="20.953909"
|
|
355
|
-
height="2.2450638"
|
|
356
|
-
x="843.19543"
|
|
357
|
-
y="83.392509"
|
|
358
|
-
rx="1.6078529"
|
|
359
|
-
ry="1.3229167"
|
|
360
|
-
clip-path="url(#clipPath29)"
|
|
361
|
-
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
362
|
-
</g>
|
|
363
|
-
<g
|
|
364
|
-
id="g45"
|
|
365
|
-
transform="matrix(0.40457033,0.40457033,-0.40457033,0.40457033,104.35139,43.689564)"
|
|
366
|
-
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
367
|
-
inkscape:export-xdpi="10.11"
|
|
368
|
-
inkscape:export-ydpi="10.11"
|
|
369
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"
|
|
370
|
-
clip-path="url(#clipPath28)">
|
|
371
|
-
<path
|
|
372
|
-
id="path44"
|
|
373
|
-
style="fill:#ffffff;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"
|
|
374
|
-
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" />
|
|
375
|
-
</g>
|
|
376
|
-
<rect
|
|
377
|
-
style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linejoin:round;stroke-dasharray:none"
|
|
378
|
-
id="rect45"
|
|
379
|
-
width="121.23346"
|
|
380
|
-
height="32.179253"
|
|
381
|
-
x="761.06354"
|
|
382
|
-
y="71.231743"
|
|
383
|
-
rx="2.6458335"
|
|
384
|
-
ry="2.6458335"
|
|
385
|
-
clip-path="url(#clipPath36)"
|
|
386
|
-
transform="translate(-400.55697,-4.2234453)" />
|
|
387
|
-
</g>
|
|
388
|
-
<use
|
|
389
|
-
x="0"
|
|
390
|
-
y="0"
|
|
391
|
-
xlink:href="#g46"
|
|
392
|
-
id="use46"
|
|
393
|
-
transform="translate(0,78.764331)" />
|
|
394
|
-
</g>
|
|
395
|
-
<path
|
|
396
|
-
id="path65"
|
|
397
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
398
|
-
d="m 359.79966,36.138516 c -7.12928,0.12879 -16.96305,7.641732 -22.33766,12.250932 v 72.532522 c 4.64781,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17304,0 16.05931,14.45803 26.23251,14.45803 10.17312,0 16.0594,-14.45803 26.2325,-14.45803 10.17312,0 16.05949,14.45803 26.23251,14.45803 10.1732,0 16.05994,-14.45803 26.23303,-14.45803 10.17313,0 15.93656,14.64411 26.2325,14.45803 7.12928,-0.12879 16.96305,-7.64173 22.33766,-12.25093 V 45.273359 c -4.64781,2.87867 -9.82591,5.323189 -14.00897,5.323189 -10.17304,0 -16.05982,-14.458032 -26.23302,-14.458032 -10.17312,0 -16.05941,14.458032 -26.23251,14.458032 -10.17312,0 -16.05949,-14.458032 -26.23251,-14.458032 -10.1732,0 -16.05941,14.458032 -26.2325,14.458032 -10.17313,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
399
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
400
|
-
</g>
|
|
401
|
-
</svg>
|