jekyll-theme-centos 2.52.0.beta.4 → 2.52.0.beta.6
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/_data/base/announcement_schema.yml +50 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +53 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +183 -0
- data/_data/base/breadcrumb_schema.yml +14 -0
- data/_data/base/breakingnews_schema.yml +59 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/converter_link_schema.yml +48 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +34 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +122 -0
- data/_data/base/fontawesome_schema.yml +49 -0
- data/_data/base/highlight_schema.yml +68 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +153 -0
- data/_data/base/locales_schema.yml +25 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +121 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp_schema.yml +186 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +120 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +25 -0
- data/_data/base/social_schema.yml +53 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +100 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_data/sponsors/carousel.yml +37 -0
- data/_data/sponsors/navbar.yml +6 -0
- data/_includes/base/announcement.html.liquid +51 -0
- data/_includes/base/artwork.html.liquid +49 -0
- data/_includes/base/backtotop.html.liquid +51 -0
- data/_includes/base/bits.html.liquid +135 -0
- data/_includes/base/breadcrumb.html.liquid +37 -0
- data/_includes/base/breakingnews.html.liquid +74 -0
- data/_includes/base/card.html.liquid +96 -0
- data/_includes/base/copyright.html.liquid +56 -0
- data/_includes/base/copyvalue.html.liquid +59 -0
- data/_includes/base/datatable.html.liquid +64 -0
- data/_includes/base/event.html.liquid +89 -0
- data/_includes/base/fontawesome.html.liquid +58 -0
- data/_includes/base/head.html.liquid +101 -0
- data/_includes/base/highlight.html.liquid +65 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +139 -0
- data/_includes/base/locales.html.liquid +41 -0
- data/_includes/base/navbar.html.liquid +106 -0
- data/_includes/base/navindex.html.liquid +162 -0
- data/_includes/base/ogp.html.liquid +118 -0
- data/_includes/base/project.html.liquid +90 -0
- data/_includes/base/script.html.liquid +59 -0
- data/_includes/base/shortcut.html.liquid +65 -0
- data/_includes/base/social.html.liquid +59 -0
- data/_includes/base/title.html.liquid +52 -0
- data/_includes/base/toc.html.liquid +91 -0
- data/_includes/base/toc_generator.html.liquid +189 -0
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +120 -0
- data/_includes/sponsors/cards.html +11 -0
- data/_includes/sponsors/carousel.html +24 -0
- data/_layouts/base/default.html +117 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +68 -0
- data/_sass/base/_customization.scss +251 -0
- data/_sass/base/_light-dark.scss +10 -0
- data/_sass/base/_maps.scss +104 -0
- data/_sass/base/_variables.scss +232 -0
- data/_sass/bootstrap/_accordion.scss +153 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +147 -0
- data/_sass/bootstrap/_buttons.scss +216 -0
- data/_sass/bootstrap/_card.scss +238 -0
- data/_sass/bootstrap/_carousel.scss +226 -0
- data/_sass/bootstrap/_close.scss +66 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +199 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +197 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +147 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +617 -0
- data/_sass/bootstrap/_root.scss +187 -0
- data/_sass/bootstrap/_spinners.scss +86 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +102 -0
- data/_sass/bootstrap/_variables.scss +1753 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
- data/_sass/bootstrap/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/base/stylesheet.min.scss +35 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/base/centos-colors.gpl +55 -0
- data/assets/img/base/page-layout-default.png +0 -0
- data/assets/img/base/page-layout-default.svg +1158 -0
- data/assets/img/base/page-with-alert.png +0 -0
- data/assets/img/base/page-with-alert.svg +359 -0
- data/assets/img/base/page-with-announcement.png +0 -0
- data/assets/img/base/page-with-announcement.svg +499 -0
- data/assets/img/base/page-with-artwork.png +0 -0
- data/assets/img/base/page-with-artwork.svg +368 -0
- data/assets/img/base/page-with-backtotop.png +0 -0
- data/assets/img/base/page-with-backtotop.svg +275 -0
- data/assets/img/base/page-with-bits.png +0 -0
- data/assets/img/base/page-with-bits.svg +311 -0
- data/assets/img/base/page-with-breadcrumb.png +0 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.png +0 -0
- data/assets/img/base/page-with-breakingnews.svg +903 -0
- data/assets/img/base/page-with-color.png +0 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.png +0 -0
- data/assets/img/base/page-with-copyright.svg +233 -0
- data/assets/img/base/page-with-copyvalue.png +0 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.png +0 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.png +0 -0
- data/assets/img/base/page-with-event.svg +522 -0
- data/assets/img/base/page-with-fontawesome.png +0 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-heading.png +0 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.png +0 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-link.png +0 -0
- data/assets/img/base/page-with-link.svg +395 -0
- data/assets/img/base/page-with-locales.png +0 -0
- data/assets/img/base/page-with-locales.svg +724 -0
- data/assets/img/base/page-with-navbar.png +0 -0
- data/assets/img/base/page-with-navbar.svg +438 -0
- data/assets/img/base/page-with-navindex.png +0 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.png +0 -0
- data/assets/img/base/page-with-ogp.svg +368 -0
- data/assets/img/base/page-with-project.png +0 -0
- data/assets/img/base/page-with-project.svg +822 -0
- data/assets/img/base/page-with-shortcut.png +0 -0
- data/assets/img/base/page-with-shortcut.svg +233 -0
- data/assets/img/base/page-with-social.png +0 -0
- data/assets/img/base/page-with-social.svg +233 -0
- data/assets/img/base/page-with-title.png +0 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.png +0 -0
- data/assets/img/base/page-with-toc.svg +438 -0
- data/assets/img/base/screenshot-example-1200x600.png +0 -0
- data/assets/img/base/screenshot-example-1200x600.svg +114 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +900 -0
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
- data/assets/img/sponsors/sponsor-logo-1.png +0 -0
- data/assets/img/sponsors/sponsor-logo-2.png +0 -0
- data/assets/img/sponsors/sponsor-logo-3.png +0 -0
- data/assets/img/sponsors/sponsor-logo-4.png +0 -0
- data/assets/img/sponsors/sponsor-logo-5.png +0 -0
- data/assets/img/sponsors/sponsor-logo-6.png +0 -0
- data/assets/img/sponsors/sponsor-logo-7.png +0 -0
- data/assets/img/sponsors/sponsor-logo-8.png +0 -0
- data/assets/img/sponsors/sponsors-logo.svg +563 -0
- data/assets/js/base/backtotop.js +23 -0
- data/assets/js/base/copyvalue.js +251 -0
- data/assets/js/base/datatable.js +55 -0
- data/assets/js/base/highlight.js +6 -0
- data/assets/js/base/init-tooltips.js +5 -0
- data/assets/js/bootstrap.bundle.js +6312 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4447 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- metadata +314 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,563 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="1023.9999"
|
|
6
|
+
height="251.79044"
|
|
7
|
+
viewBox="0 0 270.93332 66.619553"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
11
|
+
sodipodi:docname="sponsors-logo.svg"
|
|
12
|
+
xml:space="preserve"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
18
|
+
id="namedview1"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
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"
|
|
28
|
+
inkscape:cx="201.5"
|
|
29
|
+
inkscape:cy="697.5"
|
|
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
|
+
showguides="true" /><defs
|
|
38
|
+
id="defs1"><marker
|
|
39
|
+
style="overflow:visible"
|
|
40
|
+
id="marker18"
|
|
41
|
+
refX="0"
|
|
42
|
+
refY="0"
|
|
43
|
+
orient="auto-start-reverse"
|
|
44
|
+
inkscape:stockid="Triangle arrow"
|
|
45
|
+
markerWidth="1"
|
|
46
|
+
markerHeight="1"
|
|
47
|
+
viewBox="0 0 1 1"
|
|
48
|
+
inkscape:isstock="true"
|
|
49
|
+
inkscape:collect="always"
|
|
50
|
+
preserveAspectRatio="xMidYMid"><path
|
|
51
|
+
transform="scale(0.5)"
|
|
52
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
53
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
54
|
+
id="path18" /></marker><marker
|
|
55
|
+
style="overflow:visible"
|
|
56
|
+
id="Triangle"
|
|
57
|
+
refX="0"
|
|
58
|
+
refY="0"
|
|
59
|
+
orient="auto-start-reverse"
|
|
60
|
+
inkscape:stockid="Triangle arrow"
|
|
61
|
+
markerWidth="1"
|
|
62
|
+
markerHeight="1"
|
|
63
|
+
viewBox="0 0 1 1"
|
|
64
|
+
inkscape:isstock="true"
|
|
65
|
+
inkscape:collect="always"
|
|
66
|
+
preserveAspectRatio="xMidYMid"><path
|
|
67
|
+
transform="scale(0.5)"
|
|
68
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
69
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
70
|
+
id="path135" /></marker><marker
|
|
71
|
+
style="overflow:visible"
|
|
72
|
+
id="marker18-2"
|
|
73
|
+
refX="0"
|
|
74
|
+
refY="0"
|
|
75
|
+
orient="auto-start-reverse"
|
|
76
|
+
inkscape:stockid="Triangle arrow"
|
|
77
|
+
markerWidth="1"
|
|
78
|
+
markerHeight="1"
|
|
79
|
+
viewBox="0 0 1 1"
|
|
80
|
+
inkscape:isstock="true"
|
|
81
|
+
inkscape:collect="always"
|
|
82
|
+
preserveAspectRatio="xMidYMid"><path
|
|
83
|
+
transform="scale(0.5)"
|
|
84
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
85
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
86
|
+
id="path18-6" /></marker><marker
|
|
87
|
+
style="overflow:visible"
|
|
88
|
+
id="Triangle-1"
|
|
89
|
+
refX="0"
|
|
90
|
+
refY="0"
|
|
91
|
+
orient="auto-start-reverse"
|
|
92
|
+
inkscape:stockid="Triangle arrow"
|
|
93
|
+
markerWidth="1"
|
|
94
|
+
markerHeight="1"
|
|
95
|
+
viewBox="0 0 1 1"
|
|
96
|
+
inkscape:isstock="true"
|
|
97
|
+
inkscape:collect="always"
|
|
98
|
+
preserveAspectRatio="xMidYMid"><path
|
|
99
|
+
transform="scale(0.5)"
|
|
100
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
101
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
102
|
+
id="path135-8" /></marker></defs><g
|
|
103
|
+
inkscape:label="Layer 1"
|
|
104
|
+
inkscape:groupmode="layer"
|
|
105
|
+
id="layer1"
|
|
106
|
+
transform="translate(69.792114,16.438913)"><rect
|
|
107
|
+
style="fill:#f6f5f4;stroke-width:0.793751;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
108
|
+
id="rect2-6"
|
|
109
|
+
width="270.93332"
|
|
110
|
+
height="66.619553"
|
|
111
|
+
x="-69.792114"
|
|
112
|
+
y="-16.438913"
|
|
113
|
+
inkscape:export-filename="screenshot-sponsors-carousel.png"
|
|
114
|
+
inkscape:export-xdpi="96"
|
|
115
|
+
inkscape:export-ydpi="96" /><rect
|
|
116
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
117
|
+
id="rect9"
|
|
118
|
+
width="140.96933"
|
|
119
|
+
height="31.104063"
|
|
120
|
+
x="-58.70639"
|
|
121
|
+
y="9.3440647" /><rect
|
|
122
|
+
style="fill:#ffffff;stroke:#deddda;stroke-width:1.32292;stroke-linejoin:miter;paint-order:fill markers stroke"
|
|
123
|
+
id="rect10"
|
|
124
|
+
width="97.81134"
|
|
125
|
+
height="34.247742"
|
|
126
|
+
x="91.349358"
|
|
127
|
+
y="-5.8115978" /><rect
|
|
128
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
129
|
+
id="rect11"
|
|
130
|
+
width="140.96933"
|
|
131
|
+
height="12.167871"
|
|
132
|
+
x="-58.70639"
|
|
133
|
+
y="-6.7063994" /><rect
|
|
134
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
135
|
+
id="rect12"
|
|
136
|
+
width="55.476776"
|
|
137
|
+
height="21.841524"
|
|
138
|
+
x="112.51664"
|
|
139
|
+
y="0.39151093" /><text
|
|
140
|
+
xml:space="preserve"
|
|
141
|
+
style="font-size:5.48812px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
|
142
|
+
x="140.27423"
|
|
143
|
+
y="13.233117"
|
|
144
|
+
id="text8-3"
|
|
145
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
146
|
+
inkscape:export-xdpi="96"
|
|
147
|
+
inkscape:export-ydpi="96"><tspan
|
|
148
|
+
sodipodi:role="line"
|
|
149
|
+
id="tspan8-7"
|
|
150
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
|
151
|
+
x="140.27423"
|
|
152
|
+
y="13.233117">SPONSOR LOGO</tspan></text><text
|
|
153
|
+
xml:space="preserve"
|
|
154
|
+
style="font-size:5.48812px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
|
155
|
+
x="11.808457"
|
|
156
|
+
y="26.816938"
|
|
157
|
+
id="text8-3-3"
|
|
158
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
159
|
+
inkscape:export-xdpi="96"
|
|
160
|
+
inkscape:export-ydpi="96"><tspan
|
|
161
|
+
sodipodi:role="line"
|
|
162
|
+
id="tspan8-7-5"
|
|
163
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
|
164
|
+
x="11.808455"
|
|
165
|
+
y="26.816938">THANKSGIVING MESSAGE</tspan></text><path
|
|
166
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
167
|
+
d="m 89.07526,0.12692744 h 111.0076"
|
|
168
|
+
id="path12" /><path
|
|
169
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
170
|
+
d="m 89.07526,22.497619 h 111.0076"
|
|
171
|
+
id="path13" /><path
|
|
172
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
173
|
+
d="M 112.64894,36.769519 V -14.144974"
|
|
174
|
+
id="path14"
|
|
175
|
+
sodipodi:nodetypes="cc" /><path
|
|
176
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
177
|
+
d="M 168.12571,36.769519 V -14.144974"
|
|
178
|
+
id="path15"
|
|
179
|
+
sodipodi:nodetypes="cc" /><text
|
|
180
|
+
xml:space="preserve"
|
|
181
|
+
style="font-size:3.52777px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';stroke-width:0.264583;fill:#9a9996;fill-opacity:1"
|
|
182
|
+
x="191.45749"
|
|
183
|
+
y="12.753833"
|
|
184
|
+
id="text15"><tspan
|
|
185
|
+
sodipodi:role="line"
|
|
186
|
+
id="tspan15"
|
|
187
|
+
style="stroke-width:0.264583;fill:#9a9996;fill-opacity:1"
|
|
188
|
+
x="191.45749"
|
|
189
|
+
y="12.753833">60px</tspan></text><text
|
|
190
|
+
xml:space="preserve"
|
|
191
|
+
style="font-size:3.52777px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
|
192
|
+
x="134.88576"
|
|
193
|
+
y="36.085133"
|
|
194
|
+
id="text15-9"><tspan
|
|
195
|
+
sodipodi:role="line"
|
|
196
|
+
style="fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
|
197
|
+
x="134.88576"
|
|
198
|
+
y="36.085133"
|
|
199
|
+
id="tspan16">242px</tspan></text><text
|
|
200
|
+
xml:space="preserve"
|
|
201
|
+
style="font-size:5.48812px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
|
202
|
+
x="11.893525"
|
|
203
|
+
y="1.2983783"
|
|
204
|
+
id="text9"
|
|
205
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
206
|
+
inkscape:export-xdpi="96"
|
|
207
|
+
inkscape:export-ydpi="96"><tspan
|
|
208
|
+
sodipodi:role="line"
|
|
209
|
+
id="tspan9"
|
|
210
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
|
211
|
+
x="11.893525"
|
|
212
|
+
y="1.2983783">TITLE</tspan></text><rect
|
|
213
|
+
style="fill:#f6f5f4;stroke-width:0.793751;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
214
|
+
id="rect13"
|
|
215
|
+
width="270.93332"
|
|
216
|
+
height="66.619553"
|
|
217
|
+
x="-69.792114"
|
|
218
|
+
y="71.352356"
|
|
219
|
+
inkscape:export-filename="screenshot-sponsors-cards.png"
|
|
220
|
+
inkscape:export-xdpi="96"
|
|
221
|
+
inkscape:export-ydpi="96" /><rect
|
|
222
|
+
style="fill:#f6f5f4;stroke-width:0.793753;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
223
|
+
id="rect13-5"
|
|
224
|
+
width="270.93335"
|
|
225
|
+
height="144.52155"
|
|
226
|
+
x="-64.596619"
|
|
227
|
+
y="165.84717"
|
|
228
|
+
inkscape:export-filename="screenshot-sponsors-logo.png"
|
|
229
|
+
inkscape:export-xdpi="96"
|
|
230
|
+
inkscape:export-ydpi="96" /><g
|
|
231
|
+
id="g7"
|
|
232
|
+
transform="translate(27.244853,159.15579)"
|
|
233
|
+
inkscape:export-filename="sponsor-logo-1.png"
|
|
234
|
+
inkscape:export-xdpi="96"
|
|
235
|
+
inkscape:export-ydpi="96"><rect
|
|
236
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
237
|
+
id="rect2"
|
|
238
|
+
width="63.5"
|
|
239
|
+
height="15.875"
|
|
240
|
+
x="-91.7453"
|
|
241
|
+
y="-82.511765"
|
|
242
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
243
|
+
inkscape:export-xdpi="96"
|
|
244
|
+
inkscape:export-ydpi="96" /><text
|
|
245
|
+
xml:space="preserve"
|
|
246
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
247
|
+
x="-59.883732"
|
|
248
|
+
y="-73.154327"
|
|
249
|
+
id="text2"
|
|
250
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
251
|
+
inkscape:export-xdpi="96"
|
|
252
|
+
inkscape:export-ydpi="96"><tspan
|
|
253
|
+
sodipodi:role="line"
|
|
254
|
+
id="tspan2"
|
|
255
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
256
|
+
x="-59.883732"
|
|
257
|
+
y="-73.154327">SPONSOR-LOGO-1</tspan></text></g><g
|
|
258
|
+
id="g1"
|
|
259
|
+
transform="translate(125.66985,159.15579)"
|
|
260
|
+
inkscape:export-filename="sponsor-logo-2.png"
|
|
261
|
+
inkscape:export-xdpi="96"
|
|
262
|
+
inkscape:export-ydpi="96"><rect
|
|
263
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
264
|
+
id="rect1"
|
|
265
|
+
width="63.5"
|
|
266
|
+
height="15.875"
|
|
267
|
+
x="-91.7453"
|
|
268
|
+
y="-82.511765"
|
|
269
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
270
|
+
inkscape:export-xdpi="96"
|
|
271
|
+
inkscape:export-ydpi="96" /><text
|
|
272
|
+
xml:space="preserve"
|
|
273
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
274
|
+
x="-59.883732"
|
|
275
|
+
y="-73.154327"
|
|
276
|
+
id="text1"
|
|
277
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
278
|
+
inkscape:export-xdpi="96"
|
|
279
|
+
inkscape:export-ydpi="96"><tspan
|
|
280
|
+
sodipodi:role="line"
|
|
281
|
+
id="tspan1"
|
|
282
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
283
|
+
x="-59.883732"
|
|
284
|
+
y="-73.154327">SPONSOR-LOGO-2</tspan></text></g><g
|
|
285
|
+
id="g3"
|
|
286
|
+
transform="translate(224.09484,159.15579)"
|
|
287
|
+
inkscape:export-filename="sponsor-logo-3.png"
|
|
288
|
+
inkscape:export-xdpi="96"
|
|
289
|
+
inkscape:export-ydpi="96"><rect
|
|
290
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
291
|
+
id="rect3"
|
|
292
|
+
width="63.5"
|
|
293
|
+
height="15.875"
|
|
294
|
+
x="-91.7453"
|
|
295
|
+
y="-82.511765"
|
|
296
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
297
|
+
inkscape:export-xdpi="96"
|
|
298
|
+
inkscape:export-ydpi="96" /><text
|
|
299
|
+
xml:space="preserve"
|
|
300
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
301
|
+
x="-59.883732"
|
|
302
|
+
y="-73.154327"
|
|
303
|
+
id="text3"
|
|
304
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
305
|
+
inkscape:export-xdpi="96"
|
|
306
|
+
inkscape:export-ydpi="96"><tspan
|
|
307
|
+
sodipodi:role="line"
|
|
308
|
+
id="tspan3"
|
|
309
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
310
|
+
x="-59.883732"
|
|
311
|
+
y="-73.154327">SPONSOR-LOGO-3</tspan></text></g><g
|
|
312
|
+
id="g4"
|
|
313
|
+
transform="translate(224.09484,179.23639)"
|
|
314
|
+
inkscape:export-filename="sponsor-logo-6.png"
|
|
315
|
+
inkscape:export-xdpi="96"
|
|
316
|
+
inkscape:export-ydpi="96"><rect
|
|
317
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
318
|
+
id="rect4"
|
|
319
|
+
width="63.5"
|
|
320
|
+
height="15.875"
|
|
321
|
+
x="-91.7453"
|
|
322
|
+
y="-82.511765"
|
|
323
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
324
|
+
inkscape:export-xdpi="96"
|
|
325
|
+
inkscape:export-ydpi="96" /><text
|
|
326
|
+
xml:space="preserve"
|
|
327
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
328
|
+
x="-59.883732"
|
|
329
|
+
y="-73.154327"
|
|
330
|
+
id="text4"
|
|
331
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
332
|
+
inkscape:export-xdpi="96"
|
|
333
|
+
inkscape:export-ydpi="96"><tspan
|
|
334
|
+
sodipodi:role="line"
|
|
335
|
+
id="tspan4"
|
|
336
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
337
|
+
x="-59.883732"
|
|
338
|
+
y="-73.154327">SPONSOR-LOGO-6</tspan></text></g><g
|
|
339
|
+
id="g5"
|
|
340
|
+
transform="translate(125.66985,179.23639)"
|
|
341
|
+
inkscape:export-filename="sponsor-logo-5.png"
|
|
342
|
+
inkscape:export-xdpi="96"
|
|
343
|
+
inkscape:export-ydpi="96"><rect
|
|
344
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
345
|
+
id="rect5"
|
|
346
|
+
width="63.5"
|
|
347
|
+
height="15.875"
|
|
348
|
+
x="-91.7453"
|
|
349
|
+
y="-82.511765"
|
|
350
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
351
|
+
inkscape:export-xdpi="96"
|
|
352
|
+
inkscape:export-ydpi="96" /><text
|
|
353
|
+
xml:space="preserve"
|
|
354
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
355
|
+
x="-59.883732"
|
|
356
|
+
y="-73.154327"
|
|
357
|
+
id="text5"
|
|
358
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
359
|
+
inkscape:export-xdpi="96"
|
|
360
|
+
inkscape:export-ydpi="96"><tspan
|
|
361
|
+
sodipodi:role="line"
|
|
362
|
+
id="tspan5"
|
|
363
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
364
|
+
x="-59.883732"
|
|
365
|
+
y="-73.154327">SPONSOR-LOGO-5</tspan></text></g><g
|
|
366
|
+
id="g6"
|
|
367
|
+
transform="translate(27.244853,179.23639)"
|
|
368
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
369
|
+
inkscape:export-xdpi="96"
|
|
370
|
+
inkscape:export-ydpi="96"><rect
|
|
371
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
372
|
+
id="rect6"
|
|
373
|
+
width="63.5"
|
|
374
|
+
height="15.875"
|
|
375
|
+
x="-91.7453"
|
|
376
|
+
y="-82.511765"
|
|
377
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
378
|
+
inkscape:export-xdpi="96"
|
|
379
|
+
inkscape:export-ydpi="96" /><text
|
|
380
|
+
xml:space="preserve"
|
|
381
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
382
|
+
x="-59.883732"
|
|
383
|
+
y="-73.154327"
|
|
384
|
+
id="text6"
|
|
385
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
386
|
+
inkscape:export-xdpi="96"
|
|
387
|
+
inkscape:export-ydpi="96"><tspan
|
|
388
|
+
sodipodi:role="line"
|
|
389
|
+
id="tspan6"
|
|
390
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
391
|
+
x="-59.883732"
|
|
392
|
+
y="-73.154327">SPONSOR-LOGO-4</tspan></text></g><g
|
|
393
|
+
id="g8"
|
|
394
|
+
transform="translate(27.244853,199.317)"
|
|
395
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
396
|
+
inkscape:export-xdpi="96"
|
|
397
|
+
inkscape:export-ydpi="96"><rect
|
|
398
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
399
|
+
id="rect7"
|
|
400
|
+
width="63.5"
|
|
401
|
+
height="15.875"
|
|
402
|
+
x="-91.7453"
|
|
403
|
+
y="-82.511765"
|
|
404
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
405
|
+
inkscape:export-xdpi="96"
|
|
406
|
+
inkscape:export-ydpi="96" /><text
|
|
407
|
+
xml:space="preserve"
|
|
408
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
409
|
+
x="-59.883732"
|
|
410
|
+
y="-73.154327"
|
|
411
|
+
id="text7"
|
|
412
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
413
|
+
inkscape:export-xdpi="96"
|
|
414
|
+
inkscape:export-ydpi="96"><tspan
|
|
415
|
+
sodipodi:role="line"
|
|
416
|
+
id="tspan7"
|
|
417
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
418
|
+
x="-59.883732"
|
|
419
|
+
y="-73.154327">SPONSOR-LOGO-7</tspan></text></g><g
|
|
420
|
+
id="g9"
|
|
421
|
+
transform="translate(224.09484,199.317)"
|
|
422
|
+
inkscape:export-filename="sponsor-logo-8.png"
|
|
423
|
+
inkscape:export-xdpi="96"
|
|
424
|
+
inkscape:export-ydpi="96"><rect
|
|
425
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
426
|
+
id="rect8"
|
|
427
|
+
width="63.5"
|
|
428
|
+
height="15.875"
|
|
429
|
+
x="-91.7453"
|
|
430
|
+
y="-82.511765"
|
|
431
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
432
|
+
inkscape:export-xdpi="96"
|
|
433
|
+
inkscape:export-ydpi="96" /><text
|
|
434
|
+
xml:space="preserve"
|
|
435
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
436
|
+
x="-59.883732"
|
|
437
|
+
y="-73.154327"
|
|
438
|
+
id="text8"
|
|
439
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
440
|
+
inkscape:export-xdpi="96"
|
|
441
|
+
inkscape:export-ydpi="96"><tspan
|
|
442
|
+
sodipodi:role="line"
|
|
443
|
+
id="tspan8"
|
|
444
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#9a9996;stroke-width:0.264583;fill-opacity:1"
|
|
445
|
+
x="-59.883732"
|
|
446
|
+
y="-73.154327">SPONSOR-LOGO-8</tspan></text></g><path
|
|
447
|
+
style="fill:#deddda;fill-opacity:1;stroke:#deddda;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
448
|
+
d="M -68.594193,73.865899 H 199.73359"
|
|
449
|
+
id="path16" /><use
|
|
450
|
+
x="0"
|
|
451
|
+
y="0"
|
|
452
|
+
xlink:href="#path16"
|
|
453
|
+
id="use16"
|
|
454
|
+
transform="translate(0,61.592464)"
|
|
455
|
+
style="fill:#deddda;fill-opacity:1;stroke:#deddda;stroke-opacity:1" /><rect
|
|
456
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
457
|
+
id="rect12-5"
|
|
458
|
+
width="187.96585"
|
|
459
|
+
height="47.382034"
|
|
460
|
+
x="-32.493256"
|
|
461
|
+
y="214.41689" /><path
|
|
462
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;stroke-opacity:1"
|
|
463
|
+
d="M -49.537461,213.84289 H 191.27749"
|
|
464
|
+
id="path12-9" /><path
|
|
465
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;stroke-opacity:1"
|
|
466
|
+
d="M -49.537461,262.37288 H 191.27749"
|
|
467
|
+
id="path13-1" /><path
|
|
468
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;stroke-opacity:1"
|
|
469
|
+
d="M -33.067227,293.3337 V 182.88207"
|
|
470
|
+
id="path14-2"
|
|
471
|
+
sodipodi:nodetypes="cc" /><path
|
|
472
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;stroke-opacity:1"
|
|
473
|
+
d="M 156.04657,293.3337 V 182.88207"
|
|
474
|
+
id="path15-7"
|
|
475
|
+
sodipodi:nodetypes="cc" /><text
|
|
476
|
+
xml:space="preserve"
|
|
477
|
+
style="font-size:7.65299px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#3d3846;fill-opacity:1;stroke-width:0.264583"
|
|
478
|
+
x="172.56599"
|
|
479
|
+
y="241.23515"
|
|
480
|
+
id="text15-0"><tspan
|
|
481
|
+
sodipodi:role="line"
|
|
482
|
+
id="tspan15-9"
|
|
483
|
+
style="fill:#3d3846;fill-opacity:1;stroke-width:0.264583"
|
|
484
|
+
x="172.56599"
|
|
485
|
+
y="241.23515">60px</tspan></text><text
|
|
486
|
+
xml:space="preserve"
|
|
487
|
+
style="font-size:7.65299px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#3d3846;fill-opacity:1;stroke-width:0.264583"
|
|
488
|
+
x="49.841785"
|
|
489
|
+
y="291.84903"
|
|
490
|
+
id="text15-9-3"><tspan
|
|
491
|
+
sodipodi:role="line"
|
|
492
|
+
style="fill:#3d3846;fill-opacity:1;stroke-width:0.264583"
|
|
493
|
+
x="49.841785"
|
|
494
|
+
y="291.84903"
|
|
495
|
+
id="tspan16-6">492px</tspan></text><path
|
|
496
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18);marker-end:url(#Triangle)"
|
|
497
|
+
d="m -30.587287,289.7089 h 76.949371 m 29.301572,0 h 77.902914"
|
|
498
|
+
id="path17"
|
|
499
|
+
sodipodi:nodetypes="cccc" /><path
|
|
500
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18-2);marker-end:url(#Triangle-1)"
|
|
501
|
+
d="m 182.12075,258.98206 0,-12.79073 m 0,-14.11839 0,-14.88862"
|
|
502
|
+
id="path17-2"
|
|
503
|
+
sodipodi:nodetypes="cccc" /><rect
|
|
504
|
+
style="fill:#e01b24;fill-opacity:0.5;stroke:none;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
505
|
+
id="rect18"
|
|
506
|
+
width="94.922493"
|
|
507
|
+
height="47.382248"
|
|
508
|
+
x="60.550117"
|
|
509
|
+
y="214.41689" /><path
|
|
510
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18-2);marker-end:url(#Triangle-1)"
|
|
511
|
+
d="m 152.70365,195.38569 -31.1235,0 m -27.304318,0 H 64.119904"
|
|
512
|
+
id="path20"
|
|
513
|
+
sodipodi:nodetypes="cccc" /><text
|
|
514
|
+
xml:space="preserve"
|
|
515
|
+
style="font-size:7.65299px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#3d3846;fill-opacity:1;stroke-width:0.264583"
|
|
516
|
+
x="96.677292"
|
|
517
|
+
y="197.6682"
|
|
518
|
+
id="text20"><tspan
|
|
519
|
+
sodipodi:role="line"
|
|
520
|
+
id="tspan20"
|
|
521
|
+
style="fill:#3d3846;fill-opacity:1;stroke-width:0.264583"
|
|
522
|
+
x="96.677292"
|
|
523
|
+
y="197.6682">242px</tspan></text><path
|
|
524
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#e01b24;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;stroke-opacity:1"
|
|
525
|
+
d="m 60.513623,282.73383 0,-100.5742"
|
|
526
|
+
id="path19"
|
|
527
|
+
sodipodi:nodetypes="cc" /><path
|
|
528
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
529
|
+
d="m 31.094781,96.856917 85.896429,0"
|
|
530
|
+
id="path12-0"
|
|
531
|
+
sodipodi:nodetypes="cc" /><path
|
|
532
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
533
|
+
d="m 33.792258,123.42064 0,-29.472374"
|
|
534
|
+
id="path14-3"
|
|
535
|
+
sodipodi:nodetypes="cc" /><text
|
|
536
|
+
xml:space="preserve"
|
|
537
|
+
style="font-size:3.52777px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
|
538
|
+
x="108.36581"
|
|
539
|
+
y="105.69753"
|
|
540
|
+
id="text15-06"><tspan
|
|
541
|
+
sodipodi:role="line"
|
|
542
|
+
id="tspan15-1"
|
|
543
|
+
style="fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
|
544
|
+
x="108.36581"
|
|
545
|
+
y="105.69753">60px</tspan></text><text
|
|
546
|
+
xml:space="preserve"
|
|
547
|
+
style="font-size:3.52777px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
|
548
|
+
x="61.202614"
|
|
549
|
+
y="122.73625"
|
|
550
|
+
id="text15-9-5"><tspan
|
|
551
|
+
sodipodi:role="line"
|
|
552
|
+
style="fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
|
553
|
+
x="61.202614"
|
|
554
|
+
y="122.73625"
|
|
555
|
+
id="tspan16-5">242px</tspan></text><path
|
|
556
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
557
|
+
d="M 31.094781,112.73192 H 116.99121"
|
|
558
|
+
id="path21"
|
|
559
|
+
sodipodi:nodetypes="cc" /><path
|
|
560
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#3d3846;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
561
|
+
d="M 97.556841,123.42064 V 93.948266"
|
|
562
|
+
id="path22"
|
|
563
|
+
sodipodi:nodetypes="cc" /></g></svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// Back-to-Top Button Initialization
|
|
2
|
+
// Reads configuration from data attributes on this script tag
|
|
3
|
+
// Applied via backtotop.html.liquid template with data attributes
|
|
4
|
+
|
|
5
|
+
(function () {
|
|
6
|
+
// Find this script tag and extract its configuration
|
|
7
|
+
const scriptTag = document.getElementById('centos-backtop');
|
|
8
|
+
|
|
9
|
+
if (!scriptTag) {
|
|
10
|
+
console.warn('Back-to-Top: script tag with id "centos-backtop" not found');
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Read configuration from data attributes
|
|
15
|
+
const config = {
|
|
16
|
+
diameter: parseInt(scriptTag.dataset.diameter || 56),
|
|
17
|
+
backgroundColor: scriptTag.dataset.backgroundColor || '#A54C93',
|
|
18
|
+
textColor: scriptTag.dataset.textColor || '#ffffff'
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// Initialize back-to-top button with configuration
|
|
22
|
+
addBackToTop(config);
|
|
23
|
+
})();
|