jekyll-theme-centos 2.5.2 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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/people/default.html +1 -1
- 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 +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3ca648c56202c3e20d730a1ac8cb48feee36b0bfd62978a18a71ed175e5134a
|
4
|
+
data.tar.gz: 27cf09c8ab83b2b74a5ba56bd78adde07223bf1961237e5331fa535ae4bf3bb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d237dee3ca08754c9eed6b9b0001a19a2331752d55d456e375d37f5eafcc8d8ea90fd754d4c18a919f258a8aa29174c42ded344801c2466595490197d4d64b2
|
7
|
+
data.tar.gz: 9200ffe225ed29b4945379f4b211d9b3656e02eefefa6854cc4be5be9cebdb4f31fdee4de4c058223b8b7b13b9b2a1cb8f5ac718d4209a16a5c99c2e96441fcf
|
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 %}
|
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.6.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-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -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
|