jekyll-theme-centos 0.0.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.
Files changed (304) hide show
  1. checksums.yaml +7 -0
  2. data/_config.yml +196 -0
  3. data/_data/base/announcement_schema.yml +49 -0
  4. data/_data/base/artwork_schema.yml +46 -0
  5. data/_data/base/backtotop_schema.yml +59 -0
  6. data/_data/base/bits.yml +96 -0
  7. data/_data/base/bits_schema.yml +185 -0
  8. data/_data/base/breadcrumb_schema.yml +27 -0
  9. data/_data/base/breakingnews_schema.yml +67 -0
  10. data/_data/base/card_schema.yml +146 -0
  11. data/_data/base/color.yml +1042 -0
  12. data/_data/base/color_schema.yml +1036 -0
  13. data/_data/base/configuration_variables_schema.yml +42 -0
  14. data/_data/base/content.yml +2 -0
  15. data/_data/base/content_schema.yml +26 -0
  16. data/_data/base/copyright.yml +12 -0
  17. data/_data/base/copyright_schema.yml +74 -0
  18. data/_data/base/copyvalue_schema.yml +49 -0
  19. data/_data/base/datatable_schema.yml +57 -0
  20. data/_data/base/event_schema.yml +130 -0
  21. data/_data/base/fontawesome_schema.yml +62 -0
  22. data/_data/base/footer.yml +9 -0
  23. data/_data/base/footer_schema.yml +55 -0
  24. data/_data/base/head_schema.yml +19 -0
  25. data/_data/base/heading_anchor.yml +2 -0
  26. data/_data/base/heading_anchor_schema.yml +37 -0
  27. data/_data/base/highlight_schema.yml +98 -0
  28. data/_data/base/image_schema.yml +34 -0
  29. data/_data/base/languages.yml +186 -0
  30. data/_data/base/link_schema.yml +187 -0
  31. data/_data/base/locales_schema.yml +158 -0
  32. data/_data/base/navbar.yml +20 -0
  33. data/_data/base/navbar_schema.yml +129 -0
  34. data/_data/base/navindex_schema.yml +67 -0
  35. data/_data/base/ogp.yml +24 -0
  36. data/_data/base/ogp_schema.yml +192 -0
  37. data/_data/base/project.yml +37 -0
  38. data/_data/base/project_schema.yml +124 -0
  39. data/_data/base/script_schema.yml +41 -0
  40. data/_data/base/shortcut_schema.yml +74 -0
  41. data/_data/base/social.yml +26 -0
  42. data/_data/base/social_schema.yml +57 -0
  43. data/_data/base/sponsors.yml +41 -0
  44. data/_data/base/sponsors_schema.yml +73 -0
  45. data/_data/base/title_schema.yml +49 -0
  46. data/_data/base/toc_schema.yml +114 -0
  47. data/_data/download/cards.yml +309 -0
  48. data/_data/download/navbar.yml +11 -0
  49. data/_includes/base/announcement.html.liquid +65 -0
  50. data/_includes/base/artwork.html.liquid +63 -0
  51. data/_includes/base/backtotop.html.liquid +73 -0
  52. data/_includes/base/bits.html.liquid +152 -0
  53. data/_includes/base/breadcrumb.html.liquid +77 -0
  54. data/_includes/base/breakingnews.html.liquid +90 -0
  55. data/_includes/base/card.html.liquid +110 -0
  56. data/_includes/base/color-table.html.liquid +33 -0
  57. data/_includes/base/configuration_variables-nested.html.liquid +98 -0
  58. data/_includes/base/configuration_variables.html.liquid +98 -0
  59. data/_includes/base/content.html.liquid +7 -0
  60. data/_includes/base/copyright.html.liquid +70 -0
  61. data/_includes/base/copyvalue.html.liquid +82 -0
  62. data/_includes/base/datatable.html.liquid +83 -0
  63. data/_includes/base/event.html.liquid +105 -0
  64. data/_includes/base/fontawesome.html.liquid +91 -0
  65. data/_includes/base/footer.html.liquid +69 -0
  66. data/_includes/base/head.html.liquid +135 -0
  67. data/_includes/base/heading_anchor.html.liquid +67 -0
  68. data/_includes/base/highlight.html.liquid +84 -0
  69. data/_includes/base/image.html.liquid +42 -0
  70. data/_includes/base/link.html.liquid +129 -0
  71. data/_includes/base/locales.html.liquid +78 -0
  72. data/_includes/base/navbar.html.liquid +121 -0
  73. data/_includes/base/navindex.html.liquid +200 -0
  74. data/_includes/base/ogp.html.liquid +144 -0
  75. data/_includes/base/project.html.liquid +104 -0
  76. data/_includes/base/shortcut.html.liquid +77 -0
  77. data/_includes/base/social.html.liquid +76 -0
  78. data/_includes/base/sponsors-cards.html.liquid +69 -0
  79. data/_includes/base/sponsors-carousel.html.liquid +91 -0
  80. data/_includes/base/title.html.liquid +65 -0
  81. data/_includes/base/toc-generator.html.liquid +189 -0
  82. data/_includes/base/toc.html.liquid +95 -0
  83. data/_includes/download/cards-body-commands.html +7 -0
  84. data/_includes/download/cards-body-convert.html +10 -0
  85. data/_includes/download/cards-body-doc.html +9 -0
  86. data/_includes/download/cards-body-documentation.html +11 -0
  87. data/_includes/download/cards-body-eol.html +16 -0
  88. data/_includes/download/cards-body-mirrors.html +8 -0
  89. data/_includes/download/cards-body-screenshot.html +26 -0
  90. data/_includes/download/cards-body-screenshots.html +32 -0
  91. data/_includes/download/cards-body.html +8 -0
  92. data/_includes/download/cards-footer.html +3 -0
  93. data/_includes/download/cards-header-commands.html +8 -0
  94. data/_includes/download/cards-header-convert.html +8 -0
  95. data/_includes/download/cards-header-doc.html +8 -0
  96. data/_includes/download/cards-header-documentation.html +8 -0
  97. data/_includes/download/cards-header-eol.html +8 -0
  98. data/_includes/download/cards-header-mirrors.html +13 -0
  99. data/_includes/download/cards-header-screenshot.html +8 -0
  100. data/_includes/download/cards-header-screenshots.html +8 -0
  101. data/_includes/download/cards-header.html +13 -0
  102. data/_includes/download/cards.html +120 -0
  103. data/_layouts/base/default.html +68 -0
  104. data/_layouts/download/cards.html +7 -0
  105. data/_layouts/download/default.html +7 -0
  106. data/_layouts/people/default.html +68 -0
  107. data/_sass/base/_customization.scss +331 -0
  108. data/_sass/base/_light-dark.scss +10 -0
  109. data/_sass/base/_maps.scss +104 -0
  110. data/_sass/base/_variables.scss +232 -0
  111. data/_sass/bootstrap/_accordion.scss +153 -0
  112. data/_sass/bootstrap/_alert.scss +68 -0
  113. data/_sass/bootstrap/_badge.scss +38 -0
  114. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  115. data/_sass/bootstrap/_button-group.scss +147 -0
  116. data/_sass/bootstrap/_buttons.scss +216 -0
  117. data/_sass/bootstrap/_card.scss +238 -0
  118. data/_sass/bootstrap/_carousel.scss +226 -0
  119. data/_sass/bootstrap/_close.scss +66 -0
  120. data/_sass/bootstrap/_containers.scss +41 -0
  121. data/_sass/bootstrap/_dropdown.scss +250 -0
  122. data/_sass/bootstrap/_forms.scss +9 -0
  123. data/_sass/bootstrap/_functions.scss +302 -0
  124. data/_sass/bootstrap/_grid.scss +39 -0
  125. data/_sass/bootstrap/_helpers.scss +12 -0
  126. data/_sass/bootstrap/_images.scss +42 -0
  127. data/_sass/bootstrap/_list-group.scss +199 -0
  128. data/_sass/bootstrap/_maps.scss +174 -0
  129. data/_sass/bootstrap/_mixins.scss +42 -0
  130. data/_sass/bootstrap/_modal.scss +240 -0
  131. data/_sass/bootstrap/_nav.scss +197 -0
  132. data/_sass/bootstrap/_navbar.scss +289 -0
  133. data/_sass/bootstrap/_offcanvas.scss +147 -0
  134. data/_sass/bootstrap/_pagination.scss +109 -0
  135. data/_sass/bootstrap/_placeholders.scss +51 -0
  136. data/_sass/bootstrap/_popover.scss +196 -0
  137. data/_sass/bootstrap/_progress.scss +68 -0
  138. data/_sass/bootstrap/_reboot.scss +617 -0
  139. data/_sass/bootstrap/_root.scss +187 -0
  140. data/_sass/bootstrap/_spinners.scss +86 -0
  141. data/_sass/bootstrap/_tables.scss +171 -0
  142. data/_sass/bootstrap/_toasts.scss +73 -0
  143. data/_sass/bootstrap/_tooltip.scss +119 -0
  144. data/_sass/bootstrap/_transitions.scss +27 -0
  145. data/_sass/bootstrap/_type.scss +106 -0
  146. data/_sass/bootstrap/_utilities.scss +806 -0
  147. data/_sass/bootstrap/_variables-dark.scss +102 -0
  148. data/_sass/bootstrap/_variables.scss +1753 -0
  149. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  150. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  151. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  152. data/_sass/bootstrap/bootstrap.scss +52 -0
  153. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  154. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  155. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  156. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  157. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  158. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  159. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  160. data/_sass/bootstrap/forms/_labels.scss +36 -0
  161. data/_sass/bootstrap/forms/_validation.scss +12 -0
  162. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  163. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  164. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  165. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  166. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  167. data/_sass/bootstrap/helpers/_position.scss +36 -0
  168. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  169. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  170. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  171. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  172. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  173. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  174. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  175. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  176. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  177. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  178. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  179. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  180. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  181. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  182. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  183. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  184. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  185. data/_sass/bootstrap/mixins/_container.scss +11 -0
  186. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  187. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  188. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  189. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  190. data/_sass/bootstrap/mixins/_image.scss +16 -0
  191. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  192. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  193. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  194. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  195. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  196. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  197. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  198. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  199. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  200. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  201. data/_sass/bootstrap/utilities/_api.scss +47 -0
  202. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  203. data/assets/css/base/stylesheet.min.scss +35 -0
  204. data/assets/icons/android-chrome-192.png +0 -0
  205. data/assets/icons/android-chrome-512.png +0 -0
  206. data/assets/icons/apple-touch-icon.png +0 -0
  207. data/assets/icons/favicon-16.png +0 -0
  208. data/assets/icons/favicon-32.png +0 -0
  209. data/assets/icons/favicon.ico +0 -0
  210. data/assets/icons/favicon.svg +1 -0
  211. data/assets/img/anaconda-symbolic.svg +1 -0
  212. data/assets/img/anaconda.svg +1 -0
  213. data/assets/img/base/centos-colors.gpl +55 -0
  214. data/assets/img/base/example-ogp-image.svg +297 -0
  215. data/assets/img/base/example-sponsors-design.svg +226 -0
  216. data/assets/img/base/example-sponsors-logo-1.svg +120 -0
  217. data/assets/img/base/example-sponsors-logo-2.svg +116 -0
  218. data/assets/img/base/example-sponsors-logo-3.svg +123 -0
  219. data/assets/img/base/example-sponsors-logo-4.svg +116 -0
  220. data/assets/img/base/example-sponsors-logo-5.svg +116 -0
  221. data/assets/img/base/example-sponsors-logo-6.svg +116 -0
  222. data/assets/img/base/example-sponsors-logo-7.svg +116 -0
  223. data/assets/img/base/example-sponsors-logo-8.svg +110 -0
  224. data/assets/img/base/page-layout-default.svg +1217 -0
  225. data/assets/img/base/page-with-alert.svg +383 -0
  226. data/assets/img/base/page-with-announcement.svg +956 -0
  227. data/assets/img/base/page-with-artwork.svg +1009 -0
  228. data/assets/img/base/page-with-backtotop.svg +1009 -0
  229. data/assets/img/base/page-with-bits.svg +891 -0
  230. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  231. data/assets/img/base/page-with-breakingnews.svg +957 -0
  232. data/assets/img/base/page-with-color.svg +57 -0
  233. data/assets/img/base/page-with-copyright.svg +1018 -0
  234. data/assets/img/base/page-with-copyvalue.svg +57 -0
  235. data/assets/img/base/page-with-datatable.svg +857 -0
  236. data/assets/img/base/page-with-event.svg +518 -0
  237. data/assets/img/base/page-with-fontawesome.svg +147 -0
  238. data/assets/img/base/page-with-footer.svg +1018 -0
  239. data/assets/img/base/page-with-heading.svg +57 -0
  240. data/assets/img/base/page-with-highlight.svg +86 -0
  241. data/assets/img/base/page-with-image.svg +57 -0
  242. data/assets/img/base/page-with-link.svg +57 -0
  243. data/assets/img/base/page-with-locales.svg +1009 -0
  244. data/assets/img/base/page-with-navbar.svg +958 -0
  245. data/assets/img/base/page-with-navindex.svg +279 -0
  246. data/assets/img/base/page-with-ogp.svg +401 -0
  247. data/assets/img/base/page-with-project.svg +423 -0
  248. data/assets/img/base/page-with-shortcut.svg +937 -0
  249. data/assets/img/base/page-with-social.svg +937 -0
  250. data/assets/img/base/page-with-sponsors.svg +937 -0
  251. data/assets/img/base/page-with-title.svg +584 -0
  252. data/assets/img/base/page-with-toc.svg +399 -0
  253. data/assets/img/base/screenshot-1200x600.svg +114 -0
  254. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  257. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  258. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  259. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  260. data/assets/img/centos-logo-2bits.svg +1 -0
  261. data/assets/img/centos-logo.svg +1 -0
  262. data/assets/img/centos-message-logo.svg +1 -0
  263. data/assets/img/centos-motif.png +0 -0
  264. data/assets/img/centos-poweredby-logo.svg +1 -0
  265. data/assets/img/centos-social-share.png +0 -0
  266. data/assets/img/centos-symbol-2bits.svg +1 -0
  267. data/assets/img/centos-symbol.svg +1 -0
  268. data/assets/img/centos-type.svg +1 -0
  269. data/assets/img/centos-vertical-logo.svg +1 -0
  270. data/assets/img/centos-vertical-message-logo.svg +1 -0
  271. data/assets/img/centos-whitelogo.svg +1 -0
  272. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  274. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  279. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  280. data/assets/img/download/download.svg +421 -0
  281. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  282. data/assets/img/people/page.svg +900 -0
  283. data/assets/img/people/page.webp +0 -0
  284. data/assets/img/people/username.webp +0 -0
  285. data/assets/js/base/backtotop.js +20 -0
  286. data/assets/js/base/copyvalue.js +145 -0
  287. data/assets/js/base/datatable.js +41 -0
  288. data/assets/js/base/heading-anchor.js +108 -0
  289. data/assets/js/base/highlight.js +12 -0
  290. data/assets/js/base/init-tooltips.js +12 -0
  291. data/assets/js/bootstrap.bundle.js +6312 -0
  292. data/assets/js/bootstrap.bundle.js.map +1 -0
  293. data/assets/js/bootstrap.bundle.min.js +7 -0
  294. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  295. data/assets/js/bootstrap.esm.js +4447 -0
  296. data/assets/js/bootstrap.esm.js.map +1 -0
  297. data/assets/js/bootstrap.esm.min.js +7 -0
  298. data/assets/js/bootstrap.esm.min.js.map +1 -0
  299. data/assets/js/bootstrap.js +4494 -0
  300. data/assets/js/bootstrap.js.map +1 -0
  301. data/assets/js/bootstrap.min.js +7 -0
  302. data/assets/js/bootstrap.min.js.map +1 -0
  303. data/site.webmanifest +11 -0
  304. metadata +611 -0
