jekyll-theme-centos 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (274) hide show
  1. checksums.yaml +7 -0
  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/centos-content/download/table-footer.html +2 -0
  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.html +7 -0
  31. data/_includes/centos-header/home.html +15 -0
  32. data/_includes/centos-header/page.html +12 -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/page.html +5 -0
  43. data/_layouts/post.html +5 -0
  44. data/_sass/bootstrap/_alert.scss +52 -0
  45. data/_sass/bootstrap/_badge.scss +54 -0
  46. data/_sass/bootstrap/_breadcrumb.scss +44 -0
  47. data/_sass/bootstrap/_button-group.scss +163 -0
  48. data/_sass/bootstrap/_buttons.scss +142 -0
  49. data/_sass/bootstrap/_card.scss +286 -0
  50. data/_sass/bootstrap/_carousel.scss +197 -0
  51. data/_sass/bootstrap/_close.scss +40 -0
  52. data/_sass/bootstrap/_code.scss +48 -0
  53. data/_sass/bootstrap/_custom-forms.scss +524 -0
  54. data/_sass/bootstrap/_dropdown.scss +192 -0
  55. data/_sass/bootstrap/_forms.scss +347 -0
  56. data/_sass/bootstrap/_functions.scss +144 -0
  57. data/_sass/bootstrap/_grid.scss +73 -0
  58. data/_sass/bootstrap/_images.scss +42 -0
  59. data/_sass/bootstrap/_input-group.scss +192 -0
  60. data/_sass/bootstrap/_jumbotron.scss +17 -0
  61. data/_sass/bootstrap/_list-group.scss +154 -0
  62. data/_sass/bootstrap/_media.scss +8 -0
  63. data/_sass/bootstrap/_mixins.scss +47 -0
  64. data/_sass/bootstrap/_modal.scss +240 -0
  65. data/_sass/bootstrap/_nav.scss +123 -0
  66. data/_sass/bootstrap/_navbar.scss +324 -0
  67. data/_sass/bootstrap/_pagination.scss +74 -0
  68. data/_sass/bootstrap/_popover.scss +170 -0
  69. data/_sass/bootstrap/_print.scss +141 -0
  70. data/_sass/bootstrap/_progress.scss +47 -0
  71. data/_sass/bootstrap/_reboot.scss +484 -0
  72. data/_sass/bootstrap/_root.scss +20 -0
  73. data/_sass/bootstrap/_spinners.scss +56 -0
  74. data/_sass/bootstrap/_tables.scss +185 -0
  75. data/_sass/bootstrap/_toasts.scss +46 -0
  76. data/_sass/bootstrap/_tooltip.scss +115 -0
  77. data/_sass/bootstrap/_transitions.scss +20 -0
  78. data/_sass/bootstrap/_type.scss +125 -0
  79. data/_sass/bootstrap/_utilities.scss +18 -0
  80. data/_sass/bootstrap/_variables.scss +1142 -0
  81. data/_sass/bootstrap/bootstrap-grid.scss +29 -0
  82. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  83. data/_sass/bootstrap/bootstrap.scss +44 -0
  84. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  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 +76 -0
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  90. data/_sass/bootstrap/mixins/_buttons.scss +110 -0
  91. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  92. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  93. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  94. data/_sass/bootstrap/mixins/_float.scss +14 -0
  95. data/_sass/bootstrap/mixins/_forms.scss +178 -0
  96. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  97. data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
  98. data/_sass/bootstrap/mixins/_grid.scss +69 -0
  99. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  100. data/_sass/bootstrap/mixins/_image.scss +36 -0
  101. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  102. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  103. data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  105. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  106. data/_sass/bootstrap/mixins/_resize.scss +6 -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 +8 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  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/utilities/_clearfix.scss +3 -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 +204 -0
  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 +7 -0
  268. data/assets/js/bootstrap.min.js.map +1 -0
  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 +357 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 005af1f2d680bdf03e824e63a3cc3c0fc23a257371c701580a495e897564de15
