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,584 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- width="640"
6
- height="396.73569"
7
- viewBox="0 0 169.33334 104.96965"
8
- version="1.1"
9
- id="svg1"
10
- inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
- sodipodi:docname="page-with-title.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="230.51681"
28
- inkscape:cy="165.81654"
29
- inkscape:window-width="3440"
30
- inkscape:window-height="1371"
31
- inkscape:window-x="0"
32
- inkscape:window-y="0"
33
- inkscape:window-maximized="1"
34
- inkscape:current-layer="g7"
35
- showgrid="false" />
36
- <defs
37
- id="defs1">
38
- <clipPath
39
- clipPathUnits="userSpaceOnUse"
40
- id="clipPath973">
41
- <path
42
- id="path973"
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 3340.1295,1094.7735 c -1.7111,0 -3.0885,1.3775 -3.0885,3.0885 v 99.4751 c 5.6224,-3.4823 11.8861,-6.4392 16.9463,-6.4392 12.3063,0 19.427,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4273,-17.4897 31.7336,-17.4897 12.3063,0 19.2781,17.7148 31.7331,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0216,-14.8198 v -95.7058 c 0,-1.711 -1.3777,-3.0885 -3.0885,-3.0885 z"
45
- sodipodi:nodetypes="sscsssssscsss" />
46
- </clipPath>
47
- <clipPath
48
- clipPathUnits="userSpaceOnUse"
49
- id="clipPath351">
50
- <path
51
- id="path352"
52
- 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"
53
- 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" />
54
- </clipPath>
55
- <clipPath
56
- clipPathUnits="userSpaceOnUse"
57
- id="clipPath423-2-16">
58
- <path
59
- id="path424-5-5"
60
- 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"
61
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
62
- </clipPath>
63
- <clipPath
64
- clipPathUnits="userSpaceOnUse"
65
- id="clipPath422-7-7">
66
- <path
67
- id="path423-4-8"
68
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:5.35901;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
69
- d="m 384.68765,-240.41958 c -11.87529,0 -21.43587,9.56058 -21.43587,21.43605 v 781.3093 c 39.02239,-24.16927 82.49718,-44.69119 117.61769,-44.69119 85.41146,0 134.83363,121.38771 220.24638,121.38771 85.41219,0 134.83234,-121.38771 220.24454,-121.38771 85.41221,0 134.83291,121.38771 220.24431,121.38771 85.4128,0 134.835,-121.38771 220.2472,-121.38771 85.4122,0 133.8008,122.9499 220.2443,121.38771 59.8565,-1.08179 142.4196,-64.15922 187.5442,-102.85731 v -755.14851 c 0,-11.87547 -9.5606,-21.43605 -21.4359,-21.43605 z" />
70
- </clipPath>
71
- <clipPath
72
- clipPathUnits="userSpaceOnUse"
73
- id="clipPath421-9-5">
74
- <path
75
- id="path422-9-9"
76
- 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"
77
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
78
- </clipPath>
79
- <clipPath
80
- clipPathUnits="userSpaceOnUse"
81
- id="clipPath420-4-2">
82
- <path
83
- id="path421-5-7"
84
- 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"
85
- d="m 725.64338,-185.84881 c -3.11727,0 -5.62692,2.50965 -5.62692,5.62696 V 24.871838 c 10.24338,-6.344434 21.65551,-11.731437 30.87465,-11.731437 22.4205,0 35.39382,31.864274 57.81467,31.864274 22.4207,0 35.39349,-31.864274 57.81419,-31.864274 22.4207,0 35.39363,31.864274 57.81414,31.864274 22.42085,0 35.39417,-31.864274 57.81487,-31.864274 22.42072,0 35.12272,32.274346 57.81412,31.864274 15.7123,-0.283971 37.3852,-16.841797 49.2304,-27.000044 V -180.22185 c 0,-3.11731 -2.5097,-5.62696 -5.627,-5.62696 z" />
86
- </clipPath>
87
- <clipPath
88
- clipPathUnits="userSpaceOnUse"
89
- id="clipPath419-9-36">
90
- <path
91
- id="path420-3-4"
92
- 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"
93
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
94
- </clipPath>
95
- <clipPath
96
- clipPathUnits="userSpaceOnUse"
97
- id="clipPath418-5-7">
98
- <path
99
- id="path419-7-97"
100
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.926557;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
101
- d="m 741.21845,-215.75165 c -2.05321,0 -3.7062,1.653 -3.7062,3.70623 v 135.085963 c 6.74685,-4.178792 14.26351,-7.726969 20.33574,-7.726969 14.76737,0 23.31231,20.987561 38.07991,20.987561 14.76751,0 23.3121,-20.987561 38.0796,-20.987561 14.76751,0 23.3122,20.987561 38.07957,20.987561 14.7676,0 23.31254,-20.987561 38.08005,-20.987561 14.7675,0 23.13376,21.257657 38.07957,20.987561 10.349,-0.187039 24.6239,-11.092932 32.4258,-17.783712 V -212.04542 c 0,-2.05323 -1.65299,-3.70623 -3.70619,-3.70623 z" />
102
- </clipPath>
103
- <clipPath
104
- clipPathUnits="userSpaceOnUse"
105
- id="clipPath431-7-7-1">
106
- <path
107
- id="path432-9-8-9"
108
- 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"
109
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
110
- </clipPath>
111
- <clipPath
112
- clipPathUnits="userSpaceOnUse"
113
- id="clipPath430-3-8-6">
114
- <path
115
- id="path431-9-6-4"
116
- 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"
117
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
118
- </clipPath>
119
- <clipPath
120
- clipPathUnits="userSpaceOnUse"
121
- id="clipPath429-2-0-8">
122
- <path
123
- id="path430-8-4-0"
124
- 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"
125
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
126
- </clipPath>
127
- <clipPath
128
- clipPathUnits="userSpaceOnUse"
129
- id="clipPath428-3-6-8">
130
- <path
131
- id="path429-0-7-1"
132
- 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"
133
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
134
- </clipPath>
135
- <clipPath
136
- clipPathUnits="userSpaceOnUse"
137
- id="clipPath424-4-6-0">
138
- <path
139
- id="path425-9-0-2"
140
- 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"
141
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
142
- </clipPath>
143
- <clipPath
144
- clipPathUnits="userSpaceOnUse"
145
- id="clipPath423-2-9-2">
146
- <path
147
- id="path424-5-7-9"
148
- 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"
149
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
150
- </clipPath>
151
- <clipPath
152
- clipPathUnits="userSpaceOnUse"
153
- id="clipPath422-7-5-7">
154
- <path
155
- id="path423-4-9-5"
156
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:5.35901;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
157
- d="m 384.68765,-240.41958 c -11.87529,0 -21.43587,9.56058 -21.43587,21.43605 v 781.3093 c 39.02239,-24.16927 82.49718,-44.69119 117.61769,-44.69119 85.41146,0 134.83363,121.38771 220.24638,121.38771 85.41219,0 134.83234,-121.38771 220.24454,-121.38771 85.41221,0 134.83291,121.38771 220.24431,121.38771 85.4128,0 134.835,-121.38771 220.2472,-121.38771 85.4122,0 133.8008,122.9499 220.2443,121.38771 59.8565,-1.08179 142.4196,-64.15922 187.5442,-102.85731 v -755.14851 c 0,-11.87547 -9.5606,-21.43605 -21.4359,-21.43605 z" />
158
- </clipPath>
159
- <clipPath
160
- clipPathUnits="userSpaceOnUse"
161
- id="clipPath421-9-7-6">
162
- <path
163
- id="path422-9-8-4"
164
- 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"
165
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
166
- </clipPath>
167
- <clipPath
168
- clipPathUnits="userSpaceOnUse"
169
- id="clipPath420-4-5-6">
170
- <path
171
- id="path421-5-3-3"
172
- 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"
173
- d="m 725.64338,-185.84881 c -3.11727,0 -5.62692,2.50965 -5.62692,5.62696 V 24.871838 c 10.24338,-6.344434 21.65551,-11.731437 30.87465,-11.731437 22.4205,0 35.39382,31.864274 57.81467,31.864274 22.4207,0 35.39349,-31.864274 57.81419,-31.864274 22.4207,0 35.39363,31.864274 57.81414,31.864274 22.42085,0 35.39417,-31.864274 57.81487,-31.864274 22.42072,0 35.12272,32.274346 57.81412,31.864274 15.7123,-0.283971 37.3852,-16.841797 49.2304,-27.000044 V -180.22185 c 0,-3.11731 -2.5097,-5.62696 -5.627,-5.62696 z" />
174
- </clipPath>
175
- <clipPath
176
- clipPathUnits="userSpaceOnUse"
177
- id="clipPath419-9-3-7">
178
- <path
179
- id="path420-3-8-9"
180
- 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"
181
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
182
- </clipPath>
183
- <clipPath
184
- clipPathUnits="userSpaceOnUse"
185
- id="clipPath417-0-9-9">
186
- <path
187
- id="path418-8-3-1"
188
- 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"
189
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
190
- </clipPath>
191
- <clipPath
192
- clipPathUnits="userSpaceOnUse"
193
- id="clipPath416-1-7-7">
194
- <path
195
- id="path417-9-8-0"
196
- 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"
197
- d="m 712.48625,-301.09918 c -3.11726,0 -5.62692,2.50965 -5.62692,5.62696 v 205.093688 c 10.24338,-6.344433 21.65551,-11.731438 30.87465,-11.731438 22.42051,0 35.39382,31.864275 57.81467,31.864275 22.4207,0 35.39349,-31.864275 57.81419,-31.864275 22.4207,0 35.39364,31.864275 57.81414,31.864275 22.42085,0 35.39417,-31.864275 57.81487,-31.864275 22.4207,0 35.12275,32.274347 57.81415,31.864275 15.7123,-0.283971 37.3851,-16.841797 49.2303,-27.000044 V -295.47222 c 0,-3.11731 -2.5096,-5.62696 -5.6269,-5.62696 z" />
198
- </clipPath>
199
- <clipPath
200
- clipPathUnits="userSpaceOnUse"
201
- id="clipPath729-6">
202
- <path
203
- id="path730-0"
204
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.58661;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
205
- d="m 3024.7739,627.35678 c -2.9312,0 -5.2916,2.36011 -5.2916,5.29162 v 170.43364 c 9.633,-5.96631 20.3653,-11.03245 29.0346,-11.03245 21.0847,0 33.2853,29.96559 54.37,29.96559 21.0847,0 33.2844,-29.96559 54.3692,-29.96559 21.0847,0 33.2848,29.96559 54.3696,29.96559 21.0847,0 33.2844,-29.96559 54.3691,-29.96559 21.0848,0 33.0306,30.35123 54.3696,29.96559 14.7759,-0.26696 35.1571,-15.83821 46.2965,-25.3912 V 632.6484 c 0,-2.93151 -2.3595,-5.29162 -5.2916,-5.29162 z"
206
- sodipodi:nodetypes="sscsssssscsss" />
207
- </clipPath>
208
- <clipPath
209
- clipPathUnits="userSpaceOnUse"
210
- id="clipPath2">
211
- <path
212
- id="path1-7"
213
- 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"
214
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
215
- </clipPath>
216
- <clipPath
217
- clipPathUnits="userSpaceOnUse"
218
- id="clipPath3">
219
- <path
220
- id="path3"
221
- 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"
222
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
223
- </clipPath>
224
- <clipPath
225
- clipPathUnits="userSpaceOnUse"
226
- id="clipPath4">
227
- <path
228
- id="path4"
229
- 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"
230
- d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
231
- </clipPath>
232
- <clipPath
233
- clipPathUnits="userSpaceOnUse"
234
- id="clipPath7">
235
- <path
236
- id="path7"
237
- 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"
238
- d="m 325.19865,-106.97735 c -1.41442,0 -2.55314,1.13872 -2.55314,2.55314 v 82.232091 c 4.64781,-2.878669 9.82592,-5.323019 14.00898,-5.323019 10.17304,0 16.05949,14.458021 26.23269,14.458021 10.17312,0 16.05936,-14.458021 26.23246,-14.458021 10.17312,0 16.05944,14.458021 26.23246,14.458021 10.1732,0 16.05968,-14.458021 26.23277,-14.458021 10.17313,0 15.93652,14.6441 26.23246,14.458021 7.12928,-0.128791 16.96305,-7.641722 22.33766,-12.25092 v -79.116173 c 0,-1.41442 -1.13871,-2.55314 -2.55315,-2.55314 z"
239
- sodipodi:nodetypes="sscsssssscsss" />
240
- </clipPath>
241
- <clipPath
242
- clipPathUnits="userSpaceOnUse"
243
- id="clipPath31-5">
244
- <path
245
- id="path32-4"
246
- 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"
247
- d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
248
- sodipodi:nodetypes="sscsssssscsss" />
249
- </clipPath>
250
- <clipPath
251
- clipPathUnits="userSpaceOnUse"
252
- id="clipPath18-6">
253
- <path
254
- id="path19-2"
255
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15.0821;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
256
- d="m -3334.2611,-1042.3606 c -27.8665,0 -50.3014,22.4349 -50.3014,50.30132 V 628.06067 c 91.5701,-56.71503 193.5881,-104.87302 276.0019,-104.87302 200.4268,0 316.4008,284.84871 516.8309,284.84871 200.4285,0 316.3976,-284.84871 516.8261,-284.84871 200.4301,0 316.3976,284.84871 516.826,284.84871 200.4285,0 316.4025,-284.84871 516.831,-284.84871 200.42847,0 313.97901,288.51483 516.82932,284.84871 140.45773,-2.53746 334.20219,-150.55547 440.08825,-241.36497 V -992.05928 c 0,-27.86642 -22.43323,-50.30132 -50.30133,-50.30132 z"
257
- sodipodi:nodetypes="sscsssssscsss" />
258
- </clipPath>
259
- </defs>
260
- <g
261
- inkscape:label="Layer 1"
262
- inkscape:groupmode="layer"
263
- id="layer1"
264
- transform="translate(-336.55017,-30.6131)">
265
- <rect
266
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.250095;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
267
- id="title"
268
- width="169.33333"
269
- height="104.96965"
270
- x="336.55017"
271
- y="30.6131"
272
- inkscape:export-filename="page-with-breadcrumb.png"
273
- inkscape:export-xdpi="96"
274
- inkscape:export-ydpi="96" />
275
- <path
276
- id="path12-5"
277
- style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
278
- d="m 504.80144,134.59789 v -18.82138 c -5.36361,4.59975 -15.17744,12.09731 -22.29216,12.22604 -10.27518,0.18554 -16.02666,-14.42893 -26.17905,-14.42893 -10.15264,0 -16.02743,14.42893 -26.17994,14.42893 -10.15239,0 -16.02679,-14.42893 -26.17917,-14.42893 -10.15252,0 -16.02653,14.42893 -26.17892,14.42893 -10.15277,0 -16.0273,-14.42893 -26.17956,-14.42893 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71192"
279
- sodipodi:nodetypes="ccsssssscc" />
280
- <g
281
- id="g7"
282
- clip-path="url(#clipPath7)"
283
- transform="translate(14.948891,138.49885)">
284
- <rect
285
- style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.29045;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
286
- id="rect397-2-5-1"
287
- width="195.10553"
288
- height="11.515541"
289
- x="2499.1555"
290
- y="355.19144"
291
- inkscape:export-filename="screenshot-sponsors-default-layout.png"
292
- inkscape:export-xdpi="96"
293
- inkscape:export-ydpi="96"
294
- clip-path="url(#clipPath423-2-9-2)"
295
- transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
296
- <g
297
- id="g404-1-8-5"
298
- transform="matrix(0.11914478,0,0,0.11914478,279.33891,-88.961102)"
299
- style="fill:#f6edf4;stroke-width:3.80952"
300
- clip-path="url(#clipPath422-7-5-7)">
301
- <g
302
- aria-label="CentOS"
303
- id="g402-2-4-5"
304
- 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"
305
- transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)">
306
- <path
307
- 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"
308
- id="path397-0-3-4"
309
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
310
- <path
311
- 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"
312
- id="path398-7-7-9"
313
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
314
- <path
315
- 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"
316
- id="path399-3-1-8"
317
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
318
- <path
319
- 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"
320
- id="path400-1-3-3"
321
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
322
- <path
323
- 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"
324
- id="path401-1-8-8"
325
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
326
- <path
327
- 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"
328
- id="path402-9-0-5"
329
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
330
- </g>
331
- <g
332
- id="g403-0-9-2"
333
- transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
334
- inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
335
- inkscape:export-xdpi="10.11"
336
- inkscape:export-ydpi="10.11"
337
- style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
338
- <path
339
- id="path403-5-7-2"
340
- 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"
341
- 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" />
342
- </g>
343
- </g>
344
- <rect
345
- style="fill:#f6edf4;fill-opacity:1;stroke:#f6edf4;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
346
- id="rect404-6-9-2"
347
- width="9.556036"
348
- height="6.0348539"
349
- x="2670.1716"
350
- y="357.93179"
351
- rx="0.72612405"
352
- ry="0.72612405"
353
- clip-path="url(#clipPath421-9-7-6)"
354
- transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
355
- <g
356
- id="g406-7-9-7"
357
- transform="matrix(0.45388488,0,0,0.45388488,-4.1862063,-33.251832)"
358
- style="stroke:#9a9996;stroke-opacity:1"
359
- clip-path="url(#clipPath420-4-5-6)">
360
- <path
361
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
362
- d="m 1040.8931,-147.50672 h 12.5172"
363
- id="path404-7-3-0" />
364
- <path
365
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
366
- d="m 1040.8931,-144.94685 h 12.5172"
367
- id="path405-4-2-3" />
368
- <path
369
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
370
- d="m 1040.8931,-142.38698 h 12.5172"
371
- id="path406-0-4-4" />
372
- </g>
373
- <path
374
- style="fill:none;stroke:none;stroke-width:0.145225px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
375
- d="m 2539.0625,357.24501 v 7.40839"
376
- id="path407-6-3-6"
377
- clip-path="url(#clipPath419-9-3-7)"
378
- transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
379
- <g
380
- id="g1">
381
- <g
382
- id="g411-8-2-3"
383
- transform="matrix(0.45388488,0,0,0.45388488,2.3015904,-34.489811)"
384
- clip-path="url(#clipPath416-1-7-7)">
385
- <rect
386
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
387
- id="rect408-5-0-4"
388
- width="33.323124"
389
- height="7.9375"
390
- x="739.05914"
391
- y="-125.37652"
392
- rx="1.3229167"
393
- ry="1.3229167" />
394
- <rect
395
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
396
- id="rect409-2-1-3"
397
- width="33.323124"
398
- height="7.9375"
399
- x="778.5531"
400
- y="-125.37652"
401
- rx="1.3229167"
402
- ry="1.3229167" />
403
- <rect
404
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
405
- id="rect410-6-7-9"
406
- width="33.323124"
407
- height="7.9375"
408
- x="818.04712"
409
- y="-125.37652"
410
- rx="1.3229167"
411
- ry="1.3229167" />
412
- <path
413
- style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
414
- d="m 774.56963,-123.04318 1.70092,1.63724 -1.57354,1.63723"
415
- id="path410-0-5-7"
416
- sodipodi:nodetypes="ccc" />
417
- <path
418
- style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
419
- d="m 814.06362,-123.04318 1.70092,1.63724 -1.57354,1.63723"
420
- id="path411-6-1-2"
421
- sodipodi:nodetypes="ccc" />
422
- </g>
423
- <g
424
- id="g6"
425
- transform="translate(-2496.4222,-1174.3094)">
426
- <path
427
- d="m 234.05916,193.5514 c 0,-0.4005 0.3256,-0.72612 0.72617,-0.72612 h 2.17829 0.5446 0.18157 16.87833 c 0.40046,0 0.72606,0.32562 0.72606,0.72612 v 2.9045 c 0,0.4005 -0.3256,0.72612 -0.72606,0.72612 h -16.87833 -0.18157 -0.5446 -2.17829 c -0.40057,0 -0.72617,-0.32562 -0.72617,-0.72612 z m 3.63063,0 v 2.9045 h 2.90452 v -2.9045 z m -1.60767,0.54346 c -0.0362,-0.0817 -0.11801,-0.13501 -0.20764,-0.13501 -0.0896,0 -0.17136,0.0533 -0.20765,0.13501 l -0.72617,1.63377 c -0.051,0.1146 0,0.24848 0.11576,0.29953 0.11461,0.0511 0.24848,-0.001 0.29953,-0.11572 l 0.10099,-0.22805 h 0.83507 l 0.10099,0.22805 c 0.0511,0.11458 0.18492,0.16564 0.29947,0.11572 0.11461,-0.0499 0.16566,-0.18493 0.11576,-0.29953 z m -0.20764,0.6501 0.21554,0.4856 h -0.43109 z m 3.26754,-0.78511 c 0.12482,0 0.22691,0.10211 0.22691,0.22691 v 0.0454 h 0.49921 0.18157 c 0.12476,0 0.2269,0.10212 0.2269,0.22692 0,0.1248 -0.10214,0.22691 -0.2269,0.22691 h -0.0231 l -0.0181,0.0511 c -0.10099,0.27683 -0.25413,0.52871 -0.44926,0.742 0.0104,0.007 0.0203,0.0125 0.0307,0.0182 l 0.21445,0.12821 c 0.10774,0.0647 0.14177,0.20422 0.0783,0.31087 -0.0636,0.10665 -0.20424,0.14182 -0.31089,0.0783 l -0.21439,-0.1282 c -0.0511,-0.0306 -0.0999,-0.0624 -0.1487,-0.0964 -0.1202,0.0851 -0.24842,0.15884 -0.38569,0.22011 l -0.0406,0.0182 c -0.11455,0.0511 -0.24848,-0.001 -0.29947,-0.11573 -0.0511,-0.11459 0,-0.24847 0.1157,-0.29953 l 0.0406,-0.0182 c 0.0726,-0.0329 0.14293,-0.0692 0.20995,-0.11119 l -0.13849,-0.13842 c -0.0885,-0.0885 -0.0885,-0.23258 0,-0.32108 0.0885,-0.0885 0.23257,-0.0885 0.3211,0 l 0.16565,0.16565 0.006,0.006 c 0.14068,-0.14863 0.25528,-0.32108 0.33811,-0.51055 h -0.39942 -0.81684 c -0.12482,0 -0.22697,-0.10211 -0.22697,-0.22691 0,-0.12481 0.10215,-0.22692 0.22697,-0.22692 h 0.58999 v -0.0454 c 0,-0.1248 0.10203,-0.22692 0.22685,-0.22692 z"
428
- id="path408-8"
429
- style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0113456"
430
- clip-path="url(#clipPath31-5)"
431
- transform="matrix(0.82665905,0,0,0.82665905,2760.4923,923.51292)"
432
- sodipodi:nodetypes="sscccsssscccsssccccccscccccccccccccccsccsssccccccccccccccccssccccssscscc" />
433
- <rect
434
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264572;stroke-linejoin:round;stroke-dasharray:none"
435
- id="rect3-2-7"
436
- width="6.7305856"
437
- height="1.1906738"
438
- x="2960.95"
439
- y="1084.1317"
440
- rx="0.52914494"
441
- ry="0.52914494" />
442
- <path
443
- sodipodi:type="star"
444
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:18.7602;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
445
- id="path602-9-2"
446
- inkscape:flatsided="false"
447
- sodipodi:sides="3"
448
- sodipodi:cx="-499.8125"
449
- sodipodi:cy="737.32031"
450
- sodipodi:r1="36.465179"
451
- sodipodi:r2="18.23259"
452
- sodipodi:arg1="1.5707963"
453
- sodipodi:arg2="2.6179939"
454
- inkscape:rounded="0"
455
- inkscape:randomized="0"
456
- 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"
457
- transform="matrix(0.02176734,0,0,0.02176734,2981.0119,1068.4791)"
458
- inkscape:transform-center-y="0.43727202"
459
- inkscape:transform-center-x="4.3705878e-05"
460
- clip-path="url(#clipPath18-6)" />
461
- </g>
462
- </g>
463
- <text
464
- xml:space="preserve"
465
- style="font-size:8.99535px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#a14f8c;stroke:none;stroke-width:0.374807;stroke-linejoin:round"
466
- x="337.71338"
467
- y="-72.728531"
468
- id="text2"><tspan
469
- sodipodi:role="line"
470
- id="tspan2"
471
- style="font-weight:bold;fill:#a14f8c;stroke:none;stroke-width:0.374807"
472
- x="337.71338"
473
- y="-72.728531">Lorem Ipsum</tspan></text>
474
- <text
475
- xml:space="preserve"
476
- style="font-size:3.0489px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#a14f8c;stroke:none;stroke-width:0.127037;stroke-linejoin:round"
477
- x="337.57336"
478
- y="-67.28476"
479
- id="text3"><tspan
480
- sodipodi:role="line"
481
- id="tspan3"
482
- style="font-style:normal;font-variant:normal;font-weight:100;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Thin';fill:#a14f8c;stroke:none;stroke-width:0.127037"
483
- x="337.57336"
484
- y="-67.28476">Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...</tspan></text>
485
- <g
486
- id="g939-1"
487
- transform="matrix(0.48207428,0,0,0.48207428,-54.328089,-383.05759)">
488
- <rect
489
- 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"
490
- id="rect937-2"
491
- width="286.95578"
492
- height="27.962162"
493
- x="813.31335"
494
- y="667.367"
495
- rx="4.9763589"
496
- ry="4.9763589" />
497
- <g
498
- id="g938-7"
499
- transform="matrix(0.02677882,0,0,0.02677882,950.79278,674.49279)"
500
- style="fill:#381a32;fill-opacity:1">
501
- <title
502
- id="title937-0">align-left</title>
503
- </g>
504
- <path
505
- sodipodi:type="star"
506
- 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"
507
- id="path939-3"
508
- inkscape:flatsided="false"
509
- sodipodi:sides="3"
510
- sodipodi:cx="-499.8125"
511
- sodipodi:cy="737.32031"
512
- sodipodi:r1="36.465179"
513
- sodipodi:r2="18.23259"
514
- sodipodi:arg1="1.5707963"
515
- sodipodi:arg2="2.6179939"
516
- inkscape:rounded="0"
517
- inkscape:randomized="0"
518
- 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"
519
- transform="matrix(0.10519844,0,0,0.10519844,1139.2521,602.82419)"
520
- inkscape:transform-center-y="1.0197809"
521
- inkscape:transform-center-x="-6.518711e-05" />
522
- </g>
523
- <rect
524
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
525
- id="rect3"
526
- width="115.24662"
527
- height="3.3675957"
528
- x="337.89185"
529
- y="-42.559658"
530
- rx="1.3229166"
531
- ry="1.3229166" />
532
- <rect
533
- style="fill:#ecdce8;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
534
- id="rect3-2"
535
- width="37.604816"
536
- height="3.3675957"
537
- x="341.8653"
538
- y="-56.281002"
539
- rx="1.3229166"
540
- ry="1.3229166" />
541
- <rect
542
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
543
- id="rect4"
544
- width="66.603561"
545
- height="3.3675957"
546
- x="337.89185"
547
- y="-36.198643"
548
- rx="1.3229166"
549
- ry="1.3229166" />
550
- <rect
551
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
552
- id="rect5"
553
- width="84.564072"
554
- height="3.3675957"
555
- x="337.89185"
556
- y="-29.463451"
557
- rx="1.3229166"
558
- ry="1.3229166" />
559
- <rect
560
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
561
- id="rect6"
562
- width="66.603561"
563
- height="3.3675957"
564
- x="409.4798"
565
- y="-36.198643"
566
- rx="1.3229166"
567
- ry="1.3229166" />
568
- <rect
569
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
570
- id="rect7"
571
- width="127.59448"
572
- height="3.3675957"
573
- x="337.89185"
574
- y="-22.54117"
575
- rx="1.3229166"
576
- ry="1.3229166" />
577
- </g>
578
- <path
579
- id="path664"
580
- style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765518;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
581
- d="m 340.01525,31.755727 c -1.41442,0 -2.55314,1.138723 -2.55314,2.553137 v 82.232076 c 4.64781,-2.87867 9.82592,-5.32302 14.00898,-5.32302 10.17303,0 16.0595,14.45802 26.2327,14.45802 10.17312,0 16.05934,-14.45802 26.23246,-14.45802 10.17311,0 16.05942,14.45802 26.23245,14.45802 10.1732,0 16.05967,-14.45802 26.23278,-14.45802 10.17312,0 15.9365,14.6441 26.23246,14.45802 7.12927,-0.12879 16.96304,-7.64172 22.33765,-12.25092 V 34.308864 c 0,-1.414414 -1.13872,-2.553137 -2.55314,-2.553137 z"
582
- sodipodi:nodetypes="sscsssssscsss" />
583
- </g>
584
- </svg>