jekyll-theme-centos 2.2.2 → 2.2.4

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 (195) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +13 -20
  3. data/_data/base/footer.yml +32 -0
  4. data/_data/base/identity.yml +20 -0
  5. data/_data/base/navbar.yml +74 -0
  6. data/_data/base/navbar_absolute.yml +74 -0
  7. data/_data/base/navbar_component.yml +60 -0
  8. data/_data/download/cards.yml +148 -0
  9. data/_data/download/navbar.yml +48 -0
  10. data/_data/people/navbar.yml +34 -0
  11. data/_includes/base/announcements.html +6 -0
  12. data/_includes/base/breadcrumbs.html +13 -0
  13. data/_includes/base/footer.html +61 -0
  14. data/_includes/base/head.html +17 -0
  15. data/_includes/base/header.html +17 -0
  16. data/_includes/base/navbar.html +32 -0
  17. data/_includes/base/script.html +70 -0
  18. data/_includes/base/toc-accordion.html +10 -0
  19. data/_includes/base/toc.html +99 -0
  20. data/_includes/download/cards-body-convert.html +10 -0
  21. data/_includes/download/cards-body-doc.html +9 -0
  22. data/_includes/download/cards-body-eol.html +16 -0
  23. data/_includes/download/cards-body-screenshot.html +26 -0
  24. data/_includes/download/cards-body.html +8 -0
  25. data/_includes/download/cards-footer.html +3 -0
  26. data/_includes/download/cards-header-convert.html +8 -0
  27. data/_includes/download/cards-header-doc.html +8 -0
  28. data/_includes/download/cards-header-eol.html +8 -0
  29. data/_includes/download/cards-header-screenshot.html +8 -0
  30. data/_includes/download/cards-header.html +13 -0
  31. data/_includes/download/cards.html +62 -0
  32. data/_includes/people/about.html +25 -0
  33. data/_includes/people/header.html +11 -0
  34. data/_includes/people/posts.html +35 -0
  35. data/_includes/people/projects.html +32 -0
  36. data/_includes/people/pubkeys.html +31 -0
  37. data/_includes/people/support.html +25 -0
  38. data/_layouts/base/default.html +31 -0
  39. data/_layouts/download/cards.html +7 -0
  40. data/_layouts/people/default.html +20 -0
  41. data/_sass/base/_centos-lists.scss +132 -0
  42. data/_sass/base/_centos.scss +80 -0
  43. data/_sass/base/_variables.scss +24 -0
  44. data/_sass/bootstrap/_accordion.scss +158 -0
  45. data/_sass/bootstrap/_alert.scss +68 -0
  46. data/_sass/bootstrap/_badge.scss +38 -0
  47. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  48. data/_sass/bootstrap/_button-group.scss +142 -0
  49. data/_sass/bootstrap/_buttons.scss +207 -0
  50. data/_sass/bootstrap/_card.scss +239 -0
  51. data/_sass/bootstrap/_carousel.scss +244 -0
  52. data/_sass/bootstrap/_close.scss +63 -0
  53. data/_sass/bootstrap/_containers.scss +41 -0
  54. data/_sass/bootstrap/_dropdown.scss +250 -0
  55. data/_sass/bootstrap/_forms.scss +9 -0
  56. data/_sass/bootstrap/_functions.scss +302 -0
  57. data/_sass/bootstrap/_grid.scss +39 -0
  58. data/_sass/bootstrap/_helpers.scss +12 -0
  59. data/_sass/bootstrap/_images.scss +42 -0
  60. data/_sass/bootstrap/_list-group.scss +197 -0
  61. data/_sass/bootstrap/_maps.scss +174 -0
  62. data/_sass/bootstrap/_mixins.scss +42 -0
  63. data/_sass/bootstrap/_modal.scss +237 -0
  64. data/_sass/bootstrap/_nav.scss +209 -0
  65. data/_sass/bootstrap/_navbar.scss +289 -0
  66. data/_sass/bootstrap/_offcanvas.scss +146 -0
  67. data/_sass/bootstrap/_pagination.scss +109 -0
  68. data/_sass/bootstrap/_placeholders.scss +51 -0
  69. data/_sass/bootstrap/_popover.scss +196 -0
  70. data/_sass/bootstrap/_progress.scss +68 -0
  71. data/_sass/bootstrap/_reboot.scss +610 -0
  72. data/_sass/bootstrap/_root.scss +184 -0
  73. data/_sass/bootstrap/_spinners.scss +85 -0
  74. data/_sass/bootstrap/_tables.scss +171 -0
  75. data/_sass/bootstrap/_toasts.scss +73 -0
  76. data/_sass/bootstrap/_tooltip.scss +119 -0
  77. data/_sass/bootstrap/_transitions.scss +27 -0
  78. data/_sass/bootstrap/_type.scss +106 -0
  79. data/_sass/bootstrap/_utilities.scss +806 -0
  80. data/_sass/bootstrap/_variables-dark.scss +85 -0
  81. data/_sass/bootstrap/_variables.scss +1743 -0
  82. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  83. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  84. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  85. data/_sass/bootstrap/bootstrap.scss +52 -0
  86. data/_sass/bootstrap/forms/_floating-labels.scss +94 -0
  87. data/_sass/bootstrap/forms/_form-check.scss +188 -0
  88. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  89. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  90. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  91. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  92. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  93. data/_sass/bootstrap/forms/_labels.scss +36 -0
  94. data/_sass/bootstrap/forms/_validation.scss +12 -0
  95. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  96. data/_sass/bootstrap/helpers/_color-bg.scss +8 -0
  97. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  98. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  99. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  100. data/_sass/bootstrap/helpers/_position.scss +36 -0
  101. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  102. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  103. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  104. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  105. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  106. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  107. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  108. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  109. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  110. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  111. data/_sass/bootstrap/mixins/_box-shadow.scss +18 -0
  112. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  113. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  114. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  115. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  116. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  117. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  118. data/_sass/bootstrap/mixins/_container.scss +11 -0
  119. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  120. data/_sass/bootstrap/mixins/_forms.scss +153 -0
  121. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  122. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  123. data/_sass/bootstrap/mixins/_image.scss +16 -0
  124. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  125. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  126. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  127. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  128. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  129. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  130. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  131. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  132. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  133. data/_sass/bootstrap/mixins/_visually-hidden.scss +33 -0
  134. data/_sass/bootstrap/utilities/_api.scss +47 -0
  135. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  136. data/assets/css/dataTables.bootstrap5.css +430 -0
  137. data/assets/css/dataTables.bootstrap5.min.css +5 -0
  138. data/assets/icons/android-chrome-192.png +0 -0
  139. data/assets/icons/android-chrome-512.png +0 -0
  140. data/assets/icons/apple-touch-icon.png +0 -0
  141. data/assets/icons/favicon-16.png +0 -0
  142. data/assets/icons/favicon-32.png +0 -0
  143. data/assets/icons/favicon.ico +0 -0
  144. data/assets/icons/favicon.svg +1 -0
  145. data/assets/img/anaconda-symbolic.svg +1 -0
  146. data/assets/img/anaconda.svg +1 -0
  147. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  148. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  149. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  150. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  151. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  152. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  153. data/assets/img/centos-logo-2bits.svg +1 -0
  154. data/assets/img/centos-logo.svg +1 -0
  155. data/assets/img/centos-message-logo.svg +1 -0
  156. data/assets/img/centos-motif.png +0 -0
  157. data/assets/img/centos-poweredby-logo.svg +1 -0
  158. data/assets/img/centos-symbol-2bits.svg +1 -0
  159. data/assets/img/centos-symbol.svg +1 -0
  160. data/assets/img/centos-type.svg +1 -0
  161. data/assets/img/centos-vertical-logo.svg +1 -0
  162. data/assets/img/centos-vertical-message-logo.svg +1 -0
  163. data/assets/img/centos-whitelogo.svg +1 -0
  164. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  165. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  166. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  167. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  168. data/assets/img/download/distribution-release-screenshot-n.svg +128 -0
  169. data/assets/img/people/YourUsername.svg +64 -0
  170. data/assets/img/people/screenshot.svg +135 -0
  171. data/assets/img/sort_asc.png +0 -0
  172. data/assets/img/sort_asc_disabled.png +0 -0
  173. data/assets/img/sort_both.png +0 -0
  174. data/assets/img/sort_desc.png +0 -0
  175. data/assets/img/sort_desc_disabled.png +0 -0
  176. data/assets/js/bootstrap.bundle.js +6306 -0
  177. data/assets/js/bootstrap.bundle.js.map +1 -0
  178. data/assets/js/bootstrap.bundle.min.js +7 -0
  179. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  180. data/assets/js/bootstrap.esm.js +4439 -0
  181. data/assets/js/bootstrap.esm.js.map +1 -0
  182. data/assets/js/bootstrap.esm.min.js +7 -0
  183. data/assets/js/bootstrap.esm.min.js.map +1 -0
  184. data/assets/js/bootstrap.js +4486 -0
  185. data/assets/js/bootstrap.js.map +1 -0
  186. data/assets/js/bootstrap.min.js +7 -0
  187. data/assets/js/bootstrap.min.js.map +1 -0
  188. data/assets/js/clipboard.min.js +7 -0
  189. data/assets/js/dataTables.bootstrap5.min.js +4 -0
  190. data/assets/js/jquery.dataTables.min.js +4 -0
  191. data/assets/js/jquery.min.js +2 -0
  192. data/assets/js/jquery.slim.min.js +2 -0
  193. data/assets/js/vanilla-back-to-top.min.js +1 -0
  194. data/site.webmanifest +11 -0
  195. metadata +194 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c40349ff9b5e0be6febef8974542842ddbdd7cdc5342cf9889c7a9b4a0e05105
