jekyll-theme-centos 2.35.0 → 2.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/download/navbar.yml +3 -3
- data/_includes/base/image.html +7 -1
- data/_includes/download/cards-body-mirrors.html +5 -5
- data/_includes/download/cards.html +34 -5
- data/_sass/base/_customization.scss +4 -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/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16dc0fbbedd90591c6a034714c555217fd1dad3d27c103c95d1e032e14fb344e
|
4
|
+
data.tar.gz: 560ff4c4b5fcff6de8a2a04376e8931a569a24d350319e9cf50174ec0228fdbf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 637412dff8a504b8d59088296dedb2c8b7ca78430743e3df26d5dc355f58536e7d68c14f76cd01591b59fc3d7d637f9a1b0f95e4d61c19a496d43db00f2ab018
|
7
|
+
data.tar.gz: 7703b28a1041f2c913808b8525451a65c896411a47a055767753af0b6599116e2ffbb142bff6d0840c185f21fb69d2f44d184c6abfef812f4c480950bc5eaacc
|
data/_data/download/navbar.yml
CHANGED
data/_includes/base/image.html
CHANGED
@@ -1,4 +1,10 @@
|
|
1
|
-
|
1
|
+
{% if include.alt %}
|
2
|
+
{% assign figid = include.alt %}
|
3
|
+
{% else %}
|
4
|
+
{% assign figid = include.file %}
|
5
|
+
{% endif %}
|
6
|
+
|
7
|
+
<figure id="{{ figid | downcase | replace: ' ', '-' | replace: '/', '-' | remove: '.' }}" class="figure">
|
2
8
|
{% if include.url %}
|
3
9
|
<a href="{{ include.url }}">
|
4
10
|
<img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ include.file }}" class="figure-img img-fluid rounded{% if include.extraclasses %} {{ include.extraclasses }}{% endif %}" alt="{{ include.alt }}"/>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<tr>
|
2
2
|
<td>{{ row.architecture }}</td>
|
3
|
-
<td>{% if row.iso] != "" %}<a class="btn btn-primary" href="{{ row.iso }}" role="button"><i class="fa-solid fa-up-right-from-square"></i>
|
4
|
-
<td>{% if row.rpm] != "" %}<a class="btn btn-primary" href="{{ row.rpm }}" role="button"><i class="fa-solid fa-up-right-from-square"></i>
|
5
|
-
<td>{% if row.cloud] != "" %}<a class="btn btn-primary" href="{{ row.cloud }}" role="button"><i class="fa-solid fa-up-right-from-square"></i>
|
6
|
-
<td>{% if row.containers] != "" %}<a class="btn btn-primary" href="{{ row.containers }}" role="button"><i class="fa-solid fa-up-right-from-square"></i>
|
7
|
-
<td>{% if row.vagrant] != "" %}<a class="btn btn-primary" href="{{ row.vagrant }}" role="button"><i class="fa-solid fa-up-right-from-square"></i>
|
3
|
+
<td>{% if row.iso] != "" %}<a class="btn btn-primary" href="{{ row.iso }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Mirrors</a>{% endif %}</td>
|
4
|
+
<td>{% if row.rpm] != "" %}<a class="btn btn-primary" href="{{ row.rpm }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Mirrors</a>{% endif %}</td>
|
5
|
+
<td>{% if row.cloud] != "" %}<a class="btn btn-primary" href="{{ row.cloud }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Images</a>{% endif %}</td>
|
6
|
+
<td>{% if row.containers] != "" %}<a class="btn btn-primary" href="{{ row.containers }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Images</a>{% endif %}</td>
|
7
|
+
<td>{% if row.vagrant] != "" %}<a class="btn btn-primary" href="{{ row.vagrant }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Boxes</a>{% endif %}</td>
|
8
8
|
</tr>
|
@@ -1,20 +1,38 @@
|
|
1
|
+
{% if include.id and include.id != "" %}
|
2
|
+
{% assign card_id = include.id %}
|
3
|
+
{% else %}
|
4
|
+
{% assign card_id = "DownloadsCard-1" %}
|
5
|
+
{% endif %}
|
6
|
+
|
7
|
+
{% if include.data and include.data != "" %}
|
8
|
+
{% assign cards = include.data %}
|
9
|
+
{% else %}
|
1
10
|
{% assign cards = site.data.download.cards %}
|
11
|
+
{% endif %}
|
2
12
|
|
3
13
|
{% for card in cards %}
|
4
14
|
<div class="mb-5">
|
5
|
-
|
15
|
+
{% if include.with_title %}
|
16
|
+
<div class="h2">{{ card.name }}</div>
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
{% if include.with_description %}
|
6
20
|
<p>{{ card.description }}</p>
|
7
|
-
|
21
|
+
{% endif %}
|
22
|
+
|
23
|
+
{% if include.with_releases %}
|
24
|
+
<ul class="nav nav-pills my-3 justify-content-start" id="{{ card_id }}-pills-{{ card.page }}-tab" role="tablist">
|
8
25
|
{% for release in card.releases %}
|
9
26
|
<li class="nav-item" role="presentation">
|
10
|
-
<button class="nav-link{% if forloop.first %} active{% endif %} fw-bold" id="pills-{{ card.page }}-release-{{ forloop.index }}-tab" data-bs-toggle="tab" data-bs-target="#pills-{{ card.page }}-release-{{ forloop.index }}" type="button" role="tab" aria-controls="pills-{{ forloop.index }}-release-{{ release[0] }}-tab" {% if forloop.first %} aria-selected="true" {% endif %}>{{ release[0] }}</button>
|
27
|
+
<button class="nav-link{% if forloop.first %} active{% endif %} fw-bold" id="{{ card_id }}-pills-{{ card.page }}-release-{{ forloop.index }}-tab" data-bs-toggle="tab" data-bs-target="#{{ card_id }}-pills-{{ card.page }}-release-{{ forloop.index }}" type="button" role="tab" aria-controls="{{ card_id }}-pills-{{ forloop.index }}-release-{{ release[0] }}-tab" {% if forloop.first %} aria-selected="true" {% endif %}>{{ release[0] }}</button>
|
11
28
|
</li>
|
12
29
|
{% endfor %}
|
13
30
|
</ul>
|
14
31
|
|
15
|
-
<div class="tab-content mb-3" id="pills-{{ card.page }}-tabContent">
|
32
|
+
<div class="tab-content mb-3" id="{{ card_id }}-pills-{{ card.page }}-tabContent">
|
16
33
|
{% for release in card.releases %}
|
17
|
-
<div class="tab-pane fade {% if forloop.first %} show active{% endif %}" id="pills-{{ card.page }}-release-{{ forloop.index }}" role="tabpanel" aria-labelledby="pills-{{ card.page }}-release-{{ forloop.index }}-tab" tabindex="{{ forloop.index }}">
|
34
|
+
<div class="tab-pane fade {% if forloop.first %} show active{% endif %}" id="{{ card_id }}-pills-{{ card.page }}-release-{{ forloop.index }}" role="tabpanel" aria-labelledby="pills-{{ card.page }}-release-{{ forloop.index }}-tab" tabindex="{{ forloop.index }}">
|
35
|
+
{% if include.with_screenshots %}
|
18
36
|
{% for rows in release %}
|
19
37
|
{% if rows.screenshots.size > 0 %}
|
20
38
|
{% include download/cards-header-screenshots.html %}
|
@@ -22,7 +40,9 @@
|
|
22
40
|
{% include download/cards-footer.html %}
|
23
41
|
{% endif %}
|
24
42
|
{% endfor %}
|
43
|
+
{% endif %}
|
25
44
|
|
45
|
+
{% if include.with_mirrors %}
|
26
46
|
{% include download/cards-header-mirrors.html %}
|
27
47
|
{% for rows in release %}
|
28
48
|
{% for row in rows.mirrors %}
|
@@ -30,11 +50,15 @@
|
|
30
50
|
{% endfor %}
|
31
51
|
{% endfor %}
|
32
52
|
{% include download/cards-footer.html %}
|
53
|
+
{% endif %}
|
33
54
|
|
55
|
+
{% if include.with_documentation %}
|
34
56
|
{% include download/cards-header-documentation.html %}
|
35
57
|
{% include download/cards-body-documentation.html %}
|
36
58
|
{% include download/cards-footer.html %}
|
59
|
+
{% endif %}
|
37
60
|
|
61
|
+
{% if include.with_eol %}
|
38
62
|
{% include download/cards-header-eol.html %}
|
39
63
|
{% for rows in release %}
|
40
64
|
{% for row in rows.eol %}
|
@@ -42,7 +66,9 @@
|
|
42
66
|
{% endfor %}
|
43
67
|
{% endfor %}
|
44
68
|
{% include download/cards-footer.html %}
|
69
|
+
{% endif %}
|
45
70
|
|
71
|
+
{% if include.with_commands %}
|
46
72
|
{% for rows in release %}
|
47
73
|
{% for row in rows.commands %}
|
48
74
|
{% include download/cards-header-commands.html %}
|
@@ -50,8 +76,11 @@
|
|
50
76
|
{% include download/cards-footer.html %}
|
51
77
|
{% endfor %}
|
52
78
|
{% endfor %}
|
79
|
+
{% endif %}
|
53
80
|
</div>
|
54
81
|
{% endfor %}
|
55
82
|
</div>
|
83
|
+
{% endif %}
|
84
|
+
|
56
85
|
</div>
|
57
86
|
{% endfor %}
|
@@ -41,6 +41,10 @@ main {
|
|
41
41
|
scroll-margin-bottom: 100px;
|
42
42
|
margin-top: 3rem;
|
43
43
|
}
|
44
|
+
.content > figure {
|
45
|
+
scroll-margin-top: 80px;
|
46
|
+
scroll-margin-bottom: 100px;
|
47
|
+
}
|
44
48
|
|
45
49
|
.content {
|
46
50
|
// --------------------------------------------------------------------------------
|
Binary file
|
Binary file
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
@@ -0,0 +1,421 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
width="1023.9999"
|
6
|
+
height="1080"
|
7
|
+
viewBox="0 0 270.93334 285.74999"
|
8
|
+
version="1.1"
|
9
|
+
id="svg1"
|
10
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
11
|
+
sodipodi:docname="downloads.svg"
|
12
|
+
xml:space="preserve"
|
13
|
+
inkscape:export-filename="fig-the-downloads-cards-presentation-template.png"
|
14
|
+
inkscape:export-xdpi="96"
|
15
|
+
inkscape:export-ydpi="96"
|
16
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
17
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
19
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
20
|
+
id="namedview1"
|
21
|
+
pagecolor="#ffffff"
|
22
|
+
bordercolor="#666666"
|
23
|
+
borderopacity="1.0"
|
24
|
+
inkscape:showpageshadow="2"
|
25
|
+
inkscape:pageopacity="0.0"
|
26
|
+
inkscape:pagecheckerboard="0"
|
27
|
+
inkscape:deskcolor="#d1d1d1"
|
28
|
+
inkscape:document-units="px"
|
29
|
+
inkscape:zoom="1.0787037"
|
30
|
+
inkscape:cx="251.69099"
|
31
|
+
inkscape:cy="559.46781"
|
32
|
+
inkscape:window-width="3440"
|
33
|
+
inkscape:window-height="1371"
|
34
|
+
inkscape:window-x="0"
|
35
|
+
inkscape:window-y="0"
|
36
|
+
inkscape:window-maximized="1"
|
37
|
+
inkscape:current-layer="layer1"
|
38
|
+
showgrid="false"
|
39
|
+
showguides="true" /><defs
|
40
|
+
id="defs1" /><g
|
41
|
+
inkscape:label="Layer 1"
|
42
|
+
inkscape:groupmode="layer"
|
43
|
+
id="layer1"
|
44
|
+
transform="translate(69.792114,16.438913)"><rect
|
45
|
+
style="fill:#f6f5f4;stroke-width:0.793751;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
46
|
+
id="rect2-6"
|
47
|
+
width="270.93332"
|
48
|
+
height="285.75"
|
49
|
+
x="-69.792114"
|
50
|
+
y="-16.438913"
|
51
|
+
inkscape:export-filename="fig-the-downloads-card.png"
|
52
|
+
inkscape:export-xdpi="96"
|
53
|
+
inkscape:export-ydpi="96" /><path
|
54
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
55
|
+
d="m 28.530337,-72.323206 c 11.79463,0 0.0813,20.018618 11.83957,20.203206 -11.65422,-0.284725 -0.0221,20.203202 -11.83957,20.203202"
|
56
|
+
id="path25"
|
57
|
+
sodipodi:nodetypes="ccc" /><path
|
58
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
59
|
+
d="m 118.80118,-8.104564 c 11.65563,0 0.0803,5.6351265 11.70004,5.687087 -11.51687,-0.080148 -0.0218,5.6870863 -11.70004,5.6870863"
|
60
|
+
id="path25-0"
|
61
|
+
sodipodi:nodetypes="ccc" /><path
|
62
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
63
|
+
d="m 118.80118,8.1653096 c 11.65563,0 0.0803,15.0167374 11.70004,15.1552024 -11.51687,-0.213587 -0.0218,15.1552 -11.70004,15.1552"
|
64
|
+
id="path26"
|
65
|
+
sodipodi:nodetypes="ccc" /><path
|
66
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.793755;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
67
|
+
d="m 118.60015,43.371441 c 35.05732,0 0.24152,85.726479 35.19089,86.719319 -34.63996,-1.53149 -0.0656,130.61497 -35.19089,130.61497"
|
68
|
+
id="path27"
|
69
|
+
sodipodi:nodetypes="ccc" /><path
|
70
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
71
|
+
d="m 118.80118,66.933786 c 11.65563,0 0.0803,35.438544 11.70004,35.765314 -11.51687,-0.50405 -0.0218,35.76531 -11.70004,35.76531"
|
72
|
+
id="path28"
|
73
|
+
sodipodi:nodetypes="ccc" /><g
|
74
|
+
id="g45"
|
75
|
+
transform="translate(-0.32286099,-0.02587016)"><g
|
76
|
+
id="g25"
|
77
|
+
transform="translate(-3.1482236,-1.5755854)"><rect
|
78
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
79
|
+
id="rect9"
|
80
|
+
width="174.625"
|
81
|
+
height="31.104063"
|
82
|
+
x="-58.70639"
|
83
|
+
y="9.3440647" /><text
|
84
|
+
xml:space="preserve"
|
85
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
86
|
+
x="28.699244"
|
87
|
+
y="26.816938"
|
88
|
+
id="text8-3-3"
|
89
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
90
|
+
inkscape:export-xdpi="96"
|
91
|
+
inkscape:export-ydpi="96"><tspan
|
92
|
+
sodipodi:role="line"
|
93
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
94
|
+
x="28.699244"
|
95
|
+
y="26.816938"
|
96
|
+
id="tspan17">DESCRIPTION</tspan></text></g><g
|
97
|
+
id="g24"
|
98
|
+
transform="translate(-3.1482236,-1.7950136)"><rect
|
99
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
100
|
+
id="rect11"
|
101
|
+
width="174.625"
|
102
|
+
height="12.167871"
|
103
|
+
x="-58.70639"
|
104
|
+
y="-6.7063994" /><text
|
105
|
+
xml:space="preserve"
|
106
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
107
|
+
x="28.620926"
|
108
|
+
y="1.2983783"
|
109
|
+
id="text9"
|
110
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
111
|
+
inkscape:export-xdpi="96"
|
112
|
+
inkscape:export-ydpi="96"><tspan
|
113
|
+
sodipodi:role="line"
|
114
|
+
id="tspan9"
|
115
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
116
|
+
x="28.620926"
|
117
|
+
y="1.2983783">TITLE</tspan></text></g><g
|
118
|
+
id="g20"
|
119
|
+
transform="translate(-3.1482236,-44.893986)"><rect
|
120
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
121
|
+
id="rect4"
|
122
|
+
width="174.625"
|
123
|
+
height="26.458334"
|
124
|
+
x="-58.70639"
|
125
|
+
y="218.4176" /><text
|
126
|
+
xml:space="preserve"
|
127
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
128
|
+
x="28.606112"
|
129
|
+
y="233.56761"
|
130
|
+
id="text4"
|
131
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
132
|
+
inkscape:export-xdpi="96"
|
133
|
+
inkscape:export-ydpi="96"><tspan
|
134
|
+
sodipodi:role="line"
|
135
|
+
id="tspan4"
|
136
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
137
|
+
x="28.606112"
|
138
|
+
y="233.56761">RELEASE DOCUMENTATION</tspan></text></g><g
|
139
|
+
id="g18"
|
140
|
+
transform="translate(-3.1482236,0.19791827)"><rect
|
141
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
142
|
+
id="rect2"
|
143
|
+
width="174.625"
|
144
|
+
height="72.324287"
|
145
|
+
x="-58.70639"
|
146
|
+
y="66.339035" /><text
|
147
|
+
xml:space="preserve"
|
148
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
149
|
+
x="28.489693"
|
150
|
+
y="104.42202"
|
151
|
+
id="text1-0"
|
152
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
153
|
+
inkscape:export-xdpi="96"
|
154
|
+
inkscape:export-ydpi="96"><tspan
|
155
|
+
sodipodi:role="line"
|
156
|
+
id="tspan1-6"
|
157
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
158
|
+
x="28.489695"
|
159
|
+
y="104.42202">RELEASE SCREENSHOTS</tspan></text><g
|
160
|
+
id="g16"
|
161
|
+
transform="translate(7.7695953)"><path
|
162
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
163
|
+
d="M 15.546875,132.65907 H 26.126152"
|
164
|
+
id="path8" /><path
|
165
|
+
style="fill:#deddda;fill-opacity:1;stroke:#c0bfbc;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
166
|
+
d="M 2.5173556,132.65907 H 13.096632"
|
167
|
+
id="path9" /><path
|
168
|
+
style="fill:#deddda;fill-opacity:1;stroke:#c0bfbc;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
169
|
+
d="M 28.576396,132.65907 H 39.155673"
|
170
|
+
id="path10" /></g><path
|
171
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
172
|
+
d="m -48.421618,98.095817 -5.58562,4.405363 5.586048,4.40536"
|
173
|
+
id="path11"
|
174
|
+
sodipodi:nodetypes="ccc" /><path
|
175
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
176
|
+
d="m 104.82769,98.095817 5.58562,4.405363 -5.58605,4.40536"
|
177
|
+
id="path16"
|
178
|
+
sodipodi:nodetypes="ccc" /></g><g
|
179
|
+
id="g34"
|
180
|
+
transform="translate(-3.1482236,-0.9882587)"><rect
|
181
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
182
|
+
id="rect27"
|
183
|
+
width="174.625"
|
184
|
+
height="19.460369"
|
185
|
+
x="-58.70639"
|
186
|
+
y="43.962822" /><text
|
187
|
+
xml:space="preserve"
|
188
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
189
|
+
x="28.498161"
|
190
|
+
y="55.227154"
|
191
|
+
id="text27"
|
192
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
193
|
+
inkscape:export-xdpi="96"
|
194
|
+
inkscape:export-ydpi="96"><tspan
|
195
|
+
sodipodi:role="line"
|
196
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
197
|
+
x="28.498161"
|
198
|
+
y="55.227154"
|
199
|
+
id="tspan27">RELEASE SELECTOR</tspan></text><rect
|
200
|
+
style="fill:#9a9996;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
201
|
+
id="rect1"
|
202
|
+
width="9.8991947"
|
203
|
+
height="8.4148073"
|
204
|
+
x="-53.569221"
|
205
|
+
y="49.403469" /><text
|
206
|
+
xml:space="preserve"
|
207
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke-width:0.264582"
|
208
|
+
x="-48.427006"
|
209
|
+
y="55.092537"
|
210
|
+
id="text27-5"
|
211
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
212
|
+
inkscape:export-xdpi="96"
|
213
|
+
inkscape:export-ydpi="96"><tspan
|
214
|
+
sodipodi:role="line"
|
215
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke-width:0.264582"
|
216
|
+
x="-48.427006"
|
217
|
+
y="55.092537"
|
218
|
+
id="tspan27-3">v3</tspan></text><rect
|
219
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
220
|
+
id="rect7"
|
221
|
+
width="9.8991947"
|
222
|
+
height="8.4148073"
|
223
|
+
x="-41.372478"
|
224
|
+
y="49.403469" /><rect
|
225
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
226
|
+
id="rect8"
|
227
|
+
width="9.8991947"
|
228
|
+
height="8.4148073"
|
229
|
+
x="-29.175737"
|
230
|
+
y="49.403469" /><text
|
231
|
+
xml:space="preserve"
|
232
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
233
|
+
x="-36.34668"
|
234
|
+
y="55.117939"
|
235
|
+
id="text1"
|
236
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
237
|
+
inkscape:export-xdpi="96"
|
238
|
+
inkscape:export-ydpi="96"><tspan
|
239
|
+
sodipodi:role="line"
|
240
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
241
|
+
x="-36.34668"
|
242
|
+
y="55.117939"
|
243
|
+
id="tspan1">v2</tspan></text><text
|
244
|
+
xml:space="preserve"
|
245
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
246
|
+
x="-24.033524"
|
247
|
+
y="55.092537"
|
248
|
+
id="text2"
|
249
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
250
|
+
inkscape:export-xdpi="96"
|
251
|
+
inkscape:export-ydpi="96"><tspan
|
252
|
+
sodipodi:role="line"
|
253
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
254
|
+
x="-24.033524"
|
255
|
+
y="55.092537"
|
256
|
+
id="tspan2">v1</tspan></text></g><g
|
257
|
+
id="g31"
|
258
|
+
transform="translate(-3.1482236,-14.333631)"><rect
|
259
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
260
|
+
id="rect31"
|
261
|
+
width="174.625"
|
262
|
+
height="26.458334"
|
263
|
+
x="-58.70639"
|
264
|
+
y="218.4176" /><text
|
265
|
+
xml:space="preserve"
|
266
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
267
|
+
x="28.527792"
|
268
|
+
y="233.56761"
|
269
|
+
id="text31"
|
270
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
271
|
+
inkscape:export-xdpi="96"
|
272
|
+
inkscape:export-ydpi="96"><tspan
|
273
|
+
sodipodi:role="line"
|
274
|
+
id="tspan31"
|
275
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
276
|
+
x="28.527792"
|
277
|
+
y="233.56761">RELEASE END OF LIFE</tspan></text></g><g
|
278
|
+
id="g32"
|
279
|
+
transform="translate(-3.1482236,16.226724)"><rect
|
280
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
281
|
+
id="rect32"
|
282
|
+
width="174.625"
|
283
|
+
height="26.458334"
|
284
|
+
x="-58.70639"
|
285
|
+
y="218.4176" /><text
|
286
|
+
xml:space="preserve"
|
287
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
288
|
+
x="28.489695"
|
289
|
+
y="233.56761"
|
290
|
+
id="text32"
|
291
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
292
|
+
inkscape:export-xdpi="96"
|
293
|
+
inkscape:export-ydpi="96"><tspan
|
294
|
+
sodipodi:role="line"
|
295
|
+
id="tspan32"
|
296
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
297
|
+
x="28.489695"
|
298
|
+
y="233.56761">RELEASE COMMANDS</tspan></text></g><g
|
299
|
+
id="g33"
|
300
|
+
transform="translate(-3.1482236,-75.454341)"><rect
|
301
|
+
style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
302
|
+
id="rect33"
|
303
|
+
width="174.625"
|
304
|
+
height="26.458334"
|
305
|
+
x="-58.70639"
|
306
|
+
y="218.4176" /><text
|
307
|
+
xml:space="preserve"
|
308
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
309
|
+
x="28.489695"
|
310
|
+
y="233.56761"
|
311
|
+
id="text33"
|
312
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
313
|
+
inkscape:export-xdpi="96"
|
314
|
+
inkscape:export-ydpi="96"><tspan
|
315
|
+
sodipodi:role="line"
|
316
|
+
id="tspan33"
|
317
|
+
style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
|
318
|
+
x="28.489695"
|
319
|
+
y="233.56761">RELEASE MIRRORS</tspan></text></g></g><path
|
320
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
321
|
+
d="m 118.80118,143.36014 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
|
322
|
+
id="path35"
|
323
|
+
sodipodi:nodetypes="ccc" /><path
|
324
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
325
|
+
d="m 118.80118,173.92049 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
|
326
|
+
id="path36"
|
327
|
+
sodipodi:nodetypes="ccc" /><path
|
328
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
329
|
+
d="m 118.80118,204.48085 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
|
330
|
+
id="path37"
|
331
|
+
sodipodi:nodetypes="ccc" /><path
|
332
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
333
|
+
d="m 118.80118,235.0412 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
|
334
|
+
id="path38"
|
335
|
+
sodipodi:nodetypes="ccc" /><text
|
336
|
+
xml:space="preserve"
|
337
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
338
|
+
x="135.76636"
|
339
|
+
y="-0.9485119"
|
340
|
+
id="text38"><tspan
|
341
|
+
sodipodi:role="line"
|
342
|
+
id="tspan38"
|
343
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
344
|
+
x="135.76636"
|
345
|
+
y="-0.9485119">with_title</tspan></text><text
|
346
|
+
xml:space="preserve"
|
347
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
348
|
+
x="135.76636"
|
349
|
+
y="24.480444"
|
350
|
+
id="text39"><tspan
|
351
|
+
sodipodi:role="line"
|
352
|
+
id="tspan39"
|
353
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
354
|
+
x="135.76636"
|
355
|
+
y="24.480444">with_description</tspan></text><text
|
356
|
+
xml:space="preserve"
|
357
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
358
|
+
x="157.99487"
|
359
|
+
y="130.97171"
|
360
|
+
id="text40"><tspan
|
361
|
+
sodipodi:role="line"
|
362
|
+
id="tspan40"
|
363
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
364
|
+
x="157.99487"
|
365
|
+
y="130.97171">with_releases</tspan></text><text
|
366
|
+
xml:space="preserve"
|
367
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
368
|
+
x="144.52261"
|
369
|
+
y="104.16806"
|
370
|
+
id="text41"><tspan
|
371
|
+
sodipodi:role="line"
|
372
|
+
id="tspan41"
|
373
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
374
|
+
x="144.52261"
|
375
|
+
y="104.16806">with_screenshots</tspan></text><text
|
376
|
+
xml:space="preserve"
|
377
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
378
|
+
x="144.52261"
|
379
|
+
y="157.66139"
|
380
|
+
id="text42"><tspan
|
381
|
+
sodipodi:role="line"
|
382
|
+
id="tspan42"
|
383
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
384
|
+
x="144.52261"
|
385
|
+
y="157.66139">with_mirrors</tspan></text><text
|
386
|
+
xml:space="preserve"
|
387
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
388
|
+
x="144.52261"
|
389
|
+
y="188.22176"
|
390
|
+
id="text43"><tspan
|
391
|
+
sodipodi:role="line"
|
392
|
+
id="tspan43"
|
393
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
394
|
+
x="144.52261"
|
395
|
+
y="188.22176">with_documentation</tspan></text><text
|
396
|
+
xml:space="preserve"
|
397
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
398
|
+
x="144.52261"
|
399
|
+
y="218.7821"
|
400
|
+
id="text44"><tspan
|
401
|
+
sodipodi:role="line"
|
402
|
+
id="tspan44"
|
403
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
404
|
+
x="144.52261"
|
405
|
+
y="218.7821">with_eol</tspan></text><text
|
406
|
+
xml:space="preserve"
|
407
|
+
style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
408
|
+
x="144.52261"
|
409
|
+
y="249.34245"
|
410
|
+
id="text45"><tspan
|
411
|
+
sodipodi:role="line"
|
412
|
+
id="tspan45"
|
413
|
+
style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
|
414
|
+
x="144.52261"
|
415
|
+
y="249.34245">with_commands</tspan></text><rect
|
416
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#deddda;stroke-width:0.79375;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
417
|
+
id="rect45"
|
418
|
+
width="181.22353"
|
419
|
+
height="276.32516"
|
420
|
+
x="-65.476738"
|
421
|
+
y="-11.887829" /></g></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.
|
4
|
+
version: 2.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ReleaseBot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -229,6 +229,8 @@ files:
|
|
229
229
|
- assets/img/download/distribution-release-screenshot-2.png
|
230
230
|
- assets/img/download/distribution-release-screenshot-3.png
|
231
231
|
- assets/img/download/distribution-release-screenshot-n.svg
|
232
|
+
- assets/img/download/download.svg
|
233
|
+
- assets/img/download/fig-the-downloads-cards-presentation-template.png
|
232
234
|
- assets/img/people/YourUsername.svg
|
233
235
|
- assets/img/people/post.svg
|
234
236
|
- assets/img/people/project.svg
|