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.
Files changed (516) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_includes/centos-content/1col.html +11 -0
  5. data/_includes/centos-content/2col.html +15 -0
  6. data/_includes/centos-content/admonition/caution.html +4 -0
  7. data/_includes/centos-content/admonition/idea.html +4 -0
  8. data/_includes/centos-content/admonition/note.html +4 -0
  9. data/_includes/centos-content/admonition/warning.html +4 -0
  10. data/_includes/centos-content/around.html +6 -0
  11. data/_includes/centos-content/breadcrumbs.html +11 -0
  12. data/_includes/centos-content/download/stream-8-doc.html +5 -0
  13. data/_includes/centos-content/download/stream-8-eol.html +5 -0
  14. data/_includes/centos-content/download/stream-8.html +5 -0
  15. data/_includes/centos-content/download/stream.html +16 -0
  16. data/_includes/centos-content/download/table-body-doc.html +6 -0
  17. data/_includes/centos-content/download/table-body-eol.html +4 -0
  18. data/_includes/centos-content/download/table-body.html +7 -0
  19. data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
  20. data/_includes/centos-content/download/table-header-doc.html +8 -0
  21. data/_includes/centos-content/download/table-header-eol.html +8 -0
  22. data/_includes/centos-content/download/table-header.html +10 -0
  23. data/_includes/centos-content/figure.html +4 -0
  24. data/_includes/centos-content/news.html +15 -0
  25. data/_includes/centos-content/sponsors.html +19 -0
  26. data/_includes/centos-content/toc.html +103 -0
  27. data/_includes/centos-content/video.html +3 -0
  28. data/_includes/centos-footer.html +42 -0
  29. data/_includes/centos-head.html +7 -0
  30. data/_includes/centos-header/home.html +15 -0
  31. data/_includes/centos-header/page.html +12 -0
  32. data/_includes/centos-header.html +7 -0
  33. data/_includes/centos-nav.html +29 -0
  34. data/_includes/centos-styleguide.md +243 -0
  35. data/_layouts/centos-content/1col.html +9 -0
  36. data/_layouts/centos-content/2col.html +9 -0
  37. data/_layouts/centos-content/download-mirror.html +30 -0
  38. data/_layouts/centos-content/download.html +18 -0
  39. data/_layouts/centos-content/sponsors.html +21 -0
  40. data/_layouts/centos-home.html +39 -0
  41. data/_layouts/default.html +18 -0
  42. data/_layouts/{download/cards.html → page.html} +0 -2
  43. data/_layouts/post.html +5 -0
  44. data/_sass/bootstrap/_alert.scss +16 -32
  45. data/_sass/bootstrap/_badge.scss +31 -15
  46. data/_sass/bootstrap/_breadcrumb.scss +27 -23
  47. data/_sass/bootstrap/_button-group.scss +48 -32
  48. data/_sass/bootstrap/_buttons.scss +71 -145
  49. data/_sass/bootstrap/_card.scss +123 -75
  50. data/_sass/bootstrap/_carousel.scss +39 -68
  51. data/_sass/bootstrap/_close.scss +27 -53
  52. data/_sass/bootstrap/_code.scss +48 -0
  53. data/_sass/bootstrap/_custom-forms.scss +524 -0
  54. data/_sass/bootstrap/_dropdown.scss +71 -129
  55. data/_sass/bootstrap/_forms.scss +347 -9
  56. data/_sass/bootstrap/_functions.scss +23 -181
  57. data/_sass/bootstrap/_grid.scss +52 -18
  58. data/_sass/bootstrap/_images.scss +1 -1
  59. data/_sass/bootstrap/_input-group.scss +192 -0
  60. data/_sass/bootstrap/_jumbotron.scss +17 -0
  61. data/_sass/bootstrap/_list-group.scss +48 -93
  62. data/_sass/bootstrap/_media.scss +8 -0
  63. data/_sass/bootstrap/_mixins.scss +15 -10
  64. data/_sass/bootstrap/_modal.scss +112 -112
  65. data/_sass/bootstrap/_nav.scss +29 -103
  66. data/_sass/bootstrap/_navbar.scss +171 -136
  67. data/_sass/bootstrap/_pagination.scss +37 -72
  68. data/_sass/bootstrap/_popover.scss +73 -99
  69. data/_sass/bootstrap/_print.scss +141 -0
  70. data/_sass/bootstrap/_progress.scss +15 -36
  71. data/_sass/bootstrap/_reboot.scss +200 -333
  72. data/_sass/bootstrap/_root.scss +10 -177
  73. data/_sass/bootstrap/_spinners.scss +22 -52
  74. data/_sass/bootstrap/_tables.scss +115 -101
  75. data/_sass/bootstrap/_toasts.scss +27 -54
  76. data/_sass/bootstrap/_tooltip.scss +63 -67
  77. data/_sass/bootstrap/_transitions.scss +1 -8
  78. data/_sass/bootstrap/_type.scss +59 -40
  79. data/_sass/bootstrap/_utilities.scss +18 -806
  80. data/_sass/bootstrap/_variables.scss +611 -1222
  81. data/_sass/bootstrap/bootstrap-grid.scss +20 -53
  82. data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
  83. data/_sass/bootstrap/bootstrap.scss +13 -21
  84. data/_sass/bootstrap/mixins/_alert.scss +6 -11
  85. data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
  86. data/_sass/bootstrap/mixins/_badge.scss +17 -0
  87. data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
  90. data/_sass/bootstrap/mixins/_buttons.scss +100 -60
  91. data/_sass/bootstrap/mixins/_caret.scss +27 -34
  92. data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
  93. data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
  94. data/_sass/bootstrap/mixins/_float.scss +14 -0
  95. data/_sass/bootstrap/mixins/_forms.scss +78 -63
  96. data/_sass/bootstrap/mixins/_gradients.scss +11 -13
  97. data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
  98. data/_sass/bootstrap/mixins/_grid.scss +37 -119
  99. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  100. data/_sass/bootstrap/mixins/_image.scss +21 -1
  101. data/_sass/bootstrap/mixins/_list-group.scss +2 -7
  102. data/_sass/bootstrap/mixins/_lists.scss +1 -1
  103. data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +19 -7
  105. data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
  106. data/_sass/bootstrap/mixins/_resize.scss +0 -0
  107. data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
  108. data/_sass/bootstrap/mixins/_size.scss +7 -0
  109. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  110. data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
  111. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +1 -1
  114. data/_sass/bootstrap/mixins/_visibility.scss +8 -0
  115. data/_sass/bootstrap/utilities/_align.scss +8 -0
  116. data/_sass/bootstrap/utilities/_background.scss +19 -0
  117. data/_sass/bootstrap/utilities/_borders.scss +75 -0
  118. data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
  119. data/_sass/bootstrap/utilities/_display.scss +26 -0
  120. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  121. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  122. data/_sass/bootstrap/utilities/_float.scss +11 -0
  123. data/_sass/bootstrap/utilities/_interactions.scss +5 -0
  124. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  125. data/_sass/bootstrap/utilities/_position.scss +32 -0
  126. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  127. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  128. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  129. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  130. data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
  131. data/_sass/bootstrap/utilities/_text.scss +72 -0
  132. data/_sass/bootstrap/utilities/_visibility.scss +13 -0
  133. data/_sass/bootstrap/vendor/_rfs.scss +132 -276
  134. data/_sass/centos/_content.scss +101 -0
  135. data/_sass/centos/_datatable.scss +271 -0
  136. data/_sass/centos/_fonts.scss +1 -0
  137. data/_sass/centos/_footer.scss +49 -0
  138. data/_sass/centos/_header.scss +25 -0
  139. data/_sass/centos/_highlighter.scss +360 -0
  140. data/_sass/centos/_mixins.scss +4 -0
  141. data/_sass/centos/_nav.scss +10 -0
  142. data/_sass/centos/_rssfeeds.scss +17 -0
  143. data/_sass/centos/_variables.scss +111 -0
  144. data/_sass/centos/centos.scss +23 -0
  145. data/_sass/centos/content/_1col.scss +32 -0
  146. data/_sass/centos/content/_2col.scss +44 -0
  147. data/_sass/centos/content/_download.scss +17 -0
  148. data/_sass/centos/content/_sponsors.scss +9 -0
  149. data/_sass/centos/fonts/_montserrat.scss +256 -0
  150. data/_sass/centos/header/_home.scss +4 -0
  151. data/_sass/centos/header/_page.scss +4 -0
  152. data/_sass/centos/mixins/_content-card.scss +13 -0
  153. data/_sass/centos/mixins/_content-heading.scss +28 -0
  154. data/_sass/centos/mixins/_content-toc.scss +18 -0
  155. data/_sass/centos/mixins/_footer-link.scss +10 -0
  156. data/_sass/fontawesome/_animated.scss +20 -0
  157. data/_sass/fontawesome/_bordered-pulled.scss +20 -0
  158. data/_sass/fontawesome/_core.scss +21 -0
  159. data/_sass/fontawesome/_fixed-width.scss +6 -0
  160. data/_sass/fontawesome/_icons.scss +1462 -0
  161. data/_sass/fontawesome/_larger.scss +23 -0
  162. data/_sass/fontawesome/_list.scss +18 -0
  163. data/_sass/fontawesome/_mixins.scss +56 -0
  164. data/_sass/fontawesome/_rotated-flipped.scss +24 -0
  165. data/_sass/fontawesome/_screen-reader.scss +5 -0
  166. data/_sass/fontawesome/_shims.scss +2066 -0
  167. data/_sass/fontawesome/_stacked.scss +31 -0
  168. data/_sass/fontawesome/_variables.scss +1479 -0
  169. data/_sass/fontawesome/brands.scss +23 -0
  170. data/_sass/fontawesome/fontawesome.scss +16 -0
  171. data/_sass/fontawesome/regular.scss +23 -0
  172. data/_sass/fontawesome/solid.scss +24 -0
  173. data/_sass/fontawesome/v4-shims.scss +6 -0
  174. data/assets/css/centos.bootstrap.min.scss +4 -0
  175. data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
  176. data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
  177. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
  178. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
  179. data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
  180. data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
  181. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
  182. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
  183. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
  184. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
  185. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
  186. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
  187. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
  188. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
  189. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
  190. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
  191. data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
  192. data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
  193. data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
  194. data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
  195. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
  196. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
  197. data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
  198. data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
  199. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
  200. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
  201. data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
  202. data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
  203. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
  204. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
  205. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
  206. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
  207. data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
  208. data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
  209. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
  210. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
  211. data/assets/fonts/Montserrat/Montserrat.css +327 -0
  212. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
  213. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
  214. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
  215. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
  216. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
  217. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
  218. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
  219. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
  220. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
  221. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
  222. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
  223. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
  224. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
  225. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
  226. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
  227. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
  228. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
  229. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
  230. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
  231. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
  232. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
  233. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
  234. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
  235. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
  236. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
  237. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
  238. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
  239. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
  240. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
  241. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
  242. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
  243. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
  244. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
  245. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
  246. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
  247. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
  248. data/assets/fonts/Montserrat/README.MD +35 -0
  249. data/assets/fonts/fa-brands-400.eot +0 -0
  250. data/assets/fonts/fa-brands-400.svg +3717 -0
  251. data/assets/fonts/fa-brands-400.ttf +0 -0
  252. data/assets/fonts/fa-brands-400.woff +0 -0
  253. data/assets/fonts/fa-brands-400.woff2 +0 -0
  254. data/assets/fonts/fa-regular-400.eot +0 -0
  255. data/assets/fonts/fa-regular-400.svg +801 -0
  256. data/assets/fonts/fa-regular-400.ttf +0 -0
  257. data/assets/fonts/fa-regular-400.woff +0 -0
  258. data/assets/fonts/fa-regular-400.woff2 +0 -0
  259. data/assets/fonts/fa-solid-900.eot +0 -0
  260. data/assets/fonts/fa-solid-900.svg +5028 -0
  261. data/assets/fonts/fa-solid-900.ttf +0 -0
  262. data/assets/fonts/fa-solid-900.woff +0 -0
  263. data/assets/fonts/fa-solid-900.woff2 +0 -0
  264. data/assets/img/centos-logo-white.png +0 -0
  265. data/assets/img/centos-motif.png +0 -0
  266. data/assets/img/favicon.png +0 -0
  267. data/assets/js/bootstrap.min.js +4 -4
  268. data/assets/js/bootstrap.min.js.map +1 -1
  269. data/assets/js/dataTables.bootstrap4.min.js +14 -0
  270. data/assets/js/jquery.dataTables.min.js +184 -0
  271. data/assets/js/jquery.min.js +2 -0
  272. data/assets/js/jquery.rss.js +11 -0
  273. data/assets/js/moment.min.js +7 -0
  274. metadata +238 -492
  275. data/_config.yml +0 -196
  276. data/_data/base/announcement_schema.yml +0 -49
  277. data/_data/base/artwork_schema.yml +0 -46
  278. data/_data/base/backtotop_schema.yml +0 -59
  279. data/_data/base/bits.yml +0 -96
  280. data/_data/base/bits_schema.yml +0 -185
  281. data/_data/base/breadcrumb_schema.yml +0 -27
  282. data/_data/base/breakingnews_schema.yml +0 -67
  283. data/_data/base/card_schema.yml +0 -146
  284. data/_data/base/color.yml +0 -1042
  285. data/_data/base/color_schema.yml +0 -1036
  286. data/_data/base/configuration_variables_schema.yml +0 -42
  287. data/_data/base/content.yml +0 -2
  288. data/_data/base/content_schema.yml +0 -26
  289. data/_data/base/copyright.yml +0 -12
  290. data/_data/base/copyright_schema.yml +0 -74
  291. data/_data/base/copyvalue_schema.yml +0 -49
  292. data/_data/base/datatable_schema.yml +0 -57
  293. data/_data/base/event_schema.yml +0 -130
  294. data/_data/base/fontawesome_schema.yml +0 -62
  295. data/_data/base/footer.yml +0 -9
  296. data/_data/base/footer_schema.yml +0 -55
  297. data/_data/base/head_schema.yml +0 -19
  298. data/_data/base/heading_anchor.yml +0 -2
  299. data/_data/base/heading_anchor_schema.yml +0 -37
  300. data/_data/base/highlight_schema.yml +0 -98
  301. data/_data/base/image_schema.yml +0 -34
  302. data/_data/base/languages.yml +0 -186
  303. data/_data/base/link_schema.yml +0 -187
  304. data/_data/base/locales_schema.yml +0 -158
  305. data/_data/base/navbar.yml +0 -20
  306. data/_data/base/navbar_schema.yml +0 -129
  307. data/_data/base/navindex_schema.yml +0 -67
  308. data/_data/base/ogp.yml +0 -24
  309. data/_data/base/ogp_schema.yml +0 -192
  310. data/_data/base/project.yml +0 -37
  311. data/_data/base/project_schema.yml +0 -124
  312. data/_data/base/script_schema.yml +0 -41
  313. data/_data/base/shortcut_schema.yml +0 -74
  314. data/_data/base/social.yml +0 -26
  315. data/_data/base/social_schema.yml +0 -57
  316. data/_data/base/sponsors.yml +0 -41
  317. data/_data/base/sponsors_schema.yml +0 -73
  318. data/_data/base/title_schema.yml +0 -49
  319. data/_data/base/toc_schema.yml +0 -114
  320. data/_data/download/cards.yml +0 -309
  321. data/_data/download/navbar.yml +0 -11
  322. data/_includes/base/announcement.html.liquid +0 -65
  323. data/_includes/base/artwork.html.liquid +0 -63
  324. data/_includes/base/backtotop.html.liquid +0 -73
  325. data/_includes/base/bits.html.liquid +0 -152
  326. data/_includes/base/breadcrumb.html.liquid +0 -77
  327. data/_includes/base/breakingnews.html.liquid +0 -90
  328. data/_includes/base/card.html.liquid +0 -110
  329. data/_includes/base/color-table.html.liquid +0 -33
  330. data/_includes/base/configuration_variables-nested.html.liquid +0 -98
  331. data/_includes/base/configuration_variables.html.liquid +0 -98
  332. data/_includes/base/content.html.liquid +0 -7
  333. data/_includes/base/copyright.html.liquid +0 -70
  334. data/_includes/base/copyvalue.html.liquid +0 -82
  335. data/_includes/base/datatable.html.liquid +0 -83
  336. data/_includes/base/event.html.liquid +0 -105
  337. data/_includes/base/fontawesome.html.liquid +0 -91
  338. data/_includes/base/footer.html.liquid +0 -69
  339. data/_includes/base/head.html.liquid +0 -135
  340. data/_includes/base/heading_anchor.html.liquid +0 -67
  341. data/_includes/base/highlight.html.liquid +0 -84
  342. data/_includes/base/image.html.liquid +0 -42
  343. data/_includes/base/link.html.liquid +0 -129
  344. data/_includes/base/locales.html.liquid +0 -78
  345. data/_includes/base/navbar.html.liquid +0 -121
  346. data/_includes/base/navindex.html.liquid +0 -200
  347. data/_includes/base/ogp.html.liquid +0 -144
  348. data/_includes/base/project.html.liquid +0 -104
  349. data/_includes/base/shortcut.html.liquid +0 -77
  350. data/_includes/base/social.html.liquid +0 -76
  351. data/_includes/base/sponsors-cards.html.liquid +0 -69
  352. data/_includes/base/sponsors-carousel.html.liquid +0 -91
  353. data/_includes/base/title.html.liquid +0 -65
  354. data/_includes/base/toc-generator.html.liquid +0 -189
  355. data/_includes/base/toc.html.liquid +0 -95
  356. data/_includes/download/cards-body-commands.html +0 -7
  357. data/_includes/download/cards-body-convert.html +0 -10
  358. data/_includes/download/cards-body-doc.html +0 -9
  359. data/_includes/download/cards-body-documentation.html +0 -11
  360. data/_includes/download/cards-body-eol.html +0 -16
  361. data/_includes/download/cards-body-mirrors.html +0 -8
  362. data/_includes/download/cards-body-screenshot.html +0 -26
  363. data/_includes/download/cards-body-screenshots.html +0 -32
  364. data/_includes/download/cards-body.html +0 -8
  365. data/_includes/download/cards-header-commands.html +0 -8
  366. data/_includes/download/cards-header-convert.html +0 -8
  367. data/_includes/download/cards-header-doc.html +0 -8
  368. data/_includes/download/cards-header-documentation.html +0 -8
  369. data/_includes/download/cards-header-eol.html +0 -8
  370. data/_includes/download/cards-header-mirrors.html +0 -13
  371. data/_includes/download/cards-header-screenshot.html +0 -8
  372. data/_includes/download/cards-header-screenshots.html +0 -8
  373. data/_includes/download/cards-header.html +0 -13
  374. data/_includes/download/cards.html +0 -120
  375. data/_layouts/base/default.html +0 -68
  376. data/_layouts/download/default.html +0 -7
  377. data/_layouts/people/default.html +0 -68
  378. data/_sass/base/_customization.scss +0 -331
  379. data/_sass/base/_light-dark.scss +0 -10
  380. data/_sass/base/_maps.scss +0 -104
  381. data/_sass/base/_variables.scss +0 -232
  382. data/_sass/bootstrap/_accordion.scss +0 -153
  383. data/_sass/bootstrap/_containers.scss +0 -41
  384. data/_sass/bootstrap/_helpers.scss +0 -12
  385. data/_sass/bootstrap/_maps.scss +0 -174
  386. data/_sass/bootstrap/_offcanvas.scss +0 -147
  387. data/_sass/bootstrap/_placeholders.scss +0 -51
  388. data/_sass/bootstrap/_variables-dark.scss +0 -102
  389. data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
  390. data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
  391. data/_sass/bootstrap/forms/_form-check.scss +0 -189
  392. data/_sass/bootstrap/forms/_form-control.scss +0 -214
  393. data/_sass/bootstrap/forms/_form-range.scss +0 -91
  394. data/_sass/bootstrap/forms/_form-select.scss +0 -80
  395. data/_sass/bootstrap/forms/_form-text.scss +0 -11
  396. data/_sass/bootstrap/forms/_input-group.scss +0 -132
  397. data/_sass/bootstrap/forms/_labels.scss +0 -36
  398. data/_sass/bootstrap/forms/_validation.scss +0 -12
  399. data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
  400. data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
  401. data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
  402. data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
  403. data/_sass/bootstrap/helpers/_position.scss +0 -36
  404. data/_sass/bootstrap/helpers/_ratio.scss +0 -26
  405. data/_sass/bootstrap/helpers/_stacks.scss +0 -15
  406. data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
  407. data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
  408. data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
  409. data/_sass/bootstrap/helpers/_vr.scss +0 -8
  410. data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
  411. data/_sass/bootstrap/mixins/_banner.scss +0 -7
  412. data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
  413. data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
  414. data/_sass/bootstrap/mixins/_container.scss +0 -11
  415. data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
  416. data/_sass/bootstrap/mixins/_utilities.scss +0 -97
  417. data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
  418. data/_sass/bootstrap/utilities/_api.scss +0 -47
  419. data/assets/css/base/stylesheet.min.scss +0 -35
  420. data/assets/icons/android-chrome-192.png +0 -0
  421. data/assets/icons/android-chrome-512.png +0 -0
  422. data/assets/icons/apple-touch-icon.png +0 -0
  423. data/assets/icons/favicon-16.png +0 -0
  424. data/assets/icons/favicon-32.png +0 -0
  425. data/assets/icons/favicon.ico +0 -0
  426. data/assets/icons/favicon.svg +0 -1
  427. data/assets/img/anaconda-symbolic.svg +0 -1
  428. data/assets/img/anaconda.svg +0 -1
  429. data/assets/img/base/centos-colors.gpl +0 -55
  430. data/assets/img/base/example-ogp-image.svg +0 -297
  431. data/assets/img/base/example-sponsors-design.svg +0 -226
  432. data/assets/img/base/example-sponsors-logo-1.svg +0 -120
  433. data/assets/img/base/example-sponsors-logo-2.svg +0 -116
  434. data/assets/img/base/example-sponsors-logo-3.svg +0 -123
  435. data/assets/img/base/example-sponsors-logo-4.svg +0 -116
  436. data/assets/img/base/example-sponsors-logo-5.svg +0 -116
  437. data/assets/img/base/example-sponsors-logo-6.svg +0 -116
  438. data/assets/img/base/example-sponsors-logo-7.svg +0 -116
  439. data/assets/img/base/example-sponsors-logo-8.svg +0 -110
  440. data/assets/img/base/page-layout-default.svg +0 -1217
  441. data/assets/img/base/page-with-alert.svg +0 -383
  442. data/assets/img/base/page-with-announcement.svg +0 -956
  443. data/assets/img/base/page-with-artwork.svg +0 -1009
  444. data/assets/img/base/page-with-backtotop.svg +0 -1009
  445. data/assets/img/base/page-with-bits.svg +0 -891
  446. data/assets/img/base/page-with-breadcrumb.svg +0 -676
  447. data/assets/img/base/page-with-breakingnews.svg +0 -957
  448. data/assets/img/base/page-with-color.svg +0 -57
  449. data/assets/img/base/page-with-copyright.svg +0 -1018
  450. data/assets/img/base/page-with-copyvalue.svg +0 -57
  451. data/assets/img/base/page-with-datatable.svg +0 -857
  452. data/assets/img/base/page-with-event.svg +0 -518
  453. data/assets/img/base/page-with-fontawesome.svg +0 -147
  454. data/assets/img/base/page-with-footer.svg +0 -1018
  455. data/assets/img/base/page-with-heading.svg +0 -57
  456. data/assets/img/base/page-with-highlight.svg +0 -86
  457. data/assets/img/base/page-with-image.svg +0 -57
  458. data/assets/img/base/page-with-link.svg +0 -57
  459. data/assets/img/base/page-with-locales.svg +0 -1009
  460. data/assets/img/base/page-with-navbar.svg +0 -958
  461. data/assets/img/base/page-with-navindex.svg +0 -279
  462. data/assets/img/base/page-with-ogp.svg +0 -401
  463. data/assets/img/base/page-with-project.svg +0 -423
  464. data/assets/img/base/page-with-shortcut.svg +0 -937
  465. data/assets/img/base/page-with-social.svg +0 -937
  466. data/assets/img/base/page-with-sponsors.svg +0 -937
  467. data/assets/img/base/page-with-title.svg +0 -584
  468. data/assets/img/base/page-with-toc.svg +0 -399
  469. data/assets/img/base/screenshot-1200x600.svg +0 -114
  470. data/assets/img/centos-dynamicmsg-logo.svg +0 -1
  471. data/assets/img/centos-dynamicmsg-type.svg +0 -1
  472. data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
  473. data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
  474. data/assets/img/centos-gdm-whitelogo.svg +0 -1
  475. data/assets/img/centos-ipa-whiteheader.svg +0 -1
  476. data/assets/img/centos-logo-2bits.svg +0 -1
  477. data/assets/img/centos-logo.svg +0 -1
  478. data/assets/img/centos-message-logo.svg +0 -1
  479. data/assets/img/centos-poweredby-logo.svg +0 -1
  480. data/assets/img/centos-social-share.png +0 -0
  481. data/assets/img/centos-symbol-2bits.svg +0 -1
  482. data/assets/img/centos-symbol.svg +0 -1
  483. data/assets/img/centos-type.svg +0 -1
  484. data/assets/img/centos-vertical-logo.svg +0 -1
  485. data/assets/img/centos-vertical-message-logo.svg +0 -1
  486. data/assets/img/centos-whitelogo.svg +0 -1
  487. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  488. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  489. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  490. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  491. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  492. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  493. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  494. data/assets/img/download/distribution-release-screenshot-n.svg +0 -134
  495. data/assets/img/download/download.svg +0 -421
  496. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  497. data/assets/img/people/page.svg +0 -900
  498. data/assets/img/people/page.webp +0 -0
  499. data/assets/img/people/username.webp +0 -0
  500. data/assets/js/base/backtotop.js +0 -20
  501. data/assets/js/base/copyvalue.js +0 -145
  502. data/assets/js/base/datatable.js +0 -41
  503. data/assets/js/base/heading-anchor.js +0 -108
  504. data/assets/js/base/highlight.js +0 -12
  505. data/assets/js/base/init-tooltips.js +0 -12
  506. data/assets/js/bootstrap.bundle.js +0 -6312
  507. data/assets/js/bootstrap.bundle.js.map +0 -1
  508. data/assets/js/bootstrap.bundle.min.js +0 -7
  509. data/assets/js/bootstrap.bundle.min.js.map +0 -1
  510. data/assets/js/bootstrap.esm.js +0 -4447
  511. data/assets/js/bootstrap.esm.js.map +0 -1
  512. data/assets/js/bootstrap.esm.min.js +0 -7
  513. data/assets/js/bootstrap.esm.min.js.map +0 -1
  514. data/assets/js/bootstrap.js +0 -4494
  515. data/assets/js/bootstrap.js.map +0 -1
  516. data/site.webmanifest +0 -11