4
- data.tar.gz: 92eccace2befcf1ec066a28fee9aff5994c3ed10652df198e1cf0d69060eb01e
3
+ metadata.gz: d762fe2a2b177c5a2c620071a6348c2e24e245d9c9290c6c798235e789dc6812
4
+ data.tar.gz: 3b047cac21b9dd2ad97fb50a516b89cbb576ef3d98c7ee73923730cbb9d72464
5
5
  SHA512:
6
- metadata.gz: 54af087de2845e562ec6ac31e6e804ed511f7a48c001c471f133537a2a3782c3a715189e0d97cc7fb12f91059ef036ba4e57aeb8ae6d364eff7d1cdf1c48034f
7
- data.tar.gz: 2f8069a43b7668376547d6eab06104786dc358bcf2d12f1240594a93d4b40e27a28cdd2c0839bbeed2f23e304e95273d4c050e281668aeb95b44a0d9f1f9dd8a
6
+ metadata.gz: d6b31263f90ec823a0ebd058eaf625aed785b0f1bd94e98309c8c2c77fa5dcb88ec1cc0f8c7e21472eb8ee8ab4d0d6795b8f7f572bbbe8936f0e6931ba38d7a8
7
+ data.tar.gz: 74a8f1374aea06350b46b2b1f56adea86e6d13d8d7c0c9e242cabf167f8238a479c574fddd30c7662c74b950c3c4f059019deabfc9a27edbb589ebe5e6394934
data/_config.yml CHANGED
@@ -14,14 +14,6 @@
14
14
  # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
