jekyll-theme-centos 2.2.18 → 2.2.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/base/footer.yml +32 -0
- data/_data/base/identity.yml +20 -0
- data/_data/base/navbar.yml +57 -0
- data/_data/base/navbar_absolute.yml +74 -0
- data/_data/base/navbar_www.yml +74 -0
- data/_includes/base/announcements.html +6 -0
- data/_includes/base/breadcrumbs.html +13 -0
- data/_includes/base/footer.html +61 -0
- data/_includes/base/head.html +17 -0
- data/_includes/base/header.html +17 -0
- data/_includes/base/navbar.html +32 -0
- data/_includes/base/script.html +70 -0
- data/_includes/base/toc-accordion.html +10 -0
- data/_includes/base/toc.html +99 -0
- data/_layouts/base/default.html +31 -0
- data/_sass/base/_centos.scss +80 -0
- data/_sass/base/_variables.scss +24 -0
- data/assets/css/base/stylesheet.min.scss +6 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/img/{people → base}/screenshot.svg +4 -4
- metadata +21 -32
- data/_data/download/cards.yml +0 -148
- data/_data/download/navbar.yml +0 -48
- data/_data/people/navbar.yml +0 -34
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-footer.html +0 -3
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -62
- data/_includes/people/about.html +0 -25
- data/_includes/people/header.html +0 -11
- data/_includes/people/posts.html +0 -35
- data/_includes/people/projects.html +0 -32
- data/_includes/people/pubkeys.html +0 -31
- data/_includes/people/support.html +0 -25
- data/_layouts/download/cards.html +0 -7
- data/_layouts/people/default.html +0 -20
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +0 -128
- data/assets/img/people/YourUsername.svg +0 -64
@@ -0,0 +1,80 @@
|
|
1
|
+
// --------------------------------------------------------------------------------
|
2
|
+
// Adjustments
|
3
|
+
// --------------------------------------------------------------------------------
|
4
|
+
|
5
|
+
main {
|
6
|
+
// --------------------------------------------------------------------------------
|
7
|
+
// Navbar and linked headings' correction.
|
8
|
+
//
|
9
|
+
// By default, when you access page headings from the page table of content
|
10
|
+
// (toc) links, the heading is hidden behind the navbar. This workaround
|
11
|
+
// fixes the linked headings visibility issue in the page.
|
12
|
+
// --------------------------------------------------------------------------------
|
13
|
+
h1,
|
14
|
+
h2,
|
15
|
+
h3,
|
16
|
+
h4,
|
17
|
+
h5,
|
18
|
+
h6 {
|
19
|
+
&::before {
|
20
|
+
display: block;
|
21
|
+
height: 6rem;
|
22
|
+
margin-top: -6rem;
|
23
|
+
visibility: hidden;
|
24
|
+
content: "";
|
25
|
+
}
|
26
|
+
margin-top: 3rem;
|
27
|
+
}
|
28
|
+
|
29
|
+
// --------------------------------------------------------------------------------
|
30
|
+
// Backgrounds
|
31
|
+
// --------------------------------------------------------------------------------
|
32
|
+
.bg-image {
|
33
|
+
background-image: url("../../img/centos-motif.png");
|
34
|
+
background-size: cover;
|
35
|
+
background-repeat: no-repeat;
|
36
|
+
background-position: center;
|
37
|
+
}
|
38
|
+
|
39
|
+
.bg-light-radial-gradient {
|
40
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
|
41
|
+
}
|
42
|
+
|
43
|
+
// --------------------------------------------------------------------------------
|
44
|
+
// DataTable
|
45
|
+
// --------------------------------------------------------------------------------
|
46
|
+
.dataTables_wrapper {
|
47
|
+
.dataTables_filter {
|
48
|
+
text-align: end;
|
49
|
+
}
|
50
|
+
.dataTables_length,
|
51
|
+
.dataTables_filter {
|
52
|
+
@extend .my-3;
|
53
|
+
}
|
54
|
+
.form-select,
|
55
|
+
.form-control {
|
56
|
+
width: auto;
|
57
|
+
display: inline-block;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
header {
|
63
|
+
.navbar-brand {
|
64
|
+
.manifestation {
|
65
|
+
--bs-border-opacity: 0.5;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
footer,
|
71
|
+
.accordion-body {
|
72
|
+
a {
|
73
|
+
&:link {
|
74
|
+
text-decoration: none;
|
75
|
+
}
|
76
|
+
&:hover {
|
77
|
+
text-decoration: underline;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
//
|
2
|
+
// CentOS Branding
|
3
|
+
//
|
4
|
+
$centos-color-1: #a14f8c;
|
5
|
+
$centos-color-2: #262577;
|
6
|
+
$centos-color-3: #9ccd2a;
|
7
|
+
$centos-color-4: #efa724;
|
8
|
+
//
|
9
|
+
// Bootstrap customization
|
10
|
+
//
|
11
|
+
$enable-rounded: true;
|
12
|
+
$enable-negative-margins: true;
|
13
|
+
$nav-pills-link-active-bg: $centos-color-1;
|
14
|
+
$link-color: $centos-color-1;
|
15
|
+
$primary: $centos-color-1;
|
16
|
+
$secondary: $centos-color-4;
|
17
|
+
$dark: #200735;
|
18
|
+
$dropdown-dark-bg: $dark;
|
19
|
+
$font-family-sans-serif: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
20
|
+
$font-family-monospace: "Overpass Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
21
|
+
$line-height-base: 1.75;
|
22
|
+
$headings-font-weight: 700;
|
23
|
+
$breadcrumb-divider-color: #6c757d;
|
24
|
+
$breadcrumb-divider: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='#{$breadcrumb-divider-color}'/></svg>");
|
Binary file
|
Binary file
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
@@ -114,22 +114,22 @@
|
|
114
114
|
style="font-size:23.252px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
|
115
115
|
x="-1107.4166"
|
116
116
|
y="-266.41425"
|
117
|
-
id="
|
117
|
+
id="JEKYLL_THEME_COMPONENT"><tspan
|
118
118
|
sodipodi:role="line"
|
119
119
|
id="tspan471"
|
120
120
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:23.252px;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
|
121
121
|
x="-1107.4166"
|
122
|
-
y="-266.41425">=
|
122
|
+
y="-266.41425">=JEKYLL_THEME_COMPONENT=</tspan></text>
|
123
123
|
<text
|
124
124
|
xml:space="preserve"
|
125
125
|
style="font-size:11.626px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#deddda;fill-opacity:1;stroke-width:0.264583"
|
126
126
|
x="-1107.2714"
|
127
127
|
y="-206.62192"
|
128
|
-
id="
|
128
|
+
id="JEKYLL_THEME_COMPONENT_DESCRIPTION"><tspan
|
129
129
|
sodipodi:role="line"
|
130
130
|
id="tspan471-2"
|
131
131
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11.626px;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#deddda;fill-opacity:1;stroke-width:0.264583"
|
132
132
|
x="-1107.2714"
|
133
|
-
y="-206.62192">=
|
133
|
+
y="-206.62192">=JEKYLL_THEME_COMPONENT_DESCRIPTION=</tspan></text>
|
134
134
|
</g>
|
135
135
|
</svg>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-centos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Release
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -46,42 +46,36 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- _config.yml
|
49
|
-
- _data/
|
50
|
-
- _data/
|
51
|
-
- _data/
|
52
|
-
-
|
53
|
-
-
|
54
|
-
- _includes/
|
55
|
-
- _includes/
|
56
|
-
- _includes/
|
57
|
-
- _includes/
|
58
|
-
- _includes/
|
59
|
-
- _includes/
|
60
|
-
- _includes/
|
61
|
-
- _includes/
|
62
|
-
- _includes/
|
63
|
-
- _includes/download/cards.html
|
49
|
+
- _data/base/footer.yml
|
50
|
+
- _data/base/identity.yml
|
51
|
+
- _data/base/navbar.yml
|
52
|
+
- _data/base/navbar_absolute.yml
|
53
|
+
- _data/base/navbar_www.yml
|
54
|
+
- _includes/base/announcements.html
|
55
|
+
- _includes/base/breadcrumbs.html
|
56
|
+
- _includes/base/footer.html
|
57
|
+
- _includes/base/head.html
|
58
|
+
- _includes/base/header.html
|
59
|
+
- _includes/base/navbar.html
|
60
|
+
- _includes/base/script.html
|
61
|
+
- _includes/base/toc-accordion.html
|
62
|
+
- _includes/base/toc.html
|
64
63
|
- _includes/home/distributions.html
|
65
64
|
- _includes/home/header.html
|
66
65
|
- _includes/home/news-and-events.html
|
67
66
|
- _includes/home/planet.html
|
68
67
|
- _includes/home/sponsors.html
|
69
68
|
- _includes/hr.html
|
70
|
-
- _includes/people/about.html
|
71
|
-
- _includes/people/header.html
|
72
|
-
- _includes/people/posts.html
|
73
|
-
- _includes/people/projects.html
|
74
|
-
- _includes/people/pubkeys.html
|
75
|
-
- _includes/people/support.html
|
76
69
|
- _includes/post-nav-explorer.html
|
77
70
|
- _includes/post-nav.html
|
71
|
+
- _layouts/base/default.html
|
78
72
|
- _layouts/blog.html
|
79
|
-
- _layouts/download/cards.html
|
80
73
|
- _layouts/home.html
|
81
|
-
- _layouts/people/default.html
|
82
74
|
- _layouts/post.html
|
83
75
|
- _layouts/search.html
|
84
76
|
- _layouts/sponsors.html
|
77
|
+
- _sass/base/_centos.scss
|
78
|
+
- _sass/base/_variables.scss
|
85
79
|
- _sass/bootstrap/_accordion.scss
|
86
80
|
- _sass/bootstrap/_alert.scss
|
87
81
|
- _sass/bootstrap/_badge.scss
|
@@ -174,6 +168,7 @@ files:
|
|
174
168
|
- _sass/bootstrap/mixins/_visually-hidden.scss
|
175
169
|
- _sass/bootstrap/utilities/_api.scss
|
176
170
|
- _sass/bootstrap/vendor/_rfs.scss
|
171
|
+
- assets/css/base/stylesheet.min.scss
|
177
172
|
- assets/css/dataTables.bootstrap5.css
|
178
173
|
- assets/css/dataTables.bootstrap5.min.css
|
179
174
|
- assets/icons/android-chrome-192.png
|
@@ -185,6 +180,7 @@ files:
|
|
185
180
|
- assets/icons/favicon.svg
|
186
181
|
- assets/img/anaconda-symbolic.svg
|
187
182
|
- assets/img/anaconda.svg
|
183
|
+
- assets/img/base/screenshot.svg
|
188
184
|
- assets/img/centos-dynamicmsg-logo.svg
|
189
185
|
- assets/img/centos-dynamicmsg-type.svg
|
190
186
|
- assets/img/centos-dynamicmsg-whitelogo.svg
|
@@ -202,13 +198,6 @@ files:
|
|
202
198
|
- assets/img/centos-vertical-logo.svg
|
203
199
|
- assets/img/centos-vertical-message-logo.svg
|
204
200
|
- assets/img/centos-whitelogo.svg
|
205
|
-
- assets/img/download/centos-linux-7-2009-screenshot-n.png
|
206
|
-
- assets/img/download/centos-stream-8-screenshot-n.png
|
207
|
-
- assets/img/download/centos-stream-9-screenshot-n.png
|
208
|
-
- assets/img/download/distribution-release-screenshot-n.png
|
209
|
-
- assets/img/download/distribution-release-screenshot-n.svg
|
210
|
-
- assets/img/people/YourUsername.svg
|
211
|
-
- assets/img/people/screenshot.svg
|
212
201
|
- assets/img/sort_asc.png
|
213
202
|
- assets/img/sort_asc_disabled.png
|
214
203
|
- assets/img/sort_both.png
|
data/_data/download/cards.yml
DELETED
@@ -1,148 +0,0 @@
|
|
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
|
data/_data/download/navbar.yml
DELETED
@@ -1,48 +0,0 @@
|
|
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"]
|
data/_data/people/navbar.yml
DELETED
@@ -1,34 +0,0 @@
|
|
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"]
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>
|
3
|
-
{% if row.commands != "" %}
|
4
|
-
<div class="input-group">
|
5
|
-
<textarea id="{{ card.page }}-{{ release[0] }}-key-{{ forloop.index }}" class="form-control font-monospace" placeholder="{{ row.overview }}" aria-label="{{ row.overview }}" aria-describedby="{{ card.page }}-button-{{ forloop.index }}" readonly rows="2">{{ row.commands }}</textarea>
|
6
|
-
<button id="{{ card.page }}-{{ release[0] }}-button-{{ forloop.index }}" class="btn btn-clipboard" type="button" aria-label="Copy to clipboard" data-clipboard-target="#{{ card.page }}-{{ release[0] }}-key-{{ forloop.index }}" data-bs-toggle="tooltip" data-bs-title="Copy to clipboard"><i class="fa-solid fa-clipboard"></i></button>
|
7
|
-
</div>
|
8
|
-
{% endif %}
|
9
|
-
</td>
|
10
|
-
</tr>
|
@@ -1,9 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>
|
3
|
-
{% for rows in release %}
|
4
|
-
{% for row in rows.docs %}
|
5
|
-
<a class="btn btn-sm btn-primary{% if row.name == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.link }}"{% endif %} role="button"><i class="fa-solid fa-file"></i> {{ row.name }}</a>
|
6
|
-
{% endfor %}
|
7
|
-
{% endfor %}
|
8
|
-
</td>
|
9
|
-
</tr>
|
@@ -1,16 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>
|
3
|
-
{% if row.overview != "" %}
|
4
|
-
{{ row.overview }}
|
5
|
-
{% endif %}
|
6
|
-
|
7
|
-
{% if row.date != "" %}
|
8
|
-
{{ row.date | date_to_string: "ordinal", "US" }}
|
9
|
-
{% endif %}
|
10
|
-
|
11
|
-
{% if row.url != "" %}
|
12
|
-
<a href="{{ row.url }}"><i class="fas fa-exclamation-circle"></i> Know more</a>
|
13
|
-
{% else %}
|
14
|
-
{% endif %}
|
15
|
-
</td>
|
16
|
-
</tr>
|
@@ -1,26 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td class="p-0">
|
3
|
-
<div id="carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" class="carousel carousel-dark slide" data-bs-ride="true">
|
4
|
-
<div class="carousel-indicators">
|
5
|
-
{% for row in rows.screenshots %}
|
6
|
-
<button type="button" data-bs-target="#carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" data-bs-slide-to="{{ forloop.index0 }}" {% if forloop.first %}class="active" {% endif %}aria-current="true" aria-label="Screenshot {{ forloop.index }}"></button>
|
7
|
-
{% endfor %}
|
8
|
-
</div>
|
9
|
-
<div class="carousel-inner">
|
10
|
-
{% for row in rows.screenshots %}
|
11
|
-
<div class="carousel-item{% if forloop.first %} active{% endif %}">
|
12
|
-
<img class="d-block w-100" src="{{ site.baseurl }}/assets/img/download/{{ card.page }}-{{ release[0] }}-{{ row.src }}" alt="{{ row.alt }}" />
|
13
|
-
</div>
|
14
|
-
{% endfor %}
|
15
|
-
</div>
|
16
|
-
<button class="carousel-control-prev" type="button" data-bs-target="#carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" data-bs-slide="prev">
|
17
|
-
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
18
|
-
<span class="visually-hidden">Previous</span>
|
19
|
-
</button>
|
20
|
-
<button class="carousel-control-next" type="button" data-bs-target="#carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" data-bs-slide="next">
|
21
|
-
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
22
|
-
<span class="visually-hidden">Next</span>
|
23
|
-
</button>
|
24
|
-
</div>
|
25
|
-
</td>
|
26
|
-
</tr>
|
@@ -1,8 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>{{ row.arch }}</td>
|
3
|
-
<td><a class="btn btn-sm btn-primary{% if row.iso] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.iso }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
4
|
-
<td><a class="btn btn-sm btn-primary{% if row.rpm] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.rpm }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
5
|
-
<td><a class="btn btn-sm btn-primary{% if row.cloud] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.cloud }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
6
|
-
<td><a class="btn btn-sm btn-primary{% if row.containers] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.containers }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
7
|
-
<td><a class="btn btn-sm btn-primary{% if row.vagrant] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.vagrant }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
8
|
-
</tr>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<div class="table-responsive">
|
2
|
-
<table class="table mb-0">
|
3
|
-
<thead class="table-light">
|
4
|
-
<tr>
|
5
|
-
<th scope="col"><i class="fa-solid fa-microchip"></i> Architectures</th>
|
6
|
-
<th scope="col">ISOs</th>
|
7
|
-
<th scope="col">RPMs</th>
|
8
|
-
<th scope="col">Cloud</th>
|
9
|
-
<th scope="col">Containers</th>
|
10
|
-
<th scope="col">Vagrant</th>
|
11
|
-
</tr>
|
12
|
-
</thead>
|
13
|
-
<tbody>
|