@@ -0,0 +1,383 @@
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="378.18835"
7
+ viewBox="0 0 169.33333 100.06233"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
11
+ sodipodi:docname="page-with-alert.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="px"
26
+ inkscape:zoom="1.4142136"
27
+ inkscape:cx="253.14423"
28
+ inkscape:cy="206.82873"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1403"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <defs
37
+ id="defs1">
38
+ <clipPath
39
+ clipPathUnits="userSpaceOnUse"
40
+ id="clipPath885">
41
+ <path
42
+ id="path885"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
45
+ sodipodi:nodetypes="sscsssssscsss" />
46
+ </clipPath>
47
+ <clipPath
48
+ clipPathUnits="userSpaceOnUse"
49
+ id="clipPath883">
50
+ <path
51
+ id="path883"
52
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
53
+ d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
54
+ sodipodi:nodetypes="sscsssssscsss" />
55
+ </clipPath>
56
+ <clipPath
57
+ clipPathUnits="userSpaceOnUse"
58
+ id="clipPath891-7">
59
+ <path
60
+ id="path891-5"
61
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
62
+ d="m 3800.1891,1571.6162 c -5.0601,0 -11.3239,2.9571 -16.9463,6.4394 v 62.4874 c 5.6224,-3.4823 11.8862,-6.4389 16.9463,-6.4389 12.3063,0 19.427,17.4894 31.7336,17.4894 12.3063,0 19.4265,-17.4894 31.7328,-17.4894 12.3063,0 19.4268,17.4894 31.7331,17.4894 12.3063,0 19.4275,-17.4894 31.7338,-17.4894 12.3063,0 19.2781,17.7145 31.7331,17.4894 8.6241,-0.1559 20.5198,-9.2441 27.0214,-14.8198 v -62.4874 c -6.5016,5.5756 -18.3973,14.6639 -27.0214,14.8198 -12.455,0.225 -19.4268,-17.4899 -31.7331,-17.4899 -12.3063,0 -19.4275,17.4899 -31.7338,17.4899 -12.3063,0 -19.4268,-17.4899 -31.7331,-17.4899 -12.3063,0 -19.4265,17.4899 -31.7328,17.4899 -12.3066,0 -19.4273,-17.4899 -31.7336,-17.4899 z"
63
+ sodipodi:nodetypes="sccssssssccssssss" />
64
+ </clipPath>
65
+ <clipPath
66
+ clipPathUnits="userSpaceOnUse"
67
+ id="clipPath883-7">
68
+ <path
69
+ id="path883-5"
70
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
71
+ d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
72
+ sodipodi:nodetypes="sscsssssscsss" />
73
+ </clipPath>
74
+ <filter
75
+ inkscape:collect="always"
76
+ style="color-interpolation-filters:sRGB"
77
+ id="filter71"
78
+ x="-0.030834842"
79
+ y="-0.012744665"
80
+ width="1.0616697"
81
+ height="1.0254893">
82
+ <feGaussianBlur
83
+ inkscape:collect="always"
84
+ stdDeviation="4.1775707"
85
+ id="feGaussianBlur71" />
86
+ </filter>
87
+ <clipPath
88
+ clipPathUnits="userSpaceOnUse"
89
+ id="clipPath2">
90
+ <path
91
+ id="path3-5"
92
+ 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"
93
+ d="m 69.416823,172.50827 c -1.414562,0 -2.553245,-1.13868 -2.553245,-2.55324 V 87.72307 c 4.647798,2.878559 9.825953,5.322979 14.009005,5.322979 10.173,0 16.059513,-14.457992 26.232767,-14.457992 10.17308,0 16.05926,14.457992 26.23243,14.457992 10.17308,0 16.05943,-14.457992 26.23243,-14.457992 10.17316,0 16.05968,14.457992 26.23276,14.457992 10.17317,0 15.93651,-14.644123 26.23243,-14.457992 7.1293,0.128815 16.96313,7.641735 22.3377,12.250881 v 79.116092 c 0,1.41456 -1.13868,2.55324 -2.55308,2.55324 z"
94
+ sodipodi:nodetypes="sscsssssscsss" />
95
+ </clipPath>
96
+ <clipPath
97
+ clipPathUnits="userSpaceOnUse"
98
+ id="clipPath1-2">
99
+ <path
100
+ id="path2-3"
101
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.69483;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
102
+ d="m 82.288168,56.438395 c 0,-1.283941 1.033533,-2.317477 2.317471,-2.317477 h 74.638591 c -2.61275,4.218617 -4.83145,8.918616 -4.83145,12.715401 0,9.233617 13.12292,14.576564 13.12292,23.81041 0,9.23369 -13.12292,14.576331 -13.12292,23.810101 0,9.23369 13.12292,14.57649 13.12292,23.81011 0,9.23376 -13.12292,14.57671 -13.12292,23.8104 0,9.23377 13.29187,14.46492 13.12292,23.81011 -0.11692,6.47097 -6.93609,15.39674 -11.11962,20.27501 H 84.605639 c -1.283938,0 -2.317471,-1.03353 -2.317471,-2.31732 z"
103
+ sodipodi:nodetypes="sscsssssscsss" />
104
+ </clipPath>
105
+ <clipPath
106
+ clipPathUnits="userSpaceOnUse"
107
+ id="clipPath1">
108
+ <path
109
+ id="path1"
110
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.944613;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
111
+ d="M 351.26632,-15.556749 V 84.505581 H 520.59965 V -15.556749 Z"
112
+ sodipodi:nodetypes="ccccc" />
113
+ </clipPath>
114
+ </defs>
115
+ <g
116
+ inkscape:label="Layer 1"
117
+ inkscape:groupmode="layer"
118
+ id="layer1"
119
+ transform="translate(-155.35496,-78.088039)">
120
+ <rect
121
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.421556;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
122
+ id="alert"
123
+ width="169.33333"
124
+ height="78.811295"
125
+ x="155.35497"
126
+ y="88.713562"
127
+ inkscape:export-filename="page-with-alert.png"
128
+ inkscape:export-xdpi="96"
129
+ inkscape:export-ydpi="96" />
130
+ <g
131
+ id="g10"
132
+ clip-path="url(#clipPath1)"
133
+ transform="translate(-195.91136,93.644788)">
134
+ <g
135
+ id="g87"
136
+ transform="matrix(0.46022288,0,0,0.46022288,-174.43062,20.041488)"
137
+ clip-path="none">
138
+ <rect
139
+ style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;filter:url(#filter71);stop-color:#000000"
140
+ id="rect71"
141
+ width="346.56509"
142
+ height="838.49048"
143
+ x="1152.9523"
144
+ y="-147.22197"
145
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
146
+ inkscape:export-xdpi="96"
147
+ inkscape:export-ydpi="96" />
148
+ <rect
149
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
150
+ id="rect4291"
151
+ width="346.56509"
152
+ height="838.49048"
153
+ x="1152.9523"
154
+ y="-147.22197"
155
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
156
+ inkscape:export-xdpi="96"
157
+ inkscape:export-ydpi="96" />
158
+ </g>
159
+ <g
160
+ id="g9">
161
+ <g
162
+ id="g915"
163
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1308.8028)">
164
+ <rect
165
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.298078;stroke-opacity:1"
166
+ id="rect88-5-2-4"
167
+ width="167.48444"
168
+ height="14.393218"
169
+ x="4029.1987"
170
+ y="1609.4308"
171
+ rx="1.3229167"
172
+ ry="1.3229167"
173
+ clip-path="url(#clipPath885)"
174
+ transform="translate(0,-25.26771)" />
175
+ <path
176
+ id="rect885"
177
+ clip-path="url(#clipPath885)"
178
+ style="fill:#f6edf4;stroke-width:0.298078"
179
+ transform="translate(2.6458335,-25.26771)"
180
+ d="m 4029.1987,1609.4308 h 163.5322 c 0.7329,0 1.3229,0.59 1.3229,1.3229 v 11.7474 c 0,0.7329 -0.59,1.3229 -1.3229,1.3229 h -163.5322 z"
181
+ sodipodi:nodetypes="csssscc" />
182
+ <rect
183
+ style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:0.298078;stroke-opacity:1"
184
+ id="rect886"
185
+ width="167.48444"
186
+ height="14.393218"
187
+ x="4029.1987"
188
+ y="1609.4308"
189
+ rx="1.3229167"
190
+ ry="1.3229167"
191
+ clip-path="url(#clipPath885)"
192
+ transform="translate(0,-25.26771)" />
193
+ <path
194
+ d="m 4038.0455,1594.0055 c 1.4615,0 2.646,-1.1845 2.646,-2.646 0,-1.4614 -1.1845,-2.6457 -2.646,-2.6457 -1.4612,0 -2.6457,1.1843 -2.6457,2.6457 0,1.4615 1.1845,2.646 2.6457,2.646 z m -0.3307,-3.6381 c 0,-0.183 0.1483,-0.3307 0.3307,-0.3307 0.1831,0 0.3309,0.1482 0.3309,0.3307 0,0.183 -0.1482,0.3307 -0.3309,0.3307 -0.1828,0 -0.3307,-0.1482 -0.3307,-0.3307 z m -0.083,0.6614 h 0.4961 c 0.1376,0 0.2481,0.1112 0.2481,0.2482 v 0.9093 h 0.083 c 0.1377,0 0.248,0.1112 0.248,0.2482 0,0.1376 -0.1112,0.2479 -0.248,0.2479 h -0.8268 c -0.1376,0 -0.2479,-0.1112 -0.2479,-0.2479 0,-0.1377 0.1112,-0.2482 0.2479,-0.2482 h 0.248 v -0.6614 h -0.248 c -0.1376,0 -0.2479,-0.1112 -0.2479,-0.2479 0,-0.1377 0.1112,-0.2482 0.2479,-0.2482 z"
195
+ id="path1-35-1"
196
+ style="fill:#d9b9d1;stroke-width:0.0103352" />
197
+ <rect
198
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
199
+ id="rect276-5-1-7-0"
200
+ width="37.78056"
201
+ height="1.9886599"
202
+ x="4045.158"
203
+ y="1615.6331"
204
+ ry="0.37640932"
205
+ rx="0.37640932"
206
+ clip-path="url(#clipPath883)"
207
+ transform="translate(0,-25.26771)" />
208
+ </g>
209
+ <g
210
+ id="g13"
211
+ transform="translate(0,0.05655136)">
212
+ <rect
213
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.298078;stroke-opacity:1"
214
+ id="rect887"
215
+ width="167.48444"
216
+ height="14.393218"
217
+ x="4029.1987"
218
+ y="1609.4308"
219
+ rx="1.6035736"
220
+ ry="1.6035736"
221
+ clip-path="url(#clipPath885)"
222
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1299.2115)" />
223
+ <path
224
+ id="rect889"
225
+ clip-path="url(#clipPath885)"
226
+ style="fill:#ecdce8;stroke-width:0.298078"
227
+ transform="matrix(0.82498034,0,0,0.82168484,-2953.3253,-1293.9662)"
228
+ d="m 4029.1987,1609.6312 h 163.2514 c 0.8884,0 1.6036,0.7181 1.6036,1.61 v 10.9728 c 0,0.8919 -0.7152,1.61 -1.6036,1.61 h -163.2514 z"
229
+ sodipodi:nodetypes="csssscc" />
230
+ <rect
231
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.298078;stroke-opacity:1"
232
+ id="rect890"
233
+ width="167.48444"
234
+ height="14.393218"
235
+ x="4029.1987"
236
+ y="1609.4308"
237
+ rx="1.3229167"
238
+ ry="1.3229167"
239
+ clip-path="url(#clipPath885)"
240
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1299.2115)" />
241
+ <rect
242
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
243
+ id="rect891"
244
+ width="37.78056"
245
+ height="1.9886599"
246
+ x="4045.158"
247
+ y="1615.6331"
248
+ ry="0.37640932"
249
+ rx="0.37640932"
250
+ clip-path="url(#clipPath883)"
251
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1299.2114)" />
252
+ <path
253
+ d="m 3804.8999,1627.8351 c 0.089,0 0.171,0.049 0.2134,0.1274 l 1.3097,2.4253 c 0.041,0.075 0.039,0.1662 0,0.2395 -0.044,0.073 -0.1231,0.1183 -0.2086,0.1183 h -2.6193 c -0.086,0 -0.165,-0.045 -0.2087,-0.1183 -0.044,-0.073 -0.045,-0.1643 0,-0.2395 l 1.3097,-2.4253 c 0.043,-0.078 0.1243,-0.1274 0.2134,-0.1274 z m 0,2.1343 c -0.1073,0 -0.194,0.087 -0.194,0.1941 0,0.1073 0.087,0.194 0.194,0.194 0.1073,0 0.194,-0.087 0.194,-0.194 0,-0.1074 -0.087,-0.1941 -0.194,-0.1941 z m 0,-1.1641 c -0.1103,0 -0.1983,0.094 -0.1904,0.2043 l 0.045,0.6306 c 0.01,0.076 0.069,0.1352 0.1449,0.1352 0.076,0 0.1394,-0.059 0.1449,-0.1352 l 0.045,-0.6306 c 0.01,-0.1103 -0.079,-0.2043 -0.1904,-0.2043 z"
254
+ id="path1-6"
255
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.00606336"
256
+ clip-path="url(#clipPath891-7)"
257
+ transform="matrix(1.4999214,0,0,1.4999214,-5331.2553,-2409.3331)" />
258
+ </g>
259
+ <g
260
+ id="g5"
261
+ transform="matrix(0.82498034,0,0,0.82498034,-2882.0443,-1197.3573)">
262
+ <rect
263
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
264
+ id="rect891-6"
265
+ width="111.06383"
266
+ height="1.9886475"
267
+ x="4045.158"
268
+ y="1615.6331"
269
+ clip-path="url(#clipPath883-7)"
270
+ transform="translate(-105.1574,-146.60573)" />
271
+ <rect
272
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
273
+ id="rect1"
274
+ width="159.65199"
275
+ height="1.9886475"
276
+ x="4045.158"
277
+ y="1615.6331"
278
+ clip-path="url(#clipPath883-7)"
279
+ transform="translate(-105.1574,-141.87519)" />
280
+ <rect
281
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
282
+ id="rect2"
283
+ width="71.455452"
284
+ height="1.9886475"
285
+ x="4045.158"
286
+ y="1615.6331"
287
+ clip-path="url(#clipPath883-7)"
288
+ transform="translate(-105.1574,-137.14465)" />
289
+ </g>
290
+ <g
291
+ id="g6"
292
+ transform="matrix(0.82498034,0,0,0.82498034,-2882.0443,-1195.7037)">
293
+ <rect
294
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
295
+ id="rect3"
296
+ width="138.48483"
297
+ height="1.9886475"
298
+ x="4045.158"
299
+ y="1615.6331"
300
+ clip-path="url(#clipPath883-7)"
301
+ transform="translate(-105.1574,-111.64783)" />
302
+ <rect
303
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
304
+ id="rect4"
305
+ width="111.06383"
306
+ height="1.9886475"
307
+ x="4045.158"
308
+ y="1615.6331"
309
+ clip-path="url(#clipPath883-7)"
310
+ transform="translate(-105.1574,-106.91729)" />
311
+ <rect
312
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
313
+ id="rect5"
314
+ width="71.455452"
315
+ height="1.9886475"
316
+ x="4045.158"
317
+ y="1615.6331"
318
+ clip-path="url(#clipPath883-7)"
319
+ transform="translate(-105.1574,-102.18675)" />
320
+ </g>
321
+ <g
322
+ id="g12"
323
+ transform="translate(0,-1.0583333)">
324
+ <rect
325
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.298078;stroke-opacity:1"
326
+ id="rect6"
327
+ width="167.48444"
328
+ height="14.393218"
329
+ x="4029.1987"
330
+ y="1609.4308"
331
+ rx="1.3229167"
332
+ ry="1.3229167"
333
+ clip-path="url(#clipPath885)"
334
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1267.6034)" />
335
+ <path
336
+ id="path6"
337
+ clip-path="url(#clipPath885)"
338
+ style="fill:#f6edf4;stroke-width:0.298078"
339
+ transform="matrix(0.82498034,0,0,0.82498034,-2953.3253,-1267.6034)"
340
+ d="m 4029.1987,1609.4308 h 163.5322 c 0.7329,0 1.3229,0.59 1.3229,1.3229 v 11.7474 c 0,0.7329 -0.59,1.3229 -1.3229,1.3229 h -163.5322 z"
341
+ sodipodi:nodetypes="csssscc" />
342
+ <rect
343
+ style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:0.298078;stroke-opacity:1"
344
+ id="rect7"
345
+ width="167.48444"
346
+ height="14.393218"
347
+ x="4029.1987"
348
+ y="1609.4308"
349
+ rx="1.3229167"
350
+ ry="1.3229167"
351
+ clip-path="url(#clipPath885)"
352
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1267.6034)" />
353
+ <rect
354
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
355
+ id="rect8"
356
+ width="37.78056"
357
+ height="1.9886599"
358
+ x="4045.158"
359
+ y="1615.6331"
360
+ ry="0.37640932"
361
+ rx="0.37640932"
362
+ clip-path="url(#clipPath883)"
363
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1267.6034)" />
364
+ <rect
365
+ style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.298078;stroke-opacity:1"
366
+ id="rect914"
367
+ width="167.48444"
368
+ height="14.393218"
369
+ x="4029.1987"
370
+ y="1609.4308"
371
+ rx="1.3229167"
372
+ ry="1.3229167"
373
+ clip-path="url(#clipPath885)"
374
+ transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1267.6034)" />
375
+ <path
376
+ d="m 375.80013,68.265213 c -1.20562,0 -2.18273,-0.977189 -2.18273,-2.182816 0,-1.205626 0.97711,-2.182733 2.18273,-2.182733 1.20563,0 2.18282,0.977107 2.18282,2.182733 0,1.205627 -0.97719,2.182816 -2.18282,2.182816 z m 1.00615,-3.123211 c -0.0912,-0.06682 -0.21912,-0.0462 -0.28561,0.04537 l -1.01811,1.400074 -0.44417,-0.444251 c -0.08,-0.08002 -0.20979,-0.08002 -0.28907,0 -0.0792,0.08002 -0.08,0.209792 0,0.289073 l 0.61387,0.613867 c 0.0429,0.0429 0.10064,0.06435 0.16029,0.0594 0.0594,-0.0083 0.11426,-0.03465 0.14924,-0.08357 l 1.15877,-1.59444 c 0.0668,-0.09124 0.0462,-0.219115 -0.0454,-0.285608 z"
377
+ id="path1-54"
378
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.00852642" />
379
+ </g>
380
+ </g>
381
+ </g>
382
+ </g>
383
+ </svg>