@@ -1,1009 +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="639.99994"
6
- height="640"
7
- viewBox="0 0 169.33332 169.33333"
8
- version="1.1"
9
- id="svg1"
10
- inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
11
- sodipodi:docname="page-with-artwork.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="4"
27
- inkscape:cx="436"
28
- inkscape:cy="521.37501"
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="g87"
35
- showgrid="false" />
36
- <defs
37
- id="defs1">
38
- <clipPath
39
- clipPathUnits="userSpaceOnUse"
40
- id="clipPath367">
41
- <path
42
- id="path368"
43
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
45
- </clipPath>
46
- <clipPath
47
- clipPathUnits="userSpaceOnUse"
48
- id="clipPath366">
49
- <path
50
- id="path367"
51
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
52
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
53
- </clipPath>
54
- <clipPath
55
- clipPathUnits="userSpaceOnUse"
56
- id="clipPath365">
57
- <path
58
- id="path366"
59
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
60
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
61
- </clipPath>
62
- <clipPath
63
- clipPathUnits="userSpaceOnUse"
64
- id="clipPath364">
65
- <path
66
- id="path365"
67
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
68
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
69
- </clipPath>
70
- <clipPath
71
- clipPathUnits="userSpaceOnUse"
72
- id="clipPath363">
73
- <path
74
- id="path364"
75
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
76
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
77
- </clipPath>
78
- <clipPath
79
- clipPathUnits="userSpaceOnUse"
80
- id="clipPath362">
81
- <path
82
- id="path363"
83
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
84
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
85
- </clipPath>
86
- <clipPath
87
- clipPathUnits="userSpaceOnUse"
88
- id="clipPath361">
89
- <path
90
- id="path362"
91
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
92
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
93
- </clipPath>
94
- <clipPath
95
- clipPathUnits="userSpaceOnUse"
96
- id="clipPath360">
97
- <path
98
- id="path361"
99
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
100
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
101
- </clipPath>
102
- <clipPath
103
- clipPathUnits="userSpaceOnUse"
104
- id="clipPath352">
105
- <path
106
- id="path353"
107
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
108
- d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
109
- </clipPath>
110
- <clipPath
111
- clipPathUnits="userSpaceOnUse"
112
- id="clipPath351">
113
- <path
114
- id="path352"
115
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
116
- d="m 712.48627,-301.09918 c -3.11726,0 -5.62691,2.50965 -5.62691,5.62696 v 205.093688 c 10.24337,-6.344434 21.6555,-11.731438 30.87459,-11.731438 22.42056,0 35.39383,31.864274 57.81472,31.864274 22.4207,0 35.39344,-31.864274 57.81414,-31.864274 22.4207,0 35.39364,31.864274 57.81415,31.864274 22.42089,0 35.39421,-31.864274 57.81491,-31.864274 22.4207,0 35.12273,32.274347 57.81413,31.864274 15.7123,-0.28397 37.3852,-16.841796 49.2303,-27.000044 v -198.22648 c 0,-3.11731 -2.5096,-5.62696 -5.6269,-5.62696 z" />
117
- </clipPath>
118
- <filter
119
- inkscape:collect="always"
120
- style="color-interpolation-filters:sRGB"
121
- id="filter71"
122
- x="-0.030834842"
123
- y="-0.012744665"
124
- width="1.0616697"
125
- height="1.0254893">
126
- <feGaussianBlur
127
- inkscape:collect="always"
128
- stdDeviation="4.1775707"
129
- id="feGaussianBlur71" />
130
- </filter>
131
- <marker
132
- style="overflow:visible"
133
- id="marker176"
134
- refX="0"
135
- refY="0"
136
- orient="auto-start-reverse"
137
- inkscape:stockid="Triangle arrow"
138
- markerWidth="1"
139
- markerHeight="1"
140
- viewBox="0 0 1 1"
141
- inkscape:isstock="true"
142
- inkscape:collect="always"
143
- preserveAspectRatio="xMidYMid">
144
- <path
145
- transform="scale(0.5)"
146
- style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
147
- d="M 5.77,0 -2.88,5 V -5 Z"
148
- id="path176" />
149
- </marker>
150
- <marker
151
- style="overflow:visible"
152
- id="marker175"
153
- refX="0"
154
- refY="0"
155
- orient="auto-start-reverse"
156
- inkscape:stockid="Triangle arrow"
157
- markerWidth="1"
158
- markerHeight="1"
159
- viewBox="0 0 1 1"
160
- inkscape:isstock="true"
161
- inkscape:collect="always"
162
- preserveAspectRatio="xMidYMid">
163
- <path
164
- transform="scale(0.5)"
165
- style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
166
- d="M 5.77,0 -2.88,5 V -5 Z"
167
- id="path175" />
168
- </marker>
169
- <clipPath
170
- clipPathUnits="userSpaceOnUse"
171
- id="clipPath2-5">
172
- <path
173
- id="path3-5"
174
- 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"
175
- 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"
176
- sodipodi:nodetypes="sscsssssscsss" />
177
- </clipPath>
178
- <clipPath
179
- clipPathUnits="userSpaceOnUse"
180
- id="clipPath1">
181
- <path
182
- id="path2-3"
183
- 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"
184
- 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"
185
- sodipodi:nodetypes="sscsssssscsss" />
186
- </clipPath>
187
- <clipPath
188
- clipPathUnits="userSpaceOnUse"
189
- id="clipPath16">
190
- <rect
191
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.753042;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
192
- id="rect17"
193
- width="367.93762"
194
- height="367.93765"
195
- x="1142.266"
196
- y="334.01712"
197
- inkscape:export-filename="page-with-artwork.png"
198
- inkscape:export-xdpi="96"
199
- inkscape:export-ydpi="96" />
200
- </clipPath>
201
- </defs>
202
- <g
203
- inkscape:label="Layer 1"
204
- inkscape:groupmode="layer"
205
- id="layer1"
206
- transform="translate(-87.841888,-84.995934)">
207
- <rect
208
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.346568;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
209
- id="artwork"
210
- width="169.33333"
211
- height="169.33334"
212
- x="87.841888"
213
- y="84.995934"
214
- inkscape:export-filename="page-with-artwork.png"
215
- inkscape:export-xdpi="96"
216
- inkscape:export-ydpi="96" />
217
- <g
218
- id="g87"
219
- transform="matrix(0.4602229,0,0,0.4602229,-437.85508,-68.726394)"
220
- clip-path="url(#clipPath16)">
221
- <rect
222
- 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"
223
- id="rect71"
224
- width="346.56509"
225
- height="838.49048"
226
- x="1152.9523"
227
- y="-147.22197"
228
- inkscape:export-filename="screenshot-sponsors-default-layout.png"
229
- inkscape:export-xdpi="96"
230
- inkscape:export-ydpi="96" />
231
- <rect
232
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
233
- id="rect4291"
234
- width="346.56509"
235
- height="838.49048"
236
- x="1152.9523"
237
- y="-147.22197"
238
- inkscape:export-filename="screenshot-sponsors-default-layout.png"
239
- inkscape:export-xdpi="96"
240
- inkscape:export-ydpi="96" />
241
- <rect
242
- style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.497636;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
243
- id="rect4433"
244
- width="334.28003"
245
- height="19.72998"
246
- x="1159.0947"
247
- y="-141.15588"
248
- inkscape:export-filename="screenshot-sponsors-default-layout.png"
249
- inkscape:export-xdpi="96"
250
- inkscape:export-ydpi="96" />
251
- <g
252
- id="g1012"
253
- transform="matrix(0.24685874,0,0,0.24685874,1062.9732,-110.40602)"
254
- style="fill:#f6edf4;stroke-width:3.80952">
255
- <g
256
- aria-label="CentOS"
257
- id="text57015"
258
- style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:2.85397"
259
- transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)">
260
- <path
261
- d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
262
- id="path2097"
263
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
264
- <path
265
- d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
266
- id="path2099"
267
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
268
- <path
269
- d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
270
- id="path2101"
271
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
272
- <path
273
- d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
274
- id="path2103"
275
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
276
- <path
277
- d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
278
- id="path2105"
279
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
280
- <path
281
- d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
282
- id="path2107"
283
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
284
- </g>
285
- <g
286
- id="g28251-9"
287
- transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
288
- inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
289
- inkscape:export-xdpi="10.11"
290
- inkscape:export-ydpi="10.11"
291
- style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
292
- <path
293
- id="ellipse15079-1-3"
294
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
295
- 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" />
296
- </g>
297
- </g>
298
- <rect
299
- style="fill:#ecdce8;fill-opacity:1;stroke:#d9b9d1;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
300
- id="rect119"
301
- width="16.372637"
302
- height="10.339692"
303
- x="1452.1016"
304
- y="-136.46074"
305
- rx="1.2440896"
306
- ry="1.2440896" />
307
- <g
308
- id="g121"
309
- transform="matrix(0.94041424,0,0,0.94041424,475.53132,5.0191882)"
310
- style="stroke:#9a9996;stroke-opacity:1">
311
- <path
312
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
313
- d="m 1040.8931,-147.50672 h 12.5172"
314
- id="path119" />
315
- <path
316
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
317
- d="m 1040.8931,-144.94685 h 12.5172"
318
- id="path120" />
319
- <path
320
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
321
- d="m 1040.8931,-142.38698 h 12.5172"
322
- id="path121" />
323
- </g>
324
- <path
325
- style="fill:none;stroke:#d9b9d1;stroke-width:0.248818px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
326
- d="m 1227.4685,-139.55744 v 12.69302"
327
- id="path8" />
328
- <g
329
- id="g1"
330
- transform="matrix(1.4277799,0,0,1.4277799,99.63989,136.37013)"
331
- style="fill:#d9b9d1">
332
- <g
333
- id="use1-3-3"
334
- style="fill:#d9b9d1;fill-opacity:1;stroke:#f6f5f4;stroke-opacity:1"
335
- transform="matrix(0.00800799,0,0,0.00800799,793.73956,-190.8614)">
336
- <title
337
- id="title7">align-left</title>
338
- <path
339
- d="m 288,44 v 40 c 0,8.837 -7.163,16 -16,16 H 16 C 7.163,100 0,92.837 0,84 V 44 C 0,35.163 7.163,28 16,28 h 256 c 8.837,0 16,7.163 16,16 z M 0,172 v 40 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 z m 16,312 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 z M 272,284 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 h 256 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 z"
340
- id="path13" />
341
- </g>
342
- </g>
343
- <g
344
- id="g13"
345
- transform="matrix(0.94041424,0,0,0.94041424,487.73501,33.070036)">
346
- <rect
347
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.240121;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
348
- id="rect3425"
349
- width="305.13757"
350
- height="20.980095"
351
- x="739.05914"
352
- y="-29.768446"
353
- rx="1.4067383"
354
- ry="1.4067383" />
355
- <path
356
- d="m 756.48292,-23.545422 c 0,-0.245766 -0.14862,-0.468658 -0.37722,-0.563919 -0.22863,-0.09527 -0.48963,-0.04189 -0.66489,0.131557 l -0.83065,0.832546 c -0.91446,0.914457 -2.1547,1.428866 -3.44829,1.428866 h -0.16575 -0.60964 -1.82893 c -0.67252,0 -1.21928,0.546766 -1.21928,1.219278 v 1.828931 c 0,0.672496 0.54676,1.219278 1.21928,1.219278 v 2.43857 c 0,0.337222 0.27243,0.60964 0.60965,0.60964 h 1.21928 c 0.33722,0 0.60964,-0.272418 0.60964,-0.60964 v -2.43857 h 0.16575 c 1.29359,0 2.53383,0.514379 3.44829,1.428852 l 0.83065,0.830643 c 0.17526,0.17527 0.43626,0.226727 0.66489,0.131556 0.22861,-0.09542 0.37722,-0.316265 0.37722,-0.563919 v -2.810083 c 0.35435,-0.167644 0.60965,-0.619165 0.60965,-1.150697 0,-0.531532 -0.2553,-0.983053 -0.60965,-1.150697 z m -1.21928,1.461241 v 2.501427 2.501458 c -1.12024,-1.019261 -2.58148,-1.586985 -4.10177,-1.586985 h -0.16575 v -1.828931 h 0.16575 c 1.52029,0 2.98153,-0.56774 4.10177,-1.586969 z"
357
- id="path3462"
358
- style="fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.390216" />
359
- <g
360
- id="g39"
361
- transform="matrix(0.60142389,0,0,0.60142392,402.68323,53.580101)"
362
- style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.13921;stroke-opacity:1">
363
- <path
364
- style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
365
- d="m 1044.5533,-124.15749 6.0283,6.02831"
366
- id="path38" />
367
- <path
368
- style="fill:none;fill-opacity:1;stroke:#c795ba;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
369
- d="m 1050.5816,-124.15749 -6.0283,6.02831"
370
- id="path39" />
371
- </g>
372
- </g>
373
- <g
374
- id="g37"
375
- transform="translate(369.61283,-134.06562)"
376
- style="fill:#a14f8c">
377
- <rect
378
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.205124;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
379
- id="rect1565-1-7"
380
- width="286.95572"
381
- height="19.72998"
382
- x="813.31335"
383
- y="627.60034" />
384
- <g
385
- id="use49"
386
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.92095"
387
- transform="matrix(0.02204861,0,0,0.02204861,951.14677,631.82089)">
388
- <title
389
- id="title16">Image</title>
390
- <path
391
- d="M 464,64 H 48 C 21.49,64 0,85.49 0,112 v 288 c 0,26.51 21.49,48 48,48 h 416 c 26.51,0 48,-21.49 48,-48 V 112 C 512,85.49 490.51,64 464,64 Z m -6,336 H 54 a 6,6 0 0 1 -6,-6 V 118 a 6,6 0 0 1 6,-6 h 404 a 6,6 0 0 1 6,6 v 276 a 6,6 0 0 1 -6,6 z M 128,152 c -22.091,0 -40,17.909 -40,40 0,22.091 17.909,40 40,40 22.091,0 40,-17.909 40,-40 0,-22.091 -17.909,-40 -40,-40 z M 96,352 h 320 v -80 l -87.515,-87.515 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 192,304 152.485,264.485 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 96,304 Z"
392
- id="path16"
393
- style="fill:#ffffff" />
394
- </g>
395
- </g>
396
- <g
397
- id="g38"
398
- transform="translate(369.44342,-144.89279)">
399
- <rect
400
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
401
- id="rect1166"
402
- width="286.95578"
403
- height="19.72998"
404
- x="813.31335"
405
- y="667.367" />
406
- <g
407
- id="g57-0"
408
- transform="matrix(0.01856725,0,0,0.01856725,952.63218,675.33275)"
409
- style="fill:#381a32;fill-opacity:1">
410
- <title
411
- id="title57-8">align-left</title>
412
- <path
413
- d="m 288,-109.71003 v 39.999996 c 0,8.837 -7.163,16 -16,16 H 16 c -8.837,0 -16,-7.163 -16,-16 v -39.999996 c 0,-8.837 7.163,-16 16,-16 h 256 c 8.837,0 16,7.163 16,16 z M 0,18.289966 v 40.000001 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 V 18.289966 C 448,9.4529652 440.837,2.2899652 432,2.2899652 H 16 c -8.837,0 -16,7.163 -16,16.0000008 z M 16,330.28997 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 z m 256,-200 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 h 256 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 z"
414
- id="path57-1"
415
- style="fill:#ecdce8;fill-opacity:1" />
416
- </g>
417
- <path
418
- sodipodi:type="star"
419
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
420
- id="path37"
421
- inkscape:flatsided="false"
422
- sodipodi:sides="3"
423
- sodipodi:cx="-499.8125"
424
- sodipodi:cy="737.32031"
425
- sodipodi:r1="36.465179"
426
- sodipodi:r2="18.23259"
427
- sodipodi:arg1="1.5707963"
428
- sodipodi:arg2="2.6179939"
429
- inkscape:rounded="0"
430
- inkscape:randomized="0"
431
- d="m -499.8125,773.78549 -15.78989,-27.34888 -15.78988,-27.34889 31.57977,0 31.57977,0 -15.78988,27.34889 z"
432
- transform="matrix(0.10519844,0,0,0.10519844,1139.2521,598.70803)"
433
- inkscape:transform-center-y="1.0197809"
434
- inkscape:transform-center-x="-6.518711e-05" />
435
- </g>
436
- <g
437
- id="g58"
438
- transform="matrix(0.94041424,0,0,0.94041424,458.37216,613.03475)">
439
- <rect
440
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.305937;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
441
- id="rect57"
442
- width="305.13763"
443
- height="20.980095"
444
- x="770.28247"
445
- y="-65.525414" />
446
- <g
447
- id="g57"
448
- transform="matrix(0.0197437,0,0,0.0197437,918.4287,-57.055009)"
449
- style="fill:#ffffff">
450
- <title
451
- id="title57">align-left</title>
452
- <path
453
- d="m 288,-109.70695 v 40.000002 c 0,8.837 -7.163,16 -16,16 H 16 c -8.837,0 -16,-7.163 -16,-16 v -40.000002 c 0,-8.837 7.163,-16 16,-16 h 256 c 8.837,0 16,7.163 16,16 z M 0,18.293052 v 40 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 v -40 C 448,9.4560521 440.837,2.2930521 432,2.2930521 H 16 c -8.837,0 -16,7.163 -16,15.9999999 z M 16,330.29305 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 z m 256,-200 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 h 256 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 z"
454
- id="path57"
455
- style="fill:#ecdce8" />
456
- </g>
457
- </g>
458
- <g
459
- id="use108"
460
- transform="matrix(1.4488325,0,0,1.4488325,-1571.3439,-475.27474)">
461
- <rect
462
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.496626;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:0.0397303, 0.0397303;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
463
- id="rect5"
464
- width="198.05997"
465
- height="263.7258"
466
- x="1900.9103"
467
- y="351.51724"
468
- inkscape:export-filename="page-with-bits-collapsed.webp"
469
- inkscape:export-xdpi="96"
470
- inkscape:export-ydpi="96" />
471
- <g
472
- id="g55"
473
- transform="translate(0.24830881,-0.15490532)">
474
- <g
475
- id="g30"
476
- transform="matrix(0.56967611,0,0,0.56967611,1211.4474,351.50659)">
477
- <rect
478
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
479
- id="rect28"
480
- width="30.677139"
481
- height="13.229167"
482
- x="1335.1501"
483
- y="339.93384"
484
- rx="4.6444521"
485
- ry="4.6444521" />
486
- <rect
487
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
488
- id="rect29"
489
- width="30.677139"
490
- height="13.229167"
491
- x="1369.1049"
492
- y="339.93384"
493
- rx="4.6444521"
494
- ry="4.6444521" />
495
- <rect
496
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
497
- id="rect30"
498
- width="30.677139"
499
- height="13.229167"
500
- x="1402.3872"
501
- y="339.93384"
502
- rx="4.6444521"
503
- ry="4.6444521" />
504
- </g>
505
- <rect
506
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.199147;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
507
- id="rect31"
508
- width="11.119654"
509
- height="7.5955625"
510
- x="2069.249"
511
- y="556.12061"
512
- rx="2.6458335"
513
- ry="2.6458335" />
514
- <rect
515
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.389921;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
516
- id="rect32"
517
- width="52.044323"
518
- height="41.353016"
519
- x="1920.3297"
520
- y="567.14166"
521
- rx="2.6458335"
522
- ry="2.6458335" />
523
- <rect
524
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.845474;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
525
- id="rect33"
526
- width="52.044323"
527
- height="41.353024"
528
- x="1974.3271"
529
- y="567.14166"
530
- rx="2.6458335"
531
- ry="2.6458335" />
532
- <rect
533
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.845474;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
534
- id="rect34"
535
- width="52.044323"
536
- height="41.353024"
537
- x="2028.3246"
538
- y="567.14166"
539
- rx="2.6458335"
540
- ry="2.6458335" />
541
- <g
542
- id="g49"
543
- transform="matrix(0.56967611,0,0,0.56967611,893.13767,247.87097)">
544
- <rect
545
- style="opacity:1;fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.39601;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
546
- id="rect35"
547
- width="282.36627"
548
- height="211.7747"
549
- x="1801.6797"
550
- y="304.01431"
551
- inkscape:export-filename="screenshot-example-1600x1200.webp"
552
- inkscape:export-xdpi="152.91"
553
- inkscape:export-ydpi="152.91"
554
- ry="4.6444521"
555
- rx="4.6444521" />
556
- <rect
557
- style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.965889;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
558
- id="rect37"
559
- width="267.67557"
560
- height="200.75668"
561
- x="1809.025"
562
- y="309.52332"
563
- inkscape:export-filename="screenshot-example-1600x1200.webp"
564
- inkscape:export-xdpi="96"
565
- inkscape:export-ydpi="96" />
566
- <g
567
- id="g44"
568
- style="stroke:#5c2e4f;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
569
- transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)" />
570
- <g
571
- id="g45"
572
- style="stroke-width:2.64583;stroke-dasharray:none"
573
- transform="matrix(0.61034383,0,0,0.61034383,235.78356,159.35745)">
574
- <path
575
- style="fill:none;stroke:#ecdce8;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
576
- d="M 3000.8804,258.70397 2592.9478,562.28974"
577
- id="path45" />
578
- </g>
579
- <g
580
- id="g60"
581
- style="stroke-width:2.64583;stroke-dasharray:none"
582
- transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)">
583
- <path
584
- style="fill:none;stroke:#ecdce8;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
585
- d="M 3000.8804,258.70397 2592.9478,562.28974"
586
- id="path55" />
587
- </g>
588
- <rect
589
- style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.485467;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
590
- id="rect46"
591
- width="267.67557"
592
- height="50.714802"
593
- x="1809.025"
594
- y="384.54428" />
595
- <g
596
- id="g47"
597
- transform="matrix(0.63230446,0,0,0.63230446,459.16835,41.417553)"
598
- style="fill:#5c2e4f;fill-opacity:1">
599
- <g
600
- id="g46"
601
- transform="translate(-168.48926,4.0104842)"
602
- style="fill:#5c2e4f;fill-opacity:1" />
603
- </g>
604
- </g>
605
- <circle
606
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.509469;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.03788, 2.03788;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
607
- id="circle49"
608
- cx="1999.9403"
609
- cy="390.04993"
610
- r="5.7276187" />
611
- <rect
612
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
613
- id="rect49"
614
- width="160.85735"
615
- height="7.5363345"
616
- x="1919.5116"
617
- y="399.15521"
618
- ry="2.6458335"
619
- rx="2.6458335" />
620
- <rect
621
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.251914;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
622
- id="rect50"
623
- width="160.85732"
624
- height="7.5363407"
625
- x="1919.5116"
626
- y="410.06921"
627
- ry="2.6458335"
628
- rx="2.6458335" />
629
- <rect
630
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
631
- id="rect51"
632
- width="146.0211"
633
- height="7.5363159"
634
- x="1919.5116"
635
- y="556.15027"
636
- ry="2.6458335"
637
- rx="2.6458335" />
638
- <circle
639
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.509469;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.03788, 2.03788;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
640
- id="circle51"
641
- cx="1999.9403"
642
- cy="375.21701"
643
- r="5.7276187" />
644
- <rect
645
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
646
- id="rect52"
647
- width="160.85735"
648
- height="7.5363345"
649
- x="1919.5116"
650
- y="358.57538"
651
- ry="2.6458335"
652
- rx="2.6458335" />
653
- </g>
654
- </g>
655
- <rect
656
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.511739;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
657
- id="rect36"
658
- width="334.27991"
659
- height="19.72998"
660
- x="1159.0947"
661
- y="-23.864132"
662
- inkscape:export-filename="screenshot-sponsors-default-layout.png"
663
- inkscape:export-xdpi="96"
664
- inkscape:export-ydpi="96" />
665
- <g
666
- id="g41"
667
- transform="matrix(0.94040116,0,0,0.94040116,490.21147,151.12851)">
668
- <rect
669
- style="fill:#d9b9d1;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
670
- id="rect40"
671
- width="13.576674"
672
- height="9.7555847"
673
- x="1026.684"
674
- y="-180.47063"
675
- ry="1.5810586"
676
- rx="1.5810586" />
677
- <g
678
- id="use1-5"
679
- style="fill:#f6edf4;fill-opacity:1;stroke:none"
680
- transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)">
681
- <title
682
- id="title14">arrow-right</title>
683
- <path
684
- d="m 190.5,66.9 22.2,-22.2 c 9.4,-9.4 24.6,-9.4 33.9,0 L 441,239 c 9.4,9.4 9.4,24.6 0,33.9 L 246.6,467.3 c -9.4,9.4 -24.6,9.4 -33.9,0 l -22.2,-22.2 c -9.5,-9.5 -9.3,-25 0.4,-34.3 L 311.4,296 H 24 C 10.7,296 0,285.3 0,272 V 240 C 0,226.7 10.7,216 24,216 H 311.4 L 190.9,101.2 c -9.8,-9.3 -10,-24.8 -0.4,-34.3 z"
685
- id="path14" />
686
- </g>
687
- </g>
688
- <path
689
- d="m 1192.595,-18.011957 c 0,-0.231122 -0.1402,-0.440727 -0.3547,-0.530307 -0.215,-0.08952 -0.4604,-0.03939 -0.6253,0.123739 l -0.7811,0.782948 c -0.8601,0.859964 -2.0264,1.343728 -3.2428,1.343728 h -0.156 -0.5734 -1.72 c -0.6325,0 -1.1466,0.514187 -1.1466,1.146629 v 1.719958 c 0,0.632427 0.5141,1.146614 1.1466,1.146614 v 2.2932737 c 0,0.3171347 0.2563,0.5733141 0.5734,0.5733141 h 1.1466 c 0.3171,0 0.5734,-0.2561794 0.5734,-0.5733141 v -2.2932737 h 0.156 c 1.2164,0 2.3827,0.483734 3.2428,1.343728 l 0.7811,0.781148 c 0.1649,0.1648294 0.4103,0.2132185 0.6253,0.123739 0.2149,-0.08968 0.3547,-0.297415 0.3547,-0.530306 v -2.642649 c 0.3332,-0.157661 0.5734,-0.58228 0.5734,-1.082134 0,-0.499867 -0.2402,-0.924488 -0.5734,-1.082135 z m -1.1466,1.374183 v 2.352384 2.352399 c -1.0534,-0.958528 -2.4276,-1.492419 -3.8574,-1.492419 h -0.1561 v -1.719959 h 0.1561 c 1.4298,0 2.804,-0.533907 3.8574,-1.492405 z"
690
- id="path32"
691
- style="fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.366966" />
692
- <g
693
- id="g101"
694
- transform="translate(359.32283,2.5263128)">
695
- <path
696
- id="path31-3"
697
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0759096;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
698
- d="m 1134.052,-123.95228 v 97.561836 H 799.77184 v -97.561836 z"
699
- sodipodi:nodetypes="ccccc" />
700
- <path
701
- id="rect38"
702
- style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.461067;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
703
- d="m 826.07972,-43.474524 h 281.66398 c 1.4658,0 2.6459,1.180041 2.6459,2.645833 v 14.438247 H 823.43388 v -14.438247 c 0,-1.465792 1.18004,-2.645833 2.64584,-2.645833 z"
704
- sodipodi:nodetypes="sssccss" />
705
- <circle
706
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.08635;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:4.34539, 4.34539;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
707
- id="circle125-7-5"
708
- cx="966.91193"
709
- cy="-103.76298"
710
- r="12.213036" />
711
- <rect
712
- style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
713
- id="rect274-9"
714
- width="149.16376"
715
- height="4.8648129"
716
- x="892.33008"
717
- y="-83.623833"
718
- ry="1.7079141"
719
- rx="1.7079141" />
720
- <rect
721
- style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
722
- id="rect125-0-5-1"
723
- width="24.557205"
724
- height="7.9111004"
725
- x="927.99078"
726
- y="-38.253174"
727
- rx="3.4158282"
728
- ry="3.4158282" />
729
- <rect
730
- style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
731
- id="rect232-2"
732
- width="24.557205"
733
- height="7.9111004"
734
- x="954.63312"
735
- y="-38.253174"
736
- rx="3.4158282"
737
- ry="3.4158282" />
738
- <rect
739
- style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
740
- id="rect233-7"
741
- width="24.557205"
742
- height="7.9111004"
743
- x="981.27582"
744
- y="-38.253174"
745
- rx="3.4158282"
746
- ry="3.4158282" />
747
- <rect
748
- style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
749
- id="rect246-6-0"
750
- width="149.16376"
751
- height="4.8648129"
752
- x="892.33008"
753
- y="-72.250313"
754
- ry="1.7079141"
755
- rx="1.7079141" />
756
- <rect
757
- style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.375997;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
758
- id="rect125-0-6"
759
- width="30.57077"
760
- height="9.8483696"
761
- x="951.62653"
762
- y="-59.010605"
763
- rx="4.252296"
764
- ry="4.252296" />
765
- </g>
766
- <g
767
- id="g91"
768
- transform="translate(359.32283,27.635416)">
769
- <rect
770
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.510705;stroke-opacity:1"
771
- id="rect88"
772
- width="286.95578"
773
- height="19.72998"
774
- x="823.84314"
775
- y="397.68347" />
776
- <path
777
- d="m 836.8729,402.96138 c -0.33831,0 -0.61162,0.27331 -0.61162,0.61161 v 0.6116 h -0.61161 c -0.67468,0 -1.22321,0.54855 -1.22321,1.22323 v 0.91742 h 8.56254 v -0.91742 c 0,-0.67468 -0.54853,-1.22323 -1.22321,-1.22323 h -0.61161 v -0.6116 c 0,-0.3383 -0.27331,-0.61161 -0.61162,-0.61161 -0.33829,0 -0.6116,0.27331 -0.6116,0.61161 v 0.6116 h -2.44645 v -0.6116 c 0,-0.3383 -0.27332,-0.61161 -0.61161,-0.61161 z m -2.44644,4.28127 v 3.66968 c 0,0.67467 0.54853,1.22321 1.22321,1.22321 h 6.11612 c 0.67468,0 1.22321,-0.54854 1.22321,-1.22321 v -3.66968 z"
778
- id="path1-3"
779
- style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0191128" />
780
- <g
781
- id="g41-7"
782
- transform="matrix(0.94041424,0,0,0.94041424,123.99588,572.67846)"
783
- style="fill:#ecdce8;fill-opacity:1">
784
- <rect
785
- style="fill:#ecdce8;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
786
- id="rect40-5"
787
- width="13.576674"
788
- height="9.7555847"
789
- x="1026.684"
790
- y="-180.47063"
791
- ry="1.5810586"
792
- rx="1.5810586" />
793
- <g
794
- id="use1-5-3"
795
- style="fill:#f6edf4;fill-opacity:1;stroke:none"
796
- transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)">
797
- <title
798
- id="title15">arrow-right</title>
799
- <path
800
- d="m 190.5,66.9 22.2,-22.2 c 9.4,-9.4 24.6,-9.4 33.9,0 L 441,239 c 9.4,9.4 9.4,24.6 0,33.9 L 246.6,467.3 c -9.4,9.4 -24.6,9.4 -33.9,0 l -22.2,-22.2 c -9.5,-9.5 -9.3,-25 0.4,-34.3 L 311.4,296 H 24 C 10.7,296 0,285.3 0,272 V 240 C 0,226.7 10.7,216 24,216 H 311.4 L 190.9,101.2 c -9.8,-9.3 -10,-24.8 -0.4,-34.3 z"
801
- id="path15"
802
- style="fill:#f6edf4;fill-opacity:1" />
803
- </g>
804
- </g>
805
- </g>
806
- <g
807
- id="g3"
808
- transform="matrix(0.95856018,0,0,0.95856018,389.15663,55.390171)"
809
- style="fill:#f6edf4;fill-opacity:1">
810
- <text
811
- xml:space="preserve"
812
- style="font-size:18.629px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.776208;stroke-linejoin:round"
813
- x="827.53546"
814
- y="447.32944"
815
- id="text2"><tspan
816
- sodipodi:role="line"
817
- id="tspan2"
818
- style="font-weight:bold;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.776208"
819
- x="827.53546"
820
- y="447.32944">Hello world!</tspan></text>
821
- </g>
822
- <g
823
- id="g90"
824
- transform="translate(359.32283,24.649804)">
825
- <rect
826
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
827
- id="rect1776"
828
- width="31.33754"
829
- height="7.4645381"
830
- x="823.60339"
831
- y="429.60858"
832
- rx="5.291667"
833
- ry="5.291667" />
834
- <rect
835
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
836
- id="rect8"
837
- width="31.33754"
838
- height="7.4645381"
839
- x="860.74408"
840
- y="429.60858"
841
- rx="5.291667"
842
- ry="5.291667" />
843
- <rect
844
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
845
- id="rect9"
846
- width="31.33754"
847
- height="7.4645381"
848
- x="897.88477"
849
- y="429.60858"
850
- rx="5.291667"
851
- ry="5.291667" />
852
- <path
853
- style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
854
- d="m 856.99792,431.80286 1.59957,1.53969 -1.47978,1.53967"
855
- id="path9"
856
- sodipodi:nodetypes="ccc" />
857
- <path
858
- style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
859
- d="m 894.13863,431.80286 1.59957,1.53969 -1.47978,1.53967"
860
- id="path10"
861
- sodipodi:nodetypes="ccc" />
862
- </g>
863
- <rect
864
- style="fill:#f6edf4;fill-opacity:1;stroke-width:0.528373;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
865
- id="rect2416-5"
866
- width="334.27991"
867
- height="104.78572"
868
- x="1159.0948"
869
- y="580.35321"
870
- inkscape:export-filename="screenshot-sponsors-default-layout.png"
871
- inkscape:export-xdpi="96"
872
- inkscape:export-ydpi="96" />
873
- <rect
874
- style="fill:#ecdce8;fill-opacity:1;stroke:#f6edf4;stroke-width:0.840647;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
875
- id="rect11-6"
876
- width="90.412331"
877
- height="36.005371"
878
- x="1184.0186"
879
- y="625.29138"
880
- rx="5.291667" />
881
- <rect
882
- style="fill:#ecdce8;fill-opacity:1;stroke:#f6edf4;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
883
- id="rect18-2"
884
- width="46.345093"
885
- height="32.912136"
886
- x="1422.9706"
887
- y="628.93732"
888
- rx="5.291667" />
889
- <rect
890
- style="fill:#ecdce8;fill-opacity:1;stroke:#f6edf4;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
891
- id="rect17-9"
892
- width="46.345093"
893
- height="32.912136"
894
- x="1423.1577"
895
- y="591.36639"
896
- rx="5.291667" />
897
- <rect
898
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
899
- id="rect59-2-8"
900
- width="69.32869"
901
- height="2.3428345"
902
- x="1183.5981"
903
- y="675.42957"
904
- rx="1.3229167"
905
- ry="1.3229167" />
906
- <rect
907
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
908
- id="rect70-9"
909
- width="8.7390862"
910
- height="2.3428345"
911
- x="1256.3269"
912
- y="675.42957"
913
- rx="1.3229167"
914
- ry="1.3229167" />
915
- <rect
916
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
917
- id="rect71-7"
918
- width="9.8448849"
919
- height="2.3428345"
920
- x="1268.4661"
921
- y="675.42957"
922
- rx="1.3229167"
923
- ry="1.3229167" />
924
- <rect
925
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
926
- id="rect72-3"
927
- width="9.8448849"
928
- height="2.3428345"
929
- x="1281.7111"
930
- y="675.42957"
931
- rx="1.3229167"
932
- ry="1.3229167" />
933
- <rect
934
- style="fill:#ecdce8;fill-opacity:1;stroke:#f6edf4;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
935
- id="rect4-1"
936
- width="118.31165"
937
- height="70.482971"
938
- x="1289.6503"
939
- y="591.36652"
940
- rx="5.291667" />
941
- <g
942
- aria-label="CentOS"
943
- id="g8"
944
- style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#ecdce8;fill-opacity:1;stroke-width:2.85397"
945
- transform="matrix(0.24083779,0,0,0.24083779,989.53905,510.99728)">
946
- <path
947
- d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
948
- id="path3-56"
949
- style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
950
- <path
951
- d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
952
- id="path4"
953
- style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
954
- <path
955
- d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
956
- id="path5"
957
- style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
958
- <path
959
- d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
960
- id="path6"
961
- style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
962
- <path
963
- d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
964
- id="path6-5"
965
- style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
966
- <path
967
- d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
968
- id="path8-4"
969
- style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
970
- </g>
971
- <g
972
- id="g9"
973
- transform="matrix(0.18378912,0.18378912,-0.18378912,0.18378912,1064.0603,577.76325)"
974
- inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
975
- inkscape:export-xdpi="10.11"
976
- inkscape:export-ydpi="10.11"
977
- style="fill:#ecdce8;fill-opacity:1;stroke-width:3.80952">
978
- <path
979
- id="path9-7"
980
- style="fill:#ecdce8;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"
981
- 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" />
982
- </g>
983
- <circle
984
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.421373;stroke-linejoin:round"
985
- id="path1-2"
986
- cx="222.07687"
987
- cy="159.52768"
988
- r="5.4905419"
989
- clip-path="url(#clipPath2-5)"
990
- transform="matrix(1.223727,0,0,1.223727,1206.8785,475.02581)" />
991
- <path
992
- style="fill:#ecdce8;stroke:#f6edf4;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
993
- d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
994
- id="path410-0"
995
- sodipodi:nodetypes="ccc"
996
- clip-path="url(#clipPath1)"
997
- transform="matrix(0,-1.3482231,1.3482231,0,1215.7341,797.07164)" />
998
- <rect
999
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.483678;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
1000
- id="rect6"
1001
- width="91.391617"
1002
- height="2.1766357"
1003
- x="1183.5983"
1004
- y="603.53699"
1005
- rx="0.96735704"
1006
- ry="0.96735704" />
1007
- </g>
1008
- </g>
1009
- </svg>