jekyll-theme-centos 2.8.0 → 2.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b950d67d998e1c1458007ba980532a85418f3291712acb9050234014f385ec0
4
- data.tar.gz: 458d0694345dec3a541c32a04f9dc5989d4dc7eb2a0baa31f76ea3c32243f7df
3
+ metadata.gz: f8437165296d40777d1e8e82052be894a6785d4bb8c69b18d663c41cd10d77f3
4
+ data.tar.gz: f254ff70540048235b5ff4f1e38db65f368fd6b92e1d5e46a28c6638c911178b
5
5
  SHA512:
6
- metadata.gz: 786484d972cd6775876574698aa2025214399d251a0932d427fca51dab03a7b4899e6fe2130b8132497b80f2a445b06580bdcf66234d09f00386287646213b21
7
- data.tar.gz: ffeb7936ed6504ffd0bffa9687a3da2933242c03a48f750e58522f848952f7dbb2a9e9252cc9f89a043d6147d1fa9add760e84cfc981b5801bb1f2e2246fdb15
6
+ metadata.gz: 07776b7a392aef16e5548482ca3bda3926c9bafd5c1de81b1a12809bd3e7210bb5313fec625347b7a263caac06d7307e8c3f2f8932ff79f2b14c6bd2773e5286
7
+ data.tar.gz: fce849081336349940d29e8cba1b9f039732cf6a8c05aa4840b50021fffbde09e131fe98d55d83aee7761a89f1df8b5fbf00caaf24906237f032dcd3b90d3bb5
@@ -25,8 +25,8 @@ copyright:
25
25
  author: "The CentOS Project"
26
26
  legals:
27
27
  - text: "Legal"
28
- link: "/legal"
28
+ link: "https://www.centos.org/legal"
29
29
  - text: "Privacy"
30
- link: "/legal/privacy"
30
+ link: "https://www.centos.org/legal/privacy"
31
31
  - text: "Site source"
32
32
  link: "https://git.centos.org/centos/centos.org"
@@ -1,5 +1,5 @@
1
1
  {% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
2
- <footer class="footer small bg-dark text-light mt-3">
2
+ <footer class="footer small bg-dark text-light">
3
3
  <div class="container">
4
4
  <div class="row bg-primary justify-content-between">
5
5
  {% assign sections = navbar | where: "visible_on", "footer" %}
@@ -51,7 +51,7 @@
51
51
  <span>{{ site.data.base.footer.copyright.author }}</span>
52
52
  {% for item in site.data.base.footer.copyright.legals -%}
53
53
  <span class="border-start ms-2 ps-2">
54
- <a class="link-light" href="{{ site.baseurl }}{{ item.link }}">{{ item.text }}</a>
54
+ <a class="link-light" href="{{ item.link }}">{{ item.text }}</a>
55
55
  </span>
56
56
  {% endfor %}
57
57
  </div>
@@ -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>
@@ -7,22 +7,25 @@
7
7
  {% include base/header.html -%}
8
8
 
9
9
  <main>
10
- <div class="container py-5">
11
- {% if page.with_breadcrumbs %}
12
- <div class="row justify-content-center">
13
- <div class="col-sm-12 col-xl-8">
14
- {% include base/breadcrumbs.html %}
15
- </div>
16
- </div>
17
- {% endif %}
18
- {% if page.with_toc %}
19
- <div class="row my-3 justify-content-center">
20
- <div class="col-sm-12 col-xl-8">{% include base/toc-accordion.html %}</div>
10
+ <div class="container my-5">
11
+ {% if page.with_breadcrumbs %}
12
+ <div class="row justify-content-center my-4">
13
+ <div class="col-sm-12 col-xl-8">
14
+ {% include base/breadcrumbs.html %}
21
15
  </div>
16
+ </div>
17
+ {% endif %}
18
+ {% if page.with_toc %}
19
+ <div class="row justify-content-center my-4">
20
+ <div class="col-sm-12 col-xl-8">{% include base/toc-accordion.html %}</div>
21
+ </div>
22
+ {% endif %}
23
+ <div class="row justify-content-center my-4">
24
+ {% if page.with_image %}
25
+ <div class="col-sm-12 col-xl-8 artwork"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.with_image }}" class="img-fluid rounded" alt="{{ page.title }}"></div>
22
26
  {% endif %}
23
- <div class="row my-5 justify-content-center">
24
- <div class="col-sm-12 col-xl-8 content">{{ content }}</div>
25
- </div>
27
+ <div class="col-sm-12 col-xl-8 content">{{ content }}</div>
28
+ </div>
26
29
  </div>
27
30
  </main>
28
31
 
@@ -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>
@@ -47,6 +47,13 @@ main {
47
47
  scroll-margin-bottom: 100px;
48
48
  margin-top: 3rem;
49
49
  }
50
+ // --------------------------------------------------------------------------------
51
+ // Tuneup first paragraph top margin when it is the first element inside
52
+ // content.
53
+ // --------------------------------------------------------------------------------
54
+ .content > p:first-child {
55
+ margin-top: 3rem;
56
+ }
50
57
 
51
58
  // --------------------------------------------------------------------------------
52
59
  // DataTable
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.8.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