15
15
  # https://learnxinyminutes.com/docs/yaml/
16
16
 
17
- # These are used to personalize your new site. If you look in the HTML files,
18
- # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
19
- # You can create any custom variable you would like, and they will be
20
- # accessible in the templates via {{ site.myvariable }}.
21
- title: jekyll-theme-centos
22
- email: areguera@centosproject.org
23
- description: "Jekyll theme for CentOS project websites."
24
-
25
17
  # site.manifestation - Set the name of the visual manifestation you are
26
18
  # providing a site for. The theme presents this name on the right side of the
27
19
  # CentOS logo. If this value is not empty, the navbar data must be related to
@@ -35,14 +27,11 @@ navbar_data_dirname: "base"
35
27
 
36
28
  # site.navbar_data_filename - Set the name of the navbar data file. For
37
29
  # example, if the navbar file is at `_data/base/navbar.yml', the value you need
38
- # to provide is `navbar', without the extension.
39
- navbar_data_filename: "navbar"
40
-
41
- # The base hostname & protocol for your site, e.g. http://example.com
42
- url: "https://centos.gitlab.io"
43
-
44
- # The subpath of your site, e.g. /blog
45
- baseurl: "/artwork/centos-web/jekyll-theme-centos"
30
+ # to provide is `navbar', without the extension. The CentOS navbar is stored in
31
+ # jekyll-theme-centos-base component, specifcally in the file
32
+ # `src/YAML/navbar_www.yml'. The CentOS navbar is the one shipped in
33
+ # jekyll-theme-centos by default.
34
+ navbar_data_filename: "navbar_www"
46
35
 
47
36
  defaults:
48
37
  - scope:
@@ -68,14 +57,18 @@ collections:
68
57
  permalink: /:categories/:title/
69
58
 
70
59
  exclude:
71
- - .npm
72
- - .bundle/
60
+ - .bundle
61
+ - .git
73
62
  - .sass-cache/
74
63
  - .jekyll-cache/
75
- - node_modules/
64
+ - gemfiles/
76
65
  - Gemfile
77
66
  - Gemfile.lock
78
- - .git
67
+ - node_modules/
68
+ - vendor/bundle/
69
+ - vendor/cache/
70
+ - vendor/gems/
71
+ - vendor/ruby/
79
72
 
80
73
  sass:
81
74
  style: compressed
