jekyll-theme-centos 2.5.2 → 2.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/base/header.html +2 -2
- data/_includes/base/navbar.html +28 -30
- data/_includes/people/about.html +8 -6
- data/_includes/people/header.html +2 -2
- data/_includes/people/posts.html +3 -3
- data/_includes/people/projects.html +18 -11
- data/_includes/people/pubkeys.html +6 -6
- data/_includes/people/support.html +3 -3
- data/_layouts/base/default.html +2 -1
- data/_layouts/people/default.html +1 -1
- data/_sass/base/_centos.scss +27 -22
- 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/YourUsername.svg +8 -7
- data/assets/img/people/project.svg +106 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bafd99d2af51c451b000cc2285680b7d53093e2be46988b8286f211694001810
|
4
|
+
data.tar.gz: a333ac79a1027b3d3268707e2e37cba027eebd91c8e4a3e3baa0f6e4ba8b1ab5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a56dccc54a01f825bd950dc10136f30c0d7c80a3b83d5e0ea46bb148e97f38d677ecec15443f40519296f1ea7376e31ea42f3f4f822bbf491ffd781ee007ee47
|
7
|
+
data.tar.gz: 8a931e6c8b7b637cb00f1823f0f3d9755425548632a1bbea3dad96ba365da867516d7c55136e550bff638317a4ce25d27ac3dc1b9421f0b3ab262786a9204675
|
data/_includes/base/header.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<
|
1
|
+
<header class="bg-image bg-dark text-light">
|
2
2
|
<div class="container py-5">
|
3
3
|
{% if page.with_announcements and page.with_announcements.size > 0 -%}
|
4
4
|
<div class="row">
|
@@ -14,4 +14,4 @@
|
|
14
14
|
</div>
|
15
15
|
</div>
|
16
16
|
</div>
|
17
|
-
</
|
17
|
+
</header>
|
data/_includes/base/navbar.html
CHANGED
@@ -1,32 +1,30 @@
|
|
1
1
|
{% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
|
2
|
-
<
|
3
|
-
<
|
4
|
-
<
|
5
|
-
|
6
|
-
<
|
7
|
-
|
8
|
-
|
9
|
-
<
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
<
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
<
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
</ul>
|
29
|
-
</div>
|
2
|
+
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark shadow">
|
3
|
+
<div class="container">
|
4
|
+
<a class="navbar-brand pt-1" href="{{ site.baseurl }}/"><img role="img" src="{{ site.baseurl }}/{{ site.data.base.identity.logo.navbar }}" height="32" alt="{{ site.title }}" />{% if site.manifestation != "" %}<span class="manifestation border-start border-light ps-3 ms-3 py-2 fs-6">{{ site.manifestation }}</span>{% endif %}</a>
|
5
|
+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
|
6
|
+
<span class="navbar-toggler-icon"></span>
|
7
|
+
</button>
|
8
|
+
<div class="collapse navbar-collapse" id="navbarContent">
|
9
|
+
<ul class="navbar-nav mr-auto">
|
10
|
+
{% assign navitems = navbar | where: "visible_on", "navbar" -%}
|
11
|
+
{% for navitem in navitems -%}
|
12
|
+
{% if navitem.menu.size == 0 -%}
|
13
|
+
<li class="nav-item">
|
14
|
+
<a class="nav-link" role="presentation" href="{{ site.baseurl }}{{ navitem.link }}"><i class="{{ navitem.icon }}"></i> {{ navitem.name }}</a>
|
15
|
+
</li>
|
16
|
+
{% else -%}
|
17
|
+
<li class="nav-item dropdown">
|
18
|
+
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown-{{ forloop.index }}" role="button" data-bs-toggle="dropdown" aria-expanded="false"><i class="{{ navitem.icon }}"></i> {{ navitem.name }}</a>
|
19
|
+
<ul class="dropdown-menu dropdown-menu-dark shadow" aria-labelledby="navbarDropdown-{{ forloop.index }}">
|
20
|
+
{% for dropdownitem in navitem.menu -%}
|
21
|
+
<li><a class="dropdown-item" role="presentation" href="{{ site.baseurl }}{{ dropdownitem.link }}">{{ dropdownitem.name }}</a></li>
|
22
|
+
{% endfor -%}
|
23
|
+
</ul>
|
24
|
+
</li>
|
25
|
+
{% endif -%}
|
26
|
+
{% endfor -%}
|
27
|
+
</ul>
|
30
28
|
</div>
|
31
|
-
</
|
32
|
-
</
|
29
|
+
</div>
|
30
|
+
</nav>
|
data/_includes/people/about.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{% if page.about.section.visible == true %}
|
2
|
-
<div class="container
|
2
|
+
<div class="container pt-5 text-center">
|
3
3
|
<div class="row">
|
4
4
|
<div class="col">
|
5
5
|
{% if page.about.section.icon %}
|
6
|
-
<
|
6
|
+
<i class="h1 {{ page.about.section.icon }}"></i>
|
7
7
|
{% endif %} {% if page.about.section.name %}
|
8
|
-
<
|
8
|
+
<h1>{{ page.about.section.name }}</h1>
|
9
9
|
{% endif %} {% if page.about.section.preamble %}
|
10
10
|
<p>{{ page.about.section.preamble }}</p>
|
11
11
|
{% endif %}
|
@@ -14,9 +14,11 @@
|
|
14
14
|
|
15
15
|
<div class="row mt-3">
|
16
16
|
<div class="col">
|
17
|
-
{% if page.about.content.size > 0 %}
|
18
|
-
|
19
|
-
|
17
|
+
{% if page.about.content.size > 0 %}
|
18
|
+
{% for p in page.about.content %}
|
19
|
+
<p>{{ p }}</p>
|
20
|
+
{% endfor %}
|
21
|
+
{% else %}
|
20
22
|
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
21
23
|
{% endif %}
|
22
24
|
</div>
|
@@ -2,8 +2,8 @@
|
|
2
2
|
<div class="container p-5 text-white text-center">
|
3
3
|
<div class="row">
|
4
4
|
<div class="col">
|
5
|
-
<img class="rounded-circle shadow img-fluid" width="250" src="{{ site.baseurl }}/assets/img/people/{{ page.
|
6
|
-
<h1 class="display-
|
5
|
+
<img class="rounded-circle shadow img-fluid" width="250" src="{{ site.baseurl }}/assets/img/people/{{ page.avatar }}" alt="{{ page.username }}" />
|
6
|
+
<h1 class="display-2 fw-bold">{{ page.username }}</h1>
|
7
7
|
<p class="lead">{{ page.fullname }}</p>
|
8
8
|
</div>
|
9
9
|
</div>
|
data/_includes/people/posts.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{% assign username = page.username %} {% assign entries = site.posts | where: "author", username %} {% assign limit = page.posts.section.limit %} {% if page.posts.section.visible == true %}
|
2
|
-
<div class="container
|
2
|
+
<div class="container pt-5 text-center">
|
3
3
|
<div class="row">
|
4
4
|
<div class="col">
|
5
5
|
{% if page.posts.section.icon %}
|
6
|
-
<
|
6
|
+
<i class="h1 {{ page.posts.section.icon }}"></i>
|
7
7
|
{% endif %} {% if page.posts.section.name %}
|
8
|
-
<
|
8
|
+
<h1>{{ page.posts.section.name }}</h1>
|
9
9
|
{% endif %} {% if page.posts.section.preamble %}
|
10
10
|
<p>{{ page.posts.section.preamble }}</p>
|
11
11
|
{% endif %}
|
@@ -1,13 +1,16 @@
|
|
1
1
|
{% assign username = page.username %} {% assign projects = page.projects.content %} {% assign limit = page.posts.section.limit %} {% if page.projects.section.visible == true %}
|
2
|
-
<div class="container
|
2
|
+
<div class="container pt-5 text-center">
|
3
|
+
|
3
4
|
<div class="row">
|
4
5
|
<div class="col">
|
5
6
|
{% if page.projects.section.icon %}
|
6
|
-
|
7
|
-
{% endif %}
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
<i class="h1 {{ page.projects.section.icon }}"></i>
|
8
|
+
{% endif %}
|
9
|
+
{% if page.projects.section.name %}
|
10
|
+
<h1>{{ page.projects.section.name }}</h1>
|
11
|
+
{% endif %}
|
12
|
+
{% if page.projects.section.preamble %}
|
13
|
+
<p>{{ page.projects.section.preamble }}</p>
|
11
14
|
{% endif %}
|
12
15
|
</div>
|
13
16
|
</div>
|
@@ -15,12 +18,15 @@
|
|
15
18
|
<div class="row">
|
16
19
|
<div class="col">
|
17
20
|
{% if projects.size > 0 %}
|
18
|
-
<div class="
|
21
|
+
<div class="card-group">
|
19
22
|
{% for i in projects limit: limit %}
|
20
|
-
<
|
21
|
-
<
|
22
|
-
<
|
23
|
-
|
23
|
+
<div class="card">
|
24
|
+
<a href="{{ i.link }}"><img src="{{ site.url }}/{{ site.baseurl }}/assets/img/people/{{ i.image }}" class="card-img-top" alt="{{ i.name }}"></a>
|
25
|
+
<div class="card-body">
|
26
|
+
<h4 class="card-title"><a href="{{ i.link }}">{{ i.name }}</a></h4>
|
27
|
+
<p class="card-text">{{ i.description }}</p>
|
28
|
+
</div>
|
29
|
+
</div>
|
24
30
|
{% endfor %}
|
25
31
|
</div>
|
26
32
|
{% else %}
|
@@ -28,5 +34,6 @@
|
|
28
34
|
{% endif %}
|
29
35
|
</div>
|
30
36
|
</div>
|
37
|
+
|
31
38
|
</div>
|
32
39
|
{% endif %}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
{% if page.pubkeys.section.visible == true %}
|
2
|
-
<div class="container
|
2
|
+
<div class="container pt-5 text-center">
|
3
3
|
<div class="row">
|
4
4
|
<div class="col">
|
5
5
|
{% if page.pubkeys.section.icon %}
|
6
|
-
<
|
6
|
+
<i class="h1 {{ page.pubkeys.section.icon }}"></i>
|
7
7
|
{% endif %} {% if page.pubkeys.section.name %}
|
8
|
-
<
|
8
|
+
<h1>{{ page.pubkeys.section.name }}</h1>
|
9
9
|
{% endif %} {% if page.pubkeys.section.preamble %}
|
10
10
|
<p>{{ page.pubkeys.section.preamble }}</p>
|
11
11
|
{% endif %}
|
@@ -15,11 +15,11 @@
|
|
15
15
|
{% if page.pubkeys.content.size > 0 %}
|
16
16
|
<div class="row">
|
17
17
|
{% for pubkey in page.pubkeys.content %}
|
18
|
-
<div class="col-sm-6
|
18
|
+
<div class="col-sm-6">
|
19
19
|
<p class="fw-bold">{{ pubkey.name }}</p>
|
20
20
|
<div class="input-group">
|
21
|
-
<textarea id="{{ pubkey.name }}-key-{{ forloop.index }}" class="form-control font-monospace" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" readonly rows="
|
22
|
-
<button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-clipboard" type="button" aria-label="Copy to clipboard" data-clipboard-target="#{{ pubkey.name }}-key-{{ forloop.index }}" data-bs-toggle="tooltip" data-bs-title="Copy to clipboard"><i class="fa-solid fa-clipboard"></i></button>
|
21
|
+
<textarea id="{{ pubkey.name }}-key-{{ forloop.index }}" class="form-control font-monospace" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" readonly rows="2">{{ pubkey.content }}</textarea>
|
22
|
+
<button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-outline-primary btn-clipboard" type="button" aria-label="Copy to clipboard" data-clipboard-target="#{{ pubkey.name }}-key-{{ forloop.index }}" data-bs-toggle="tooltip" data-bs-title="Copy to clipboard"><i class="fa-solid fa-clipboard"></i></button>
|
23
23
|
</div>
|
24
24
|
</div>
|
25
25
|
{% endfor %}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
{% if page.support.section.visible == true %}
|
2
|
-
<div class="container
|
2
|
+
<div class="container pt-5 text-center">
|
3
3
|
<div class="row">
|
4
4
|
<div class="col">
|
5
5
|
{% if page.support.section.icon %}
|
6
|
-
<
|
6
|
+
<i class="h1 {{ page.support.section.icon }}"></i>
|
7
7
|
{% endif %} {% if page.support.section.name %}
|
8
|
-
<
|
8
|
+
<h1>{{ page.support.section.name }}</h1>
|
9
9
|
{% endif %} {% if page.support.section.preamble %}
|
10
10
|
<p>{{ page.support.section.preamble }}</p>
|
11
11
|
{% endif %}
|
data/_layouts/base/default.html
CHANGED
data/_sass/base/_centos.scss
CHANGED
@@ -2,6 +2,33 @@
|
|
2
2
|
// Adjustments
|
3
3
|
// --------------------------------------------------------------------------------
|
4
4
|
|
5
|
+
nav {
|
6
|
+
// --------------------------------------------------------------------------------
|
7
|
+
// Nav
|
8
|
+
// --------------------------------------------------------------------------------
|
9
|
+
.navbar-brand {
|
10
|
+
.manifestation {
|
11
|
+
--bs-border-opacity: 0.5;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
}
|
15
|
+
|
16
|
+
header {
|
17
|
+
// --------------------------------------------------------------------------------
|
18
|
+
// Backgrounds
|
19
|
+
// --------------------------------------------------------------------------------
|
20
|
+
&.bg-image {
|
21
|
+
background-image: url("../../img/centos-motif.png");
|
22
|
+
background-size: cover;
|
23
|
+
background-repeat: no-repeat;
|
24
|
+
background-position: center;
|
25
|
+
}
|
26
|
+
|
27
|
+
&.bg-light-radial-gradient {
|
28
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
5
32
|
main {
|
6
33
|
// --------------------------------------------------------------------------------
|
7
34
|
// Navbar and linked headings' correction.
|
@@ -21,20 +48,6 @@ main {
|
|
21
48
|
margin-top: 3rem;
|
22
49
|
}
|
23
50
|
|
24
|
-
// --------------------------------------------------------------------------------
|
25
|
-
// Backgrounds
|
26
|
-
// --------------------------------------------------------------------------------
|
27
|
-
.bg-image {
|
28
|
-
background-image: url("../../img/centos-motif.png");
|
29
|
-
background-size: cover;
|
30
|
-
background-repeat: no-repeat;
|
31
|
-
background-position: center;
|
32
|
-
}
|
33
|
-
|
34
|
-
.bg-light-radial-gradient {
|
35
|
-
background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
|
36
|
-
}
|
37
|
-
|
38
51
|
// --------------------------------------------------------------------------------
|
39
52
|
// DataTable
|
40
53
|
// --------------------------------------------------------------------------------
|
@@ -54,14 +67,6 @@ main {
|
|
54
67
|
}
|
55
68
|
}
|
56
69
|
|
57
|
-
header {
|
58
|
-
.navbar-brand {
|
59
|
-
.manifestation {
|
60
|
-
--bs-border-opacity: 0.5;
|
61
|
-
}
|
62
|
-
}
|
63
|
-
}
|
64
|
-
|
65
70
|
footer,
|
66
71
|
.accordion-body {
|
67
72
|
a {
|
Binary file
|
Binary file
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
@@ -25,13 +25,13 @@
|
|
25
25
|
inkscape:document-units="px"
|
26
26
|
showgrid="false"
|
27
27
|
inkscape:zoom="1.5827039"
|
28
|
-
inkscape:cx="36.
|
29
|
-
inkscape:cy="83.
|
30
|
-
inkscape:window-width="
|
28
|
+
inkscape:cx="36.330232"
|
29
|
+
inkscape:cy="83.401576"
|
30
|
+
inkscape:window-width="1805"
|
31
31
|
inkscape:window-height="1371"
|
32
|
-
inkscape:window-x="
|
32
|
+
inkscape:window-x="1635"
|
33
33
|
inkscape:window-y="32"
|
34
|
-
inkscape:window-maximized="
|
34
|
+
inkscape:window-maximized="0"
|
35
35
|
inkscape:current-layer="layer1" />
|
36
36
|
<defs
|
37
37
|
id="defs2" />
|
@@ -46,13 +46,14 @@
|
|
46
46
|
d="m -206.62042,-9.1068344 h 67.733 V 58.626167 h -67.733 z" />
|
47
47
|
<g
|
48
48
|
id="use2409"
|
49
|
-
style="fill:#
|
49
|
+
style="fill:#200735;fill-opacity:1;stroke:none;stroke-width:5.12"
|
50
50
|
transform="matrix(0.05167618,0,0,0.05167618,-185.98302,11.530564)">
|
51
51
|
<title
|
52
52
|
id="title3102">User</title>
|
53
53
|
<path
|
54
54
|
d="M 96,160 C 96,71.634 167.635,0 256,0 344.365,0 416,71.634 416,160 416,248.366 344.365,320 256,320 167.635,320 96,248.366 96,160 Z m 304,192 h -28.556 c -71.006,42.713 -159.912,42.695 -230.888,0 H 112 C 50.144,352 0,402.144 0,464 v 24 c 0,13.255 10.745,24 24,24 h 464 c 13.255,0 24,-10.745 24,-24 V 464 C 512,402.144 461.856,352 400,352 Z"
|
55
|
-
id="path3104"
|
55
|
+
id="path3104"
|
56
|
+
style="fill:#200735;fill-opacity:1" />
|
56
57
|
</g>
|
57
58
|
</g>
|
58
59
|
</svg>
|
@@ -0,0 +1,106 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
width="429.99997"
|
6
|
+
height="430.00003"
|
7
|
+
viewBox="0 0 113.77082 113.77084"
|
8
|
+
version="1.1"
|
9
|
+
id="svg5"
|
10
|
+
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
11
|
+
sodipodi:docname="project.svg"
|
12
|
+
inkscape:export-filename="component.png"
|
13
|
+
inkscape:export-xdpi="96"
|
14
|
+
inkscape:export-ydpi="96"
|
15
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
16
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
17
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
19
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
20
|
+
<sodipodi:namedview
|
21
|
+
id="namedview7"
|
22
|
+
pagecolor="#ffffff"
|
23
|
+
bordercolor="#666666"
|
24
|
+
borderopacity="1.0"
|
25
|
+
inkscape:showpageshadow="2"
|
26
|
+
inkscape:pageopacity="0.0"
|
27
|
+
inkscape:pagecheckerboard="0"
|
28
|
+
inkscape:deskcolor="#d1d1d1"
|
29
|
+
inkscape:document-units="mm"
|
30
|
+
showgrid="false"
|
31
|
+
inkscape:zoom="1"
|
32
|
+
inkscape:cx="215"
|
33
|
+
inkscape:cy="215"
|
34
|
+
inkscape:window-width="3440"
|
35
|
+
inkscape:window-height="1371"
|
36
|
+
inkscape:window-x="0"
|
37
|
+
inkscape:window-y="0"
|
38
|
+
inkscape:window-maximized="1"
|
39
|
+
inkscape:current-layer="layer1" />
|
40
|
+
<defs
|
41
|
+
id="defs2">
|
42
|
+
<pattern
|
43
|
+
inkscape:collect="always"
|
44
|
+
xlink:href="#Strips1_1white"
|
45
|
+
id="pattern2972"
|
46
|
+
patternTransform="matrix(3.9313961,2.2697926,-4.2207075,7.3104802,-1374.3634,-516.8101)" />
|
47
|
+
<pattern
|
48
|
+
inkscape:collect="always"
|
49
|
+
patternUnits="userSpaceOnUse"
|
50
|
+
width="2"
|
51
|
+
height="1"
|
52
|
+
patternTransform="translate(0,0) scale(10,10)"
|
53
|
+
id="Strips1_1white"
|
54
|
+
inkscape:stockid="Stripes 1:1 white">
|
55
|
+
<rect
|
56
|
+
style="fill:white;stroke:none"
|
57
|
+
x="0"
|
58
|
+
y="-0.5"
|
59
|
+
width="1"
|
60
|
+
height="2"
|
61
|
+
id="rect1946" />
|
62
|
+
</pattern>
|
63
|
+
</defs>
|
64
|
+
<g
|
65
|
+
inkscape:label="Layer 1"
|
66
|
+
inkscape:groupmode="layer"
|
67
|
+
id="layer1"
|
68
|
+
transform="translate(1361.2655,457.33365)">
|
69
|
+
<rect
|
70
|
+
style="fill:#f6f5f4;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
71
|
+
id="rect241"
|
72
|
+
width="113.77083"
|
73
|
+
height="113.77084"
|
74
|
+
x="-1361.2655"
|
75
|
+
y="-457.33365" />
|
76
|
+
<rect
|
77
|
+
style="opacity:0.15;fill:url(#pattern2972);fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
78
|
+
id="rect405"
|
79
|
+
width="113.77083"
|
80
|
+
height="113.77084"
|
81
|
+
x="-1361.2655"
|
82
|
+
y="-457.33365" />
|
83
|
+
<g
|
84
|
+
id="g28251-9"
|
85
|
+
transform="matrix(1.023703,1.023703,-1.023703,1.023703,-1999.3097,-500.16498)"
|
86
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
87
|
+
inkscape:export-xdpi="10.11"
|
88
|
+
inkscape:export-ydpi="10.11"
|
89
|
+
style="stroke-width:0.727273">
|
90
|
+
<ellipse
|
91
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.962124;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
92
|
+
id="ellipse15079-1"
|
93
|
+
cx="388.1235"
|
94
|
+
cy="-290.71561"
|
95
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v10.png"
|
96
|
+
inkscape:export-xdpi="13.06"
|
97
|
+
inkscape:export-ydpi="13.06"
|
98
|
+
rx="20.103001"
|
99
|
+
ry="20.103493" />
|
100
|
+
<path
|
101
|
+
id="rect52127-5-0"
|
102
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke-width:6.6386;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000000"
|
103
|
+
d="m 377.36591,-301.47322 3.1e-4,6.30167 -4.45593,4.45594 4.45593,4.45593 -3.1e-4,6.30167 h 6.30198 l 4.45594,4.45593 4.45593,-4.45593 h 6.30134 l 3.2e-4,-6.30167 4.45594,-4.45593 -4.45594,-4.45594 -3.2e-4,-6.30167 h -6.30134 l -4.45593,-4.45593 -4.45594,4.45593 z m 2.27111,4.18345 1.91265,-1.91265 3.2276,3.22761 -3.2e-4,1.91263 h -1.91233 z m -2.16283,5.22203 4.56454,-3.4e-4 1.35246,1.35247 -1.35246,1.35246 h -4.56422 z m 9.29718,-9.29718 h 2.70491 v 4.56422 l -1.35245,1.35246 -1.35246,-1.35246 z m 0.0911,7.6066 1.26064,1.28263 1.26035,-1.28295 -0.0154,1.79789 1.7982,-0.0158 -1.28231,1.26034 1.28296,1.26033 -1.79821,-0.0152 0.0158,1.79822 -1.26032,-1.28232 -1.26034,1.28296 0.0154,-1.79853 -1.79853,0.0162 1.28263,-1.26065 -1.28296,-1.26034 1.79822,0.0158 z m -7.2255,9.61687 3.2276,-3.2276 1.91264,3.2e-4 v 1.91232 l -3.2276,3.2276 z m 11.83335,-11.83336 3.22761,-3.22761 1.91264,1.91265 -3.2276,3.22759 h -1.91233 z m -4.69869,11.34461 1.35214,-1.35213 1.35214,1.35213 3.1e-4,4.56455 -2.7046,-3.2e-4 z m 6.08509,-6.08509 1.35246,-1.35245 h 4.56422 l -3.2e-4,2.70459 h -4.56422 z m -1.3864,3.34656 1.91265,-3.2e-4 3.2276,3.2276 -1.91265,1.91264 -3.2276,-3.2276 z" />
|
104
|
+
</g>
|
105
|
+
</g>
|
106
|
+
</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.7.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-07-
|
11
|
+
date: 2023-07-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
version: 2.4.0
|
41
41
|
description:
|
42
42
|
email:
|
43
|
-
-
|
43
|
+
- group_59038887_bot_c43eba9ad591dd07d005fafa4a9fef16@noreply.gitlab.com
|
44
44
|
executables: []
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
@@ -227,6 +227,7 @@ files:
|
|
227
227
|
- assets/img/download/distribution-release-screenshot-n.png
|
228
228
|
- assets/img/download/distribution-release-screenshot-n.svg
|
229
229
|
- assets/img/people/YourUsername.svg
|
230
|
+
- assets/img/people/project.svg
|
230
231
|
- assets/img/people/screenshot.svg
|
231
232
|
- assets/img/sort_asc.png
|
232
233
|
- assets/img/sort_asc_disabled.png
|