jekyll-theme-centos 2.9.0 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 940972d56cfb361abd0b85e2ecd46e2a7fbbd6369ef7865a29b8f3b44e876bea
4
- data.tar.gz: ba4d7ed5c775bf55d0fe31de301adcf193f5517b5a0e17c26237b624a0599918
3
+ metadata.gz: f8437165296d40777d1e8e82052be894a6785d4bb8c69b18d663c41cd10d77f3
4
+ data.tar.gz: f254ff70540048235b5ff4f1e38db65f368fd6b92e1d5e46a28c6638c911178b
5
5
  SHA512:
6
- metadata.gz: 3d4a02cc9284b7a38624ec465acf85e818cf6f4c5543c7edf7322b61cf8ff8be3ecc49a1654466dc9632d0c66ede6da49bf578b5a407079a3ea1d23e9cb0cbf0
7
- data.tar.gz: 7d66805d6ddfa4c70fad021e7864b6bcc6da9fc753203b21717f821fa67faa1329f82e3ba205d2b5107eed43f733fc29b0c941b91418d216d05fa29ba2926a13
6
+ metadata.gz: 07776b7a392aef16e5548482ca3bda3926c9bafd5c1de81b1a12809bd3e7210bb5313fec625347b7a263caac06d7307e8c3f2f8932ff79f2b14c6bd2773e5286
7
+ data.tar.gz: fce849081336349940d29e8cba1b9f039732cf6a8c05aa4840b50021fffbde09e131fe98d55d83aee7761a89f1df8b5fbf00caaf24906237f032dcd3b90d3bb5
@@ -1,4 +1,8 @@
1
- {% assign username = page.username %} {% assign entries = site.posts | where: "author", username %} {% assign limit = page.posts.section.limit %} {% if page.posts.section.visible == true %}
1
+ {% assign username = page.username %}
2
+ {% assign entries = site.posts | where: "author", username %}
3
+ {% assign limit = page.posts.section.limit %}
4
+
5
+ {% if page.posts.section.visible == true %}
2
6
  <section class="container my-5 text-center">
3
7
 
4
8
  {% if page.posts.section.icon %}
@@ -14,16 +18,17 @@
14
18
  {% endif %}
15
19
 
16
20
  {% if entries.size > 0 %}
17
- <div class="list-group shadow text-start">
18
- {% for i in entries limit: limit %} {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
19
- <a href="{{ site.baseurl }}{{ i.url }}" class="list-group-item list-group-item-action">
20
- <div class="d-flex gap-2w-100 justify-content-between">
21
- <h5 class="pt-0 mt-1 mb-1 fw-bold text-primary">{{ i.title }}</h5>
22
- <small class="text-muted">{{ i.date | date: date_format }}</small>
23
- </div>
24
- <p class="mb-1">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
25
- </a>
26
- {% endfor %}
21
+ <div class="card-group">
22
+ {% for i in entries limit: limit %} {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
23
+ <div class="card">
24
+ <a href="{{ site.url }}{{ site.baseurl }}{{ i.url }}"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ i.with_image }}" class="card-img-top" alt="{{ i.name }}"></a>
25
+ <div class="card-body">
26
+ <h4 class="card-title"><a href="{{ site.url }}{{ site.baseurl }}{{ i.url }}">{{ i.title }}</a></h4>
27
+ <p class="card-text">{{ i.excerpt | strip_html }}</p>
28
+ <p class="card-text"><small class="text-body-secondary">{{ i.date | date: "%b %d, %Y"}}</small></p>
29
+ </div>
30
+ </div>
31
+ {% endfor %}
27
32
  </div>
28
33
  {% else %}
29
34
  <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
@@ -15,15 +15,15 @@
15
15
 
16
16
  {% if projects.size > 0 %}
17
17
  <div class="card-group">
18
- {% for i in projects limit: limit %}
19
- <div class="card">
20
- <a href="{{ i.link }}"><img src="{{ site.url }}/{{ site.baseurl }}/assets/img/people/{{ i.image }}" class="card-img-top" alt="{{ i.name }}"></a>
21
- <div class="card-body">
22
- <h4 class="card-title"><a href="{{ i.link }}">{{ i.name }}</a></h4>
23
- <p class="card-text">{{ i.description }}</p>
24
- </div>
18
+ {% for i in projects limit: limit %}
19
+ <div class="card">
20
+ <a href="{{ i.link }}"><img src="{{ site.url }}/{{ site.baseurl }}/assets/img/people/{{ i.image }}" class="card-img-top" alt="{{ i.name }}"></a>
21
+ <div class="card-body">
22
+ <h4 class="card-title"><a href="{{ i.link }}">{{ i.name }}</a></h4>
23
+ <p class="card-text">{{ i.description }}</p>
25
24
  </div>
26
- {% endfor %}
25
+ </div>
26
+ {% endfor %}
27
27
  </div>
28
28
  {% else %}
29
29
  <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
@@ -8,8 +8,8 @@
8
8
 
9
9
  <main>
10
10
  {% include people/about.html %}
11
- {% include people/projects.html %}
12
11
  {% include people/posts.html %}
12
+ {% include people/projects.html %}
13
13
  {% include people/pubkeys.html %}
14
14
  {% include people/support.html %}
15
15
  </main>
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -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="1024.0001"
6
+ height="430.00003"
7
+ viewBox="0 0 270.93335 113.77084"
8
+ version="1.1"
9
+ id="svg5"
10
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
11
+ sodipodi:docname="post.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="204"
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="270.93335"
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="270.93335"
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,-1920.7285,-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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-centos
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ReleaseBot
@@ -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/post.svg
230
231
  - assets/img/people/project.svg
231
232
  - assets/img/people/screenshot.svg
232
233
  - assets/img/sort_asc.png