@@ -0,0 +1,32 @@
1
+ ---
2
+ #
3
+ # site.data.base.footer - Control footer section.
4
+ #
5
+ social:
6
+ - name: Facebook
7
+ icon: "fa-brands fa-facebook-f"
8
+ link: "https://www.facebook.com/groups/centosproject/"
9
+ - name: Twitter
10
+ icon: "fa-brands fa-twitter"
11
+ link: "https://twitter.com/centos"
12
+ - name: Youtube
13
+ icon: "fa-brands fa-youtube"
14
+ link: "https://youtube.com/TheCentOSProject"
15
+ - name: Linkedin
16
+ icon: "fa-brands fa-linkedin"
17
+ link: "https://www.linkedin.com/groups/22405"
18
+ - name: Reddit
19
+ icon: "fa-brands fa-reddit"
20
+ link: "https://www.reddit.com/r/CentOS/"
21
+ - name: Mastodon
22
+ icon: "fa-brands fa-mastodon"
23
+ link: "https://fosstodon.org/@centos"
24
+ copyright:
25
+ author: "The CentOS Project"
26
+ legals:
27
+ - text: "Legal"
28
+ link: "/legal"
29
+ - text: "Privacy"
30
+ link: "/legal/privacy"
31
+ - text: "Site source"
32
+ link: "https://git.centos.org/centos/centos.org"
@@ -0,0 +1,20 @@
1
+ ---
2
+ #
3
+ # site.data.base.identity - Control the site branding (corporate visual
4
+ # identity) information.
5
+ #
6
+ title: "The CentOS Project"
7
+ description: >
8
+ Community-driven free software effort focused around the goal of providing a
9
+ rich base platform for open source communities to build upon.
10
+
11
+ logo:
12
+ link: ""
13
+ navbar: "assets/img/centos-whitelogo.svg"
14
+ footer: "assets/img/centos-logo.svg"
15
+ manifestation: ""
16
+ symbol:
17
+ link: ""
18
+ image: "assets/img/centos-symbol.svg"
19
+ motif:
20
+ image: "assets/img/centos-motif.png"
@@ -0,0 +1,74 @@
1
+ ---
2
+ #
3
+ # site.data.base.navbar - Control top navigation bar using relative links for
4
+ # internal resources and absolute links for external resources. Useful when you
5
+ # need the same site to be browsable on different environments (e.g., www and
6
+ # www.dev).
7
+ #
8
+ - name: "Download"
9
+ icon: "fas fa-download"
10
+ link: "/download"
11
+ menu: []
12
+ visible_on: ["navbar"]
13
+ - name: "About"
14
+ icon: "fas fa-info-circle"
15
+ link: "#"
16
+ menu:
17
+ - name: "About CentOS"
18
+ link: "/about"
19
+ - name: "Frequently Asked Questions (FAQs)"
20
+ link: "https://wiki.centos.org/FAQ"
21
+ - name: "Special Interest Groups (SIGs)"
22
+ link: "https://wiki.centos.org/SpecialInterestGroups"
23
+ - name: "CentOS Variants"
24
+ link: "/variants"
25
+ - name: "Governance"
26
+ link: "/about/governance"
27
+ visible_on: ["navbar", "footer"]
28
+ - name: "Community"
29
+ icon: "fas fa-users"
30
+ link: "#"
31
+ menu:
32
+ - name: "Contribute"
33
+ link: "https://wiki.centos.org/Contribute"
34
+ icon: "fas fa-hands-helping"
35
+ - name: "Forums"
36
+ link: "/forums/"
37
+ icon: "fas fa-comments"
38
+ - name: "Mailing Lists"
39
+ link: "https://wiki.centos.org/GettingHelp/ListInfo"
40
+ icon: "fas fa-envelope"
41
+ - name: "IRC"
42
+ link: "https://wiki.centos.org/irc"
43
+ icon: "fas fa-hashtag"
44
+ - name: "Calendar & IRC Meeting List"
45
+ link: "/community/calendar/"
46
+ icon: "fas fa-calendar-alt"
47
+ - name: "Planet"
48
+ link: "http://planet.centos.org/"
49
+ icon: "fas fa-newspaper"
50
+ - name: "Submit Bug"
51
+ link: "https://bugs.centos.org/"
52
+ icon: "fas fa-bug"
53
+ visible_on: ["navbar", "footer"]
54
+ - name: "Documentation"
55
+ icon: "fas fa-book"
56
+ link: "#"
57
+ menu:
58
+ - name: "Wiki"
59
+ link: "https://wiki.centos.org/"
60
+ - name: "Manuals"
61
+ link: "https://docs.centos.org/"
62
+ - name: "GPG Key Info"
63
+ link: "/keys"
64
+ visible_on: ["navbar", "footer"]
65
+ - name: "Help"
66
+ icon: "fas fa-life-ring"
67
+ link: "https://wiki.centos.org/Documentation?action=show&redirect=GettingHelp"
68
+ menu: []
69
+ visible_on: ["navbar"]
70
+ - name: "Search"
71
+ icon: "fas fa-search"
72
+ link: "/search"
73
+ menu: []
74
+ visible_on: []
@@ -0,0 +1,74 @@
1
+ ---
2
+ #
3
+ # site.data.navbar_absolute - Control top navigation bar using absolute links
4
+ # for both internal and external resources. Useful when you build the
5
+ # navigation bar for sites other than "www.centos.org" website and you want to
6
+ # keep references to "www.centos.org."
7
+ #
8
+ - name: "Download"
9
+ icon: "fas fa-download"
10
+ link: "https://www.centos.org/download"
11
+ menu: []
12
+ visible_on: ["navbar"]
13
+ - name: "About"
14
+ icon: "fas fa-info-circle"
15
+ link: "#"
16
+ menu:
17
+ - name: "About CentOS"
18
+ link: "https://www.centos.org/about"
19
+ - name: "Frequently Asked Questions (FAQs)"
20
+ link: "https://wiki.centos.org/FAQ"
21
+ - name: "Special Interest Groups (SIGs)"
22
+ link: "https://wiki.centos.org/SpecialInterestGroups"
23
+ - name: "CentOS Variants"
24
+ link: "https://www.centos.org/variants"
25
+ - name: "Governance"
26
+ link: "https://www.centos.org/about/governance"
27
+ visible_on: ["navbar", "footer"]
28
+ - name: "Community"
29
+ icon: "fas fa-users"
30
+ link: "#"
31
+ menu:
32
+ - name: "Contribute"
33
+ link: "https://wiki.centos.org/Contribute"
34
+ icon: "fas fa-hands-helping"
35
+ - name: "Forums"
36
+ link: "https://www.centos.org/forums/"
37
+ icon: "fas fa-comments"
38
+ - name: "Mailing Lists"
39
+ link: "https://wiki.centos.org/GettingHelp/ListInfo"
40
+ icon: "fas fa-envelope"
41
+ - name: "IRC"
42
+ link: "https://wiki.centos.org/irc"
43
+ icon: "fas fa-hashtag"
44
+ - name: "Calendar & IRC Meeting List"
45
+ link: "https://www.centos.org/community/calendar/"
46
+ icon: "fas fa-calendar-alt"
47
+ - name: "Planet"
48
+ link: "http://planet.centos.org/"
49
+ icon: "fas fa-newspaper"
50
+ - name: "Submit Bug"
51
+ link: "https://bugs.centos.org/"
52
+ icon: "fas fa-bug"
53
+ visible_on: ["navbar", "footer"]
54
+ - name: "Documentation"
55
+ icon: "fas fa-book"
56
+ link: "#"
57
+ menu:
58
+ - name: "Wiki"
59
+ link: "https://wiki.centos.org/"
60
+ - name: "Manuals"
61
+ link: "https://docs.centos.org/"
62
+ - name: "GPG Key Info"
63
+ link: "https://www.centos.org/keys"
64
+ visible_on: ["navbar", "footer"]
65
+ - name: "Help"
66
+ icon: "fas fa-life-ring"
67
+ link: "https://wiki.centos.org/Documentation?action=show&redirect=GettingHelp"
68
+ menu: []
69
+ visible_on: ["navbar"]
70
+ - name: "Search"
71
+ icon: "fas fa-search"
72
+ link: "https://www.centos.org/search"
73
+ menu: []
74
+ visible_on: []
@@ -0,0 +1,60 @@
1
+ ---
2
+ #
3
+ # site.data.base.navbar_component - Control top navigation bar using relative
4
+ # links specific to jekyll-theme-centos-base website component. Not used inside
5
+ # CentOS websites. Used in website component presentation only.
6
+ #
7
+
8
+ - name: "Layouts"
9
+ icon: "fa-solid fa-layer-group"
10
+ link: "/layouts/"
11
+ menu:
12
+ - name: "base/default.html"
13
+ link: "/layouts/default/"
14
+ visible_on: ["navbar", "footer"]
15
+
16
+ - name: "Includes"
17
+ icon: "fa-solid fa-arrows-turn-to-dots"
18
+ link: "/includes/"
19
+ menu:
20
+ - name: "base/announcements.html"
21
+ link: "/includes/announcements/"
22
+ - name: "base/breadcrumbs.html"
23
+ link: "/includes/breadcrumbs/"
24
+ - name: "base/head.html"
25
+ link: "/includes/head/"
26
+ - name: "base/header.html"
27
+ link: "/includes/header/"
28
+ - name: "base/navbar.html"
29
+ link: "/includes/navbar/"
30
+ - name: "base/toc-accordion.html"
31
+ link: "/includes/toc-accordion/"
32
+ - name: "base/toc.html"
33
+ link: "/includes/toc/"
34
+ visible_on: ["navbar", "footer"]
35
+
36
+ - name: "Sass"
37
+ icon: "fa-brands fa-sass"
38
+ link: "/sass/"
39
+ menu:
40
+ - name: "base/variables.scss"
41
+ link: "/sass/variables"
42
+ - name: "base/centos.scss"
43
+ link: "/sass/centos"
44
+ - name: "base/centos-lists.scss"
45
+ link: "/sass/centos-lists"
46
+ visible_on: ["navbar", "footer"]
47
+
48
+ - name: "Data"
49
+ icon: "fa-solid fa-file-code"
50
+ link: "/data/"
51
+ menu:
52
+ - name: "site.data.base.identity"
53
+ link: "/data/identity"
54
+ - name: "site.data.base.navbar"
55
+ link: "/data/navbar"
56
+ - name: "site.data.base.navbar_absolute"
57
+ link: "/data/navbar_absolute"
58
+ - name: "site.data.base.navbar_component"
59
+ link: "/data/navbar_component"
60
+ visible_on: ["navbar", "footer"]
@@ -0,0 +1,148 @@
1
+ ---
2
+ #
3
+ # site.data.centos.distributions - This file controls the information related
4
+ # to CentOS Project distributions.
5
+ #
6
+ - name: "CentOS Linux"
7
+ page: "centos-linux"
8
+ description: "Consistent, manageable platform that suits a wide variety of deployments. For some open source communities, it is a solid, predictable base to build upon."
9
+ releases:
10
+ 7-2009:
11
+ screenshots:
12
+ - src: "screenshot-n.png"
13
+ alt: "screenshot-n.png"
14
+ downloads:
15
+ - arch: "x86_64"
16
+ iso: "http://isoredirect.centos.org/centos/7/isos/x86_64/"
17
+ rpm: "http://mirror.centos.org/centos/7/"
18
+ cloud: ""
19
+ containers: "https://hub.docker.com/_/centos/"
20
+ vagrant: "https://app.vagrantup.com/centos/boxes/7"
21
+ - arch: "ARM64 (aarch64)"
22
+ iso: "http://isoredirect.centos.org/altarch/7/isos/aarch64/"
23
+ rpm: "http://mirror.centos.org/altarch/7/"
24
+ cloud: ""
25
+ containers: "https://hub.docker.com/_/centos/"
26
+ vagrant: ""
27
+ - arch: "IBM Power BE (ppc64)"
28
+ iso: "http://isoredirect.centos.org/altarch/7/isos/ppc64/"
29
+ rpm: "http://mirror.centos.org/altarch/7/"
30
+ cloud: ""
31
+ containers: ""
32
+ vagrant: ""
33
+ - arch: "IBM Power (ppc64le)"
34
+ iso: "http://isoredirect.centos.org/altarch/7/isos/ppc64le/"
35
+ rpm: "http://mirror.centos.org/altarch/7/"
36
+ cloud: ""
37
+ containers: "https://hub.docker.com/_/centos/"
38
+ vagrant: ""
39
+ - arch: "ARM32 (armhfp)"
40
+ iso: "http://isoredirect.centos.org/altarch/7/isos/armhfp/"
41
+ rpm: "http://mirror.centos.org/altarch/7/"
42
+ cloud: ""
43
+ containers: "https://hub.docker.com/_/centos/"
44
+ vagrant: ""
45
+ - arch: "i386"
46
+ iso: "http://isoredirect.centos.org/altarch/7/isos/i386/"
47
+ rpm: "http://mirror.centos.org/altarch/7/"
48
+ cloud: ""
49
+ containers: ""
50
+ vagrant: ""
51
+ docs:
52
+ - name: Release Notes
53
+ link: https://wiki.centos.org/action/show/Manuals/ReleaseNotes/CentOS7
54
+ - name: Release Email
55
+ link: https://lists.centos.org/pipermail/centos-announce/2020-November/035820.html
56
+ - name: Website
57
+ link: https://docs.centos.org/
58
+ eol:
59
+ - overview: ""
60
+ date: "30 June 2024"
61
+ url: ""
62
+
63
+ - name: "CentOS Stream"
64
+ page: "centos-stream"
65
+ description: "Continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux (RHEL) development, positioned as a midstream between Fedora Linux and RHEL. For anyone interested in participating and collaborating in the RHEL ecosystem, CentOS Stream is your reliable platform for innovation."
66
+ releases:
67
+ 9:
68
+ screenshots:
69
+ - src: "screenshot-n.png"
70
+ alt: "screenshot-n.png"
71
+ downloads:
72
+ - arch: "x86_64"
73
+ iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso&redirect=1&protocol=https"
74
+ rpm: "http://mirror.stream.centos.org/9-stream/"
75
+ cloud: "https://cloud.centos.org/centos/9-stream/x86_64/images"
76
+ containers: "https://quay.io/centos/centos:stream9"
77
+ vagrant: ""
78
+ - arch: "ARM64 (aarch64)"
79
+ iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/aarch64/iso/CentOS-Stream-9-latest-aarch64-dvd1.iso&redirect=1&protocol=https"
80
+ rpm: "http://mirror.stream.centos.org/9-stream/"
81
+ cloud: "https://cloud.centos.org/centos/9-stream/aarch64/images"
82
+ containers: "https://quay.io/centos/centos:stream9"
83
+ vagrant: ""
84
+ - arch: "IBM Power (ppc64le)"
85
+ iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/ppc64le/iso/CentOS-Stream-9-latest-ppc64le-dvd1.iso&redirect=1&protocol=https"
86
+ rpm: "http://mirror.stream.centos.org/9-stream/"
87
+ cloud: "https://cloud.centos.org/centos/9-stream/ppc64le/images"
88
+ containers: "https://quay.io/centos/centos:stream9"
89
+ vagrant: ""
90
+ - arch: "IBM Z (s390x)"
91
+ iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/s390x/iso/CentOS-Stream-9-latest-s390x-dvd1.iso&redirect=1&protocol=https"
92
+ rpm: "http://mirror.stream.centos.org/9-stream/"
93
+ cloud: "https://cloud.centos.org/centos/9-stream/s390x/images"
94
+ containers: "https://quay.io/centos/centos:stream9"
95
+ vagrant: ""
96
+ docs:
97
+ - name: Release Notes
98
+ link: "https://blog.centos.org/2021/12/introducing-centos-stream-9/"
99
+ - name: Release Email
100
+ link: "https://lists.centos.org/pipermail/centos-announce/2021-December/060971.html"
101
+ - name: Website
102
+ link: "https://docs.centos.org/en-US/docs/"
103
+ eol:
104
+ - overview: |
105
+ End of RHEL9 <a
106
+ href="https://access.redhat.com/support/policy/updates/errata#Full_Support_Phase">full
107
+ support</a> phase.
108
+ date: ""
109
+ url: ""
110
+ 8:
111
+ screenshots:
112
+ - src: "screenshot-n.png"
113
+ alt: "screenshot-n.png"
114
+ downloads:
115
+ - arch: "x86_64"
116
+ iso: "http://isoredirect.centos.org/centos/8-stream/isos/x86_64/"
117
+ rpm: "http://mirror.centos.org/centos/8-stream/"
118
+ cloud: "https://cloud.centos.org/centos/8-stream/x86_64/images/"
119
+ containers: "https://quay.io/centos/centos:stream8"
120
+ vagrant: ""
121
+ - arch: "ARM64 (aarch64)"
122
+ iso: "http://isoredirect.centos.org/centos/8-stream/isos/aarch64/"
123
+ rpm: "http://mirror.centos.org/centos/8-stream/"
124
+ cloud: "https://cloud.centos.org/centos/8-stream/aarch64/images/"
125
+ containers: "https://quay.io/centos/centos:stream8"
126
+ vagrant: ""
127
+ - arch: "IBM Power (ppc64le)"
128
+ iso: "http://isoredirect.centos.org/centos/8-stream/isos/ppc64le/"
129
+ rpm: "http://mirror.centos.org/centos/8-stream/"
130
+ cloud: "https://cloud.centos.org/centos/8-stream/ppc64le/images/"
131
+ containers: "https://quay.io/centos/centos:stream8"
132
+ vagrant: ""
133
+ docs:
134
+ - name: Release Notes
135
+ link: "https://wiki.centos.org/Manuals/ReleaseNotes/CentOSStream"
136
+ - name: Release Email
137
+ link: "https://lists.centos.org/pipermail/centos-announce/2019-September/023449.html"
138
+ - name: Webiste
139
+ link: "https://docs.centos.org/"
140
+ eol:
141
+ - overview: ""
142
+ date: "31 May 2024"
143
+ url: ""
144
+ convert:
145
+ - overview: "Converting from CentOS Linux 8 to CentOS Stream 8"
146
+ commands: |-
147
+ dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos
148
+ dnf distro-sync
@@ -0,0 +1,48 @@
1
+ ---
2
+ - name: "Layouts"
3
+ icon: "fa-solid fa-layer-group"
4
+ link: "/layouts/"
5
+ menu:
6
+ - name: "download/cards.html"
7
+ link: "/layouts/download/cards/"
8
+ visible_on: ["navbar", "footer"]
9
+
10
+ - name: "Includes"
11
+ icon: "fa-solid fa-arrows-turn-to-dots"
12
+ link: "/includes/"
13
+ menu:
14
+ - name: download/cards-body-convert.html
15
+ link: /includes/download/cards-body-convert/
16
+ - name: download/cards-body-doc.html
17
+ link: /includes/download/cards-body-doc/
18
+ - name: download/cards-body-eol.html
19
+ link: /includes/download/cards-body-eol/
20
+ - name: download/cards-body.html
21
+ link: /includes/download/cards-body/
22
+ - name: download/cards-body-screenshot.html
23
+ link: /includes/download/cards-body-screenshot/
24
+ - name: download/cards-footer.html
25
+ link: /includes/download/cards-footer/
26
+ - name: download/cards-header-convert.html
27
+ link: /includes/download/cards-header-convert/
28
+ - name: download/cards-header-doc.html
29
+ link: /includes/download/cards-header-doc/
30
+ - name: download/cards-header-eol.html
31
+ link: /includes/download/cards-header-eol/
32
+ - name: download/cards-header.html
33
+ link: /includes/download/cards-header/
34
+ - name: download/cards-header-screenshot.html
35
+ link: /includes/download/cards-header-screenshot/
36
+ - name: download/cards.html
37
+ link: /includes/download/cards/
38
+ visible_on: ["navbar", "footer"]
39
+
40
+ - name: "Data"
41
+ icon: "fa-solid fa-file-code"
42
+ link: "/data/"
43
+ menu:
44
+ - name: "site.data.download.navbar"
45
+ link: "/data/navbar/"
46
+ - name: "site.data.download.cards"
47
+ link: "/data/navbar/"
48
+ visible_on: ["navbar", "footer"]
@@ -0,0 +1,34 @@
1
+ ---
2
+ - name: "Layouts"
3
+ icon: "fa-solid fa-layer-group"
4
+ link: "/layouts/"
5
+ menu:
6
+ - name: "people/default"
7
+ link: "/layouts/people/default"
8
+ visible_on: ["navbar", "footer"]
9
+
10
+ - name: "Includes"
11
+ icon: "fa-solid fa-arrows-turn-to-dots"
12
+ link: "/includes/"
13
+ menu:
14
+ - name: "people/about.html"
15
+ link: "includes/people/about"
16
+ - name: "people/header.html"
17
+ link: "includes/people/header"
18
+ - name: "people/posts.html"
19
+ link: "includes/people/posts"
20
+ - name: "people/projects.html"
21
+ link: "includes/people/projects"
22
+ - name: "people/pubkeys.html"
23
+ link: "includes/people/pubkeys"
24
+ - name: "people/support.html"
25
+ link: "includes/people/support"
26
+ visible_on: ["navbar", "footer"]
27
+
28
+ - name: "Data"
29
+ icon: "fa-solid fa-file-code"
30
+ link: "/data/"
31
+ menu:
32
+ - name: "site.data.people.navbar"
33
+ link: "/data/people/navbar/"
34
+ visible_on: ["navbar", "footer"]
@@ -0,0 +1,6 @@
1
+ {% for alert in page.with_announcements -%}
2
+ <div class="alert alert-{{ alert.color | default: 'primary' }} alert-dismissible fade show shadow" role="alert">
3
+ <i class="{{ alert.icon | default: 'fa-solid fa-bullhorn' }}"></i> <strong>{{ alert.title | default: "" }}</strong> {{ alert.content | default: "" }}
4
+ <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
5
+ </div>
6
+ {% endfor -%}
@@ -0,0 +1,13 @@
1
+ <nav aria-label="breadcrumb">
2
+ <ol class="breadcrumb">
3
+ {% assign crumbs = page.url | remove:'/index.html' | split: '/' %}
4
+ <li class="breadcrumb-item"><a href="{{ site.baseurl }}/">Home</a></li>
5
+ {% for crumb in crumbs offset: 1 %}
6
+ {% if forloop.last %}
7
+ <li class="breadcrumb-item active">{{ page.title }}</li>
8
+ {% else %}
9
+ <li class="breadcrumb-item"><a href="{{ site.baseurl }}{% 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>
10
+ {% endif %}
11
+ {% endfor %}
12
+ </ol>
13
+ </nav>
@@ -0,0 +1,61 @@
1
+ {% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
2
+ <footer class="footer small bg-dark text-light mt-3">
3
+ <div class="container">
4
+ <div class="row bg-primary justify-content-between">
5
+ {% assign sections = navbar | where: "visible_on", "footer" %}
6
+ {% assign columns = sections.size %}
7
+ {% case columns %}
8
+ {% when 1 %}
9
+ {% assign column_width = 12 %}
10
+ {% when 2 %}
11
+ {% assign column_width = 6 %}
12
+ {% when 3 %}
13
+ {% assign column_width = 4 %}
14
+ {% when 4 %}
15
+ {% assign column_width = 3 %}
16
+ {% else %}
17
+ {% assign column_width = 1 %}
18
+ {% endcase %}
19
+ {% for section in sections -%}
20
+ <div class="col-sm-12 col-lg-{{ column_width }} my-3">
21
+ <h6 class="fw-bold"><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
22
+ <ul class="nav flex-column">
23
+ {% for item in section.menu -%}
24
+ <li class="nav-item"><a href="{{ site.baseurl }}{{ item.link }}" class="link-light px-0">{{ item.name }}</a></li>
25
+ {% endfor %}
26
+ </ul>
27
+ </div>
28
+ {% endfor %}
29
+ </div>
30
+
31
+ <div class="row border-top border-secondary border-5">
32
+ <div class="col-sm-12 col-lg-8">
33
+ <h4 class="fw-bold pt-3">{{ site.title }}</h4>
34
+ <p>{{ site.description }}</p>
35
+ </div>
36
+ <div class="col-sm-12 col-lg-4 pt-lg-3 d-flex justify-content-sm-start justify-content-lg-end">
37
+ <ul class="nav list-unstyled">
38
+ {% for item in site.data.base.footer.social -%}
39
+ <li class="nav-item">
40
+ <a class="btn btn-sm fs-5 link-primary" href="{{ site.baseurl }}{{ item.link }}" role="button" aria-label="{{ item.name }}" data-bs-placement="bottom" data-bs-title="{{ item.name }}"><i class="{{ item.icon }}"></i></a>
41
+ </li>
42
+ {% endfor %}
43
+ </ul>
44
+ </div>
45
+ </div>
46
+
47
+ <div class="row py-3">
48
+ <div class="col">
49
+ <span>Copyright &copy;</span>
50
+ <span id="copyright_year"></span>
51
+ <span>{{ site.data.base.footer.copyright.author }}</span>
52
+ {% for item in site.data.base.footer.copyright.legals -%}
53
+ <span class="border-start ms-2 ps-2">
54
+ <a class="link-light" href="{{ site.baseurl }}{{ item.link }}">{{ item.text }}</a>
55
+ </span>
56
+ {% endfor %}
57
+ </div>
58
+ </div>
59
+
60
+ </div>
61
+ </footer>