4
+ data.tar.gz: 760b884871181ad6942b528648afe29c8923a036e915c3b4c65339663872aaa1
5
+ SHA512:
6
+ metadata.gz: 8223be4b6e4c012adef064e73c19bd88c2c568eec8098551270f613ed081b2e6e2445c36dced08e90e092416edf256b6aa7e9bf977bcea2de3994074e53e8357
7
+ data.tar.gz: ba8738b76ee408d3cd46b305774989e5d10c113a2d9e3e16ed477c11f4d25cb7fb9b7b0c608912cb5db1b0434677c01736caa0f54bb27aa304730e7ec8d9c04a
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Alain Reguera Delgado
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,66 @@
1
+ # jekyll-theme-centos
2
+
3
+ Welcome to jekyll-theme-centos! In this directory, you'll find the files you
4
+ need to be able to package up your theme into a gem. Put your layouts in
5
+ `_layouts`, your includes in `_includes`, your sass files in `_sass` and any
6
+ other assets in `assets`.
7
+
8
+ To experiment with this code, add some sample content and run `bundle exec
9
+ jekyll serve` – this directory is setup just like a Jekyll site!
10
+
11
+ ## Installation
12
+
13
+ Add this line to your Jekyll site's `Gemfile`:
14
+
15
+ ```ruby
16
+ gem "jekyll-theme-centos"
17
+ ```
18
+
19
+ And add this line to your Jekyll site's `_config.yml`:
20
+
21
+ ```yaml
22
+ theme: jekyll-theme-centos
23
+ ```
24
+
25
+ And then execute:
26
+
27
+ $ bundle
28
+
29
+ Or install it yourself as:
30
+
31
+ $ gem install jekyll-theme-centos
32
+
33
+ ## Usage
34
+
35
+ TODO: Write usage instructions here. Describe your available layouts, includes,
36
+ sass and/or assets.
37
+
38
+ ## Contributing
39
+
40
+ Bug reports and pull requests are welcome on GitHub at
41
+ https://github.com/areguera/jekyll-theme-centos. This project is intended to be
42
+ a safe, welcoming space for collaboration, and contributors are expected to
43
+ adhere to the [Contributor Covenant](http://contributor-covenant.org) code of
44
+ conduct.
45
+
46
+ ## Development
47
+
48
+ To set up your environment to develop this theme, run `bundle install`.
49
+
50
+ Your theme is setup just like a normal Jekyll site! To test your theme, run
51
+ `bundle exec jekyll serve` and open your browser at `http://localhost:4000`.
52
+ This starts a Jekyll server using your theme. Add pages, documents, data, etc.
53
+ like normal to test your theme's contents. As you make modifications to your
54
+ theme and to your content, your site will regenerate and you should see the
55
+ changes in the browser after a refresh, just like normal.
56
+
57
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass`
58
+ and `assets` tracked with Git will be bundled. To add a custom directory to
59
+ your theme-gem, please edit the regexp in `jekyll-theme-centos.gemspec`
60
+ accordingly.
61
+
62
+ ## License
63
+
64
+ The theme is available as open source under the terms of the [MIT
65
+ License](https://opensource.org/licenses/MIT).
66
+
@@ -0,0 +1,11 @@
1
+ <section class="centos-content-1col-breadcrumb">
2
+ {% include centos-content/breadcrumbs.html %}
3
+ </section>
4
+
5
+ <section class="centos-content-1col-toc">
6
+ {% include centos-content/toc.html html=content %}
7
+ </section>
8
+
9
+ <article class="centos-content-1col-article">
10
+ {{ content }}
11
+ </article>
@@ -0,0 +1,15 @@
1
+ <aside class="centos-content-2col-aside">
2
+
3
+ <section class="centos-content-2col-aside-breadcrumb">
4
+ {% include centos-content/breadcrumbs.html %}
5
+ </section>
6
+
7
+ <section class="centos-content-2col-aside-toc">
8
+ {% include centos-content/toc.html html=content %}
9
+ </section>
10
+
11
+ </aside>
12
+
13
+ <article class="centos-content-2col-article">
14
+ {{ content }}
15
+ </section>
@@ -0,0 +1,4 @@
1
+ <blockquote class="centos-content-admonition-caution">
2
+ <p class="title"><i class="fas fa-minus-circle"></i> Caution:</p>
3
+ <p>{{ include.content }}</p>
4
+ </blockquote>
@@ -0,0 +1,4 @@
1
+ <blockquote class="centos-content-admonition-idea">
2
+ <p class="title"><i class="fas fa-lightbulb"></i> Idea:</p>
3
+ <p>Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.</p>
4
+ </blockquote>
@@ -0,0 +1,4 @@
1
+ <blockquote class="centos-content-admonition-note">
2
+ <p class="title"><i class="fas fa-clipboard"></i> Note:</p>
3
+ <p>{{ include.content }}</p>
4
+ </blockquote>
@@ -0,0 +1,4 @@
1
+ <blockquote class="centos-content-admonition-warning">
2
+ <p class="title"><i class="fas fa-exclamation-triangle"></i> Warning:</p>
3
+ <p>{{ include.content }}</p>
4
+ </blockquote>
@@ -0,0 +1,6 @@
1
+ <section class="centos-content-around">
2
+ <header>
3
+ <h2><i class="fas fa-globe-americas"></i> Around CentOS</h2>
4
+ </header>
5
+ <div id="rss-feeds"></div>
6
+ </section>
@@ -0,0 +1,11 @@
1
+ <ol class="breadcrumb">
2
+ {% assign crumbs = page.url | remove:'/index.html' | split: '/' %}
3
+ <li class="breadcrumb-item"><a href="/">Home</a></li>
4
+ {% for crumb in crumbs offset: 1 %}
5
+ {% if forloop.last %}
6
+ <li class="breadcrumb-item">{{ page.title }}</li>
7
+ {% else %}
8
+ <li class="breadcrumb-item"><a href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}">{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }}</a></li>
9
+ {% endif %}
10
+ {% endfor %}
11
+ </ol>
@@ -0,0 +1,5 @@
1
+ {% include centos-content/download/table-header-doc.html %}
2
+ {% for row in site.data.centos-content.download.stream-8-doc %}
3
+ {% include centos-content/download/table-body-doc.html %}
4
+ {% endfor %}
5
+ {% include centos-content/download/table-footer.html %}
@@ -0,0 +1,5 @@
1
+ {% include centos-content/download/table-header-eol.html %}
2
+ {% for row in site.data.centos-content.download.stream-8-eol %}
3
+ {% include centos-content/download/table-body-eol.html %}
4
+ {% endfor %}
5
+ {% include centos-content/download/table-footer.html %}
@@ -0,0 +1,5 @@
1
+ {% include centos-content/download/table-header.html %}
2
+ {% for row in site.data.centos-content.download.stream-8 %}
3
+ {% include centos-content/download/table-body.html %}
4
+ {% endfor %}
5
+ {% include centos-content/download/table-footer.html %}
@@ -0,0 +1,16 @@
1
+ <section class="centos-content-download-stream">
2
+ <ul class="nav nav-tabs">
3
+ <li class="nav-item"><a class="nav-link active" role="tab" data-toggle="tab" href="#tab-stream-8">Latest</a></li>
4
+ </ul>
5
+
6
+ <div class="tab-content">
7
+
8
+ <div class="tab-pane active" role="tabpanel" id="tab-stream-8">
9
+ {% include centos-content/download/stream-8.html %}
10
+ {% include centos-content/download/stream-8-doc.html %}
11
+ {% include centos-content/download/stream-8-eol.html %}
12
+ </div>
13
+
14
+ </div>
15
+
16
+ </section>
@@ -0,0 +1,6 @@
1
+ <tr>
2
+ <td>{% if row["release_notes"] != "-" %}<a href="{{ row['release_notes'] }}">Release Notes</a>{% else %}Release Notes{% endif %}
3
+ | {% if row["release_email"] != "-" %}<a href="{{ row['release_email'] }}">Release Email</a>{% else %}Release Email{% endif %}
4
+ | {% if row["documentation"] != "-" %}<a href="{{ row['documentation'] }}">Documentation</a>{% else %}Documentation{% endif %}</td>
5
+ </tr>
6
+
@@ -0,0 +1,4 @@
1
+ <tr>
2
+ <td>{% if row["date"] != "-" %}{{ row['date'] }}{% endif %}
3
+ {% if row["url"] != "-" %}<a href="{{ row['url'] }}"><i class="fas fa-exclamation-circle"></i></a>{% endif %}</td>
4
+ </tr>
@@ -0,0 +1,7 @@
1
+ <tr>
2
+ <td><a href="{{ row['iso'] }}"> {{ row['arch'] }}</a></td>
3
+ <td>{% if row["rpm"] != "-" %}<a href="{{ row['rpm'] }}"> RPMs</a>{% else %}RPMs{% endif %}</td>
4
+ <td>{% if row["cloud"] != "-" %}<a href="{{ row['cloud'] }}">Cloud</a>{% else %}Cloud{% endif %}
5
+ | {% if row["containers"] != "-" %}<a href="{{ row['containers'] }}">Containers</a>{% else %}Containers{% endif %}
6
+ | {% if row["vagrant"] != "-" %}<a href="{{ row['vagrant'] }}">Vagrant</a>{% else %}Vagrant{% endif %}</td>
7
+ </tr>
@@ -0,0 +1,2 @@
1
+ </tbody>
2
+ </table>
@@ -0,0 +1,8 @@
1
+ <table>
2
+ <thead>
3
+ <tr>
4
+ <th><i class="fas fa-book"></i> Documentation</th>
5
+ </tr>
6
+ </thead>
7
+ <tbody>
8
+
@@ -0,0 +1,8 @@
1
+ <table>
2
+ <thead>
3
+ <tr>
4
+ <th><i class="fas fa-hourglass-end"></i> End-of-life</th>
5
+ </tr>
6
+ </thead>
7
+ <tbody>
8
+
@@ -0,0 +1,10 @@
1
+ <table>
2
+ <thead>
3
+ <tr>
4
+ <th><i class="fas fa-compact-disc"></i> ISO</th>
5
+ <th><i class="fas fa-cubes"></i> Packages</th>
6
+ <th><i class="fas fa-plus-circle"></i> Others</th>
7
+ </tr>
8
+ </thead>
9
+ <tbody>
10
+
@@ -0,0 +1,4 @@
1
+ <figure class="centos-content-figure">
2
+ <img class="figure-img img-fluid" src="{{ include.src }}" alt="{{ include.alt }}">
3
+ <figcaption class="figure-caption">{{ include.caption }}</figcaption>
4
+ </figure>
@@ -0,0 +1,15 @@
1
+ <section class="centos-content-news">
2
+ <header>
3
+ <h2><i class="fas fa-calendar-alt"></i> News and events</h2>
4
+ </header>
5
+
6
+ <div class="card">
7
+ {% for i in site.news %}
8
+ <div class="card-body">
9
+ <h3 class="card-title">{{ i.title }}</h3>
10
+ <p class="card-text">{{ i.content }}</p>
11
+ </div>
12
+ {% endfor %}
13
+ </div>
14
+
15
+ </section>
@@ -0,0 +1,19 @@
1
+ <section class="centos-content-sponsors">
2
+ <header>
3
+ <h2><i class="fas fa-award"></i> Sponsorship</h2>
4
+ </header>
5
+
6
+ <p>CentOS would not be possible without the support of our sponsors. We would like to thank the following product/service for being a CentOS sponsor:</p>
7
+
8
+ <div class="centos-content-sponsors-cards">
9
+ <div class="carousel slide carousel-fade" data-ride="carousel" id="carousel-1">
10
+ <div class="carousel-inner" role="listbox">
11
+ {% for sponsor in site.sponsors %}
12
+ <div class="carousel-item {{ sponsor.status }}"><a href="{{ sponsor.address }}" rel="nofollow"><img class="img-fluid" src="{{ sponsor.logo }}"></a></div>
13
+ {% endfor %}
14
+ </div>
15
+ </div>
16
+ </div>
17
+
18
+ <p>If you value our work, please consider <a href="/sponsors">becoming a sponsor</a>!</p>
19
+ </section>
@@ -0,0 +1,103 @@
1
+ {% capture tocWorkspace %}
2
+ {% comment %}
3
+ Version 1.0.10
4
+ https://github.com/allejo/jekyll-toc
5
+
6
+ "...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe
7
+
8
+ Usage:
9
+ {% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %}
10
+
11
+ Parameters:
12
+ * html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
13
+
14
+ Optional Parameters:
15
+ * sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC
16
+ * class (string) : '' - a CSS class assigned to the TOC
17
+ * id (string) : '' - an ID to assigned to the TOC
18
+ * h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored
19
+ * h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored
20
+ * ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list
21
+ * item_class (string) : '' - add custom class(es) for each list item; has support for '%level%' placeholder, which is the current heading level
22
+ * baseurl (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content
23
+ * anchor_class (string) : '' - add custom class(es) for each anchor element
24
+
25
+ Output:
26
+ An ordered or unordered list representing the table of contents of a markdown block. This snippet will only
27
+ generate the table of contents and will NOT output the markdown given to it
28
+ {% endcomment %}
29
+
30
+ {% capture my_toc %}{% endcapture %}
31
+ {% assign orderedList = include.ordered | default: false %}
32
+ {% assign minHeader = include.h_min | default: 1 %}
33
+ {% assign maxHeader = include.h_max | default: 6 %}
34
+ {% assign nodes = include.html | split: '<h' %}
35
+ {% assign firstHeader = true %}
36
+
37
+ {% capture listModifier %}{% if orderedList %}1.{% else %}-{% endif %}{% endcapture %}
38
+
39
+ {% for node in nodes %}
40
+ {% if node == "" %}
41
+ {% continue %}
42
+ {% endif %}
43
+
44
+ {% assign headerLevel = node | replace: '"', '' | slice: 0, 1 | times: 1 %}
45
+
46
+ {% if headerLevel < minHeader or headerLevel > maxHeader %}
47
+ {% continue %}
48
+ {% endif %}
49
+
50
+ {% if firstHeader %}
51
+ {% assign firstHeader = false %}
52
+ {% assign minHeader = headerLevel %}
53
+ {% endif %}
54
+
55
+ {% assign indentAmount = headerLevel | minus: minHeader %}
56
+ {% assign _workspace = node | split: '</h' %}
57
+
58
+ {% assign _idWorkspace = _workspace[0] | split: 'id="' %}
59
+ {% assign _idWorkspace = _idWorkspace[1] | split: '"' %}
60
+ {% assign html_id = _idWorkspace[0] %}
61
+
62
+ {% assign _classWorkspace = _workspace[0] | split: 'class="' %}
63
+ {% assign _classWorkspace = _classWorkspace[1] | split: '"' %}
64
+ {% assign html_class = _classWorkspace[0] %}
65
+
66
+ {% if html_class contains "no_toc" %}
67
+ {% continue %}
68
+ {% endif %}
69
+
70
+ {% capture _hAttrToStrip %}{{ _workspace[0] | split: '>' | first }}>{% endcapture %}
71
+ {% assign header = _workspace[0] | replace: _hAttrToStrip, '' %}
72
+
73
+ {% assign space = '' %}
74
+ {% for i in (1..indentAmount) %}
75
+ {% assign space = space | prepend: ' ' %}
76
+ {% endfor %}
77
+
78
+ {% if include.item_class and include.item_class != blank %}
79
+ {% capture listItemClass %}{:.{{ include.item_class | replace: '%level%', headerLevel }}}{% endcapture %}
80
+ {% endif %}
81
+
82
+ {% capture heading_body %}{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}{% endcapture %}
83
+ {% capture my_toc %}{{ my_toc }}
84
+ {{ space }}{{ listModifier }} {{ listItemClass }} [{{ heading_body | replace: "|", "\|" }}]({% if include.baseurl %}{{ include.baseurl }}{% endif %}#{{ html_id }}){% if include.anchor_class %}{:.{{ include.anchor_class }}}{% endif %}{% endcapture %}
85
+ {% endfor %}
86
+
87
+ {% if include.class and include.class != blank %}
88
+ {% capture my_toc %}{:.{{ include.class }}}
89
+ {{ my_toc | lstrip }}{% endcapture %}
90
+ {% endif %}
91
+
92
+ {% if include.id %}
93
+ {% capture my_toc %}{: #{{ include.id }}}
94
+ {{ my_toc | lstrip }}{% endcapture %}
95
+ {% endif %}{% endcapture %}
96
+
97
+ {% if my_toc != "" %}
98
+ <header>
99
+ <h6>Contents:</h6>
100
+ </header>
101
+ {% endif %}
102
+
103
+ {% assign tocWorkspace = '' %}{{ my_toc | markdownify | strip }}
@@ -0,0 +1,3 @@
1
+ <div class="centos-content-video">
2
+ <iframe class="embed-responsive-item" src="{{ include.src }}" allowfullscreen></iframe>
3
+ </div>
@@ -0,0 +1,42 @@
1
+ <footer class="centos-footer">
2
+ <div class="container">
3
+ <div class="row justify-content-center">
4
+ <section class="centos-footer-about">
5
+ <h4>About</h4>
6
+ <ul>
7
+ <li><a href="/about">About CentOS</a></li>
8
+ <li><a href="https://wiki.centos.org/FAQ">Frequently Asked Questions (FAQs)</a></li>
9
+ <li><a href="https://wiki.centos.org/SpecialInterestGroups">Special Interest Groups (SIGs)</a></li>
10
+ <li><a href="/variants">CentOS Variants</a></li>
11
+ <li><a href="/about/governance">Governance</a></li>
12
+ </ul>
13
+ </section>
14
+ <section class="centos-footer-community">
15
+ <h4>Community</h4>
16
+ <ul>
17
+ <li><a href="https://wiki.centos.org/Contribute">Contribute</a></li>
18
+ <li><a href="https://www.centos.org/forums/">Forums</a></li>
19
+ <li><a href="https://wiki.centos.org/GettingHelp/ListInfo">Mailing Lists</a></li>
20
+ <li><a href="https://wiki.centos.org/irc">IRC</a></li>
21
+ <li><a href="/community/calendar/">Calendar &amp; IRC Meeting List</a></li>
22
+ <li><a href="http://planet.centos.org/">Planet</a></li>
23
+ <li><a href="https://bugs.centos.org/">Submit Bug</a></li>
24
+ </ul>
25
+ </section>
26
+ <section class="centos-footer-project">
27
+ <h4>The CentOS Project</h4>
28
+ <p class="lead">Community-driven free software effort focused on delivering a robust open source ecosystem around a Linux platform.</p>
29
+ <div class="lead social">
30
+ <a href="https://www.facebook.com/groups/centosproject/"><i class="fab fa-facebook-f"></i></a>
31
+ <a href="https://twitter.com/centosproject"><i class="fab fa-twitter"></i></a>
32
+ <a href="https://youtube.com/TheCentOSProject"><i class="fab fa-youtube"></i></a>
33
+ <a href="https://www.linkedin.com/groups/22405"><i class="fab fa-linkedin"></i></a>
34
+ <a href="https://www.reddit.com/r/CentOS/"><i class="fab fa-reddit"></i></a>
35
+ </div>
36
+ </section>
37
+ <section class="centos-footer-copyright">
38
+ <p>Copyright &copy; 2020 The CentOS Project | <a href="/legal">Legal</a> | <a href="/legal/privacy">Privacy</a> | <a href="https://git.centos.org/centos/centos.org">Site Source</a></p>
39
+ </section>
40
+ </div>
41
+ </div>
42
+ </footer>