jekyll-theme-centos 2.46.1 → 2.47.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: ec628813860970e6d93569bcb51c991b79547a042cb1342ddd6c1f740b969d75
4
- data.tar.gz: 610e0273e5bbca190c09bb3d0378e25b089eeab146722a199ebc848ccfeeb55d
3
+ metadata.gz: 8b6ec28d34a544ec96bb158d97f6962a1819ea5cf9e20c16e37382261e71bd4b
4
+ data.tar.gz: e6cfd2776b367acddf5dc06aa6145a5098b566fc7c9ca87658c8753da3e9f8a1
5
5
  SHA512:
6
- metadata.gz: 323ad3aa046a4cf772dd7283ca0930d75316ecd9084ec1203b6f5ee346b65871714b570b5440da8d81c6bf85a8eb0bec5286f07a1fa6f2de632191bd64e04ff8
7
- data.tar.gz: c54bfc9be4b0854a5e665b1fa22693c8b4a0018eb704ba68dbd7c01e074f6389bf5bac00d4c378396f53567ff5f2303b4929d0ddc2c41db235962533168f242f
6
+ metadata.gz: 6abb19524b9393348bc4904705d4a607228564d0b9a89a89f6ec5dd0dc19b8595b20ea3befa5757e5abd1ff0dabc38dd56023e30872760d1146ac6f5ee460339
7
+ data.tar.gz: 247e2ba3f381bd08615140e2082b9fbe28a62d7d8f218fca6cb877e4a1cf0b9afe26ef3539c42cbb4d5bb4cebb9f744c1b1cc2f9adbe9a1b38a1e10e645c3617
@@ -1,34 +1,11 @@
1
1
  ---
2
- - name: "Layouts"
3
- icon: "fa-solid fa-layer-group"
4
- link: "/layouts/"
5
- menu:
6
- - name: "people/default"
7
- link: "/layouts/people/default"
8
- visible_on: ["navbar", "footer"]
9
-
10
- - name: "Includes"
11
- icon: "fa-solid fa-arrows-turn-to-dots"
12
- link: "/includes/"
13
- menu:
14
- - name: "people/about.html"
15
- link: "includes/people/about"
16
- - name: "people/header.html"
17
- link: "includes/people/header"
18
- - name: "people/posts.html"
19
- link: "includes/people/posts"
20
- - name: "people/projects.html"
21
- link: "includes/people/projects"
22
- - name: "people/pubkeys.html"
23
- link: "includes/people/pubkeys"
24
- - name: "people/support.html"
25
- link: "includes/people/support"
26
- visible_on: ["navbar", "footer"]
27
-
28
- - name: "Data"
29
- icon: "fa-solid fa-file-code"
30
- link: "/data/"
31
- menu:
32
- - name: "site.data.people.navbar"
33
- link: "/data/people/navbar/"
34
- visible_on: ["navbar", "footer"]
2
+ - name: "Documentation"
3
+ icon: "fa-solid fa-book"
4
+ link: "/documentation/"
5
+ menu: []
6
+ visible_on: ["navbar"]
7
+ - name: "Example"
8
+ icon: "fa-solid fa-flask-vails"
9
+ link: "/example/username/"
10
+ menu: []
11
+ visible_on: ["navbar"]
@@ -0,0 +1,18 @@
1
+ ---
2
+ - name: Project 1
3
+ image: project.svg
4
+ description: |
5
+ Etiam laoreet quam sed arcu. Phasellus at dui in ligula mollis ultricies.
6
+ Integer placerat tristique nisl. Praesent augue. Fusce commodo.
7
+
8
+ - name: Project 2
9
+ image: project.svg
10
+ description: |
11
+ Etiam laoreet quam sed arcu. Phasellus at dui in ligula mollis ultricies.
12
+ Integer placerat tristique nisl. Praesent augue. Fusce commodo.
13
+
14
+ - name: Project 3
15
+ image: project.svg
16
+ description: |
17
+ Etiam laoreet quam sed arcu. Phasellus at dui in ligula mollis ultricies.
18
+ Integer placerat tristique nisl. Praesent augue. Fusce commodo.
@@ -1,6 +1,6 @@
1
- <header class="bg-dark bg-image">
1
+ <header class="py-5 bg-dark bg-image" style="height: 660px;">
2
2
  <div class="container py-5 text-white text-center">
3
- <img class="rounded-circle shadow img-fluid" width="250" src="{{ site.baseurl }}/assets/img/people/{{ page.avatar }}" alt="{{ page.username }}" />
3
+ <img class="mt-5 rounded-circle shadow img-fluid" width="250" src="{{ site.baseurl }}/assets/img/people/{{ page.username }}/{{ page.avatar }}" alt="{{ page.username }}" />
4
4
  <h1 class="display-2 fw-bold">{{ page.username }}</h1>
5
5
  <p class="lead">{{ page.fullname }}</p>
6
6
  </div>
@@ -1,33 +1,16 @@
1
- {% assign username = page.username %} {% assign projects = page.projects.content %} {% assign limit = page.posts.section.limit %} {% if page.projects.section.visible == true %}
2
- <section class="container my-5 text-center">
3
-
4
- {% if page.projects.section.icon %}
5
- <i class="h1 {{ page.projects.section.icon }}"></i>
6
- {% endif %}
7
-
8
- {% if page.projects.section.name %}
9
- <h1>{{ page.projects.section.name }}</h1>
10
- {% endif %}
11
-
12
- {% if page.projects.section.preamble %}
13
- <p>{{ page.projects.section.preamble }}</p>
14
- {% endif %}
15
-
16
- {% if projects.size > 0 %}
17
- <div class="card-group">
18
- {% for i in projects limit: limit %}
1
+ {% if include.projects.size > 0 %}
2
+ <div class="mb-3 card-group">
3
+ {% for i in include.projects %}
19
4
  <div class="card">
20
- <a href="{{ i.link }}"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ i.image }}" class="card-img-top" alt="{{ i.name }}"></a>
5
+ <img src="{{ site.url }}{{ site.baseurl }}/assets/img/people/{{ page.username }}/{{ i.image }}" class="card-img-top" alt="{{ i.name }}">
21
6
  <div class="card-body">
22
- <h4 class="card-title"><a href="{{ i.link }}">{{ i.name }}</a></h4>
7
+ <div class="card-title d-grid"><a class="btn btn-primary fw-bold" href="{{ i.link }}" role="button">{{ i.name }}</a></div>
23
8
  <p class="card-text">{{ i.description }}</p>
24
9
  </div>
25
10
  </div>
26
11
  {% endfor %}
27
- </div>
28
- {% else %}
29
- <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
30
- {% endif %}
31
-
32
- </section>
12
+ </div>
13
+ {% else %}
14
+ {:.alert .alert-info}
15
+ Nothing posted here, yet.
33
16
  {% endif %}
@@ -2,19 +2,51 @@
2
2
  <html lang="{{ page.lang | default: 'en' }}">
3
3
  {% include base/head.html title=page.title -%}
4
4
 
5
- <body id="top">
5
+ <body id="top" class="bg-dots pt-0">
6
6
  {% include base/navbar.html -%}
7
7
  {% include people/header.html %}
8
8
 
9
- <main>
10
- {% include people/about.html %}
11
- {% include people/posts.html %}
12
- {% include people/projects.html %}
13
- {% include people/pubkeys.html %}
14
- {% include people/support.html %}
9
+ <main class="container pb-5 bg-body border-top border-5 border-primary rounded shadow mt-n6">
10
+ <div class="row justify-content-center">
11
+ <div class="col-sm-12 col-lg-8">
12
+ <div class="content">
13
+ {{ content }}
14
+ </div>
15
+ </div>
16
+ </div>
15
17
  </main>
16
18
 
17
- {% include base/footer.html %}
19
+ {% if page.with_footer == true %}
20
+ <footer class="footer small bg-dark bg-image text-light">
21
+ {% if page.with_shortcuts != false %}
22
+ <div class="container">
23
+ {% include base/shortcuts.html %}
24
+ </div>
25
+ {% endif %}
26
+
27
+ {% if page.with_finale != false %}
28
+ <div class="container border-5 border-top border-primary">
29
+ {% include base/finale.html %}
30
+ </div>
31
+ {% endif %}
32
+
33
+ {% if page.with_sponsors != false %}
34
+ <div class="container-fluid bg-light">
35
+ <div class="container">
36
+ {% include sponsors/carousel.html -%}
37
+ </div>
38
+ </div>
39
+ {% endif %}
40
+
41
+ {% if page.with_copyright != false %}
42
+ <div class="container py-1">
43
+ {% include base/copyright.html %}
44
+ </div>
45
+ {% endif %}
46
+
47
+ </footer>
48
+ {% endif %}
49
+
18
50
  {% include base/script.html -%}
19
51
  </body>
20
52
  </html>
Binary file
Binary file
Binary file
Binary file
Binary file
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.46.1
4
+ version: 2.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ReleaseBot
@@ -52,6 +52,7 @@ files:
52
52
  - _data/download/cards.yml
53
53
  - _data/download/navbar.yml
54
54
  - _data/people/navbar.yml
55
+ - _data/people/projects.yml
55
56
  - _data/sponsors/carousel.yml
56
57
  - _data/sponsors/navbar.yml
57
58
  - _includes/base/announcements.html
@@ -84,7 +85,6 @@ files:
84
85
  - _includes/home/planet.html
85
86
  - _includes/home/sponsors.html
86
87
  - _includes/hr.html
87
- - _includes/people/about.html
88
88
  - _includes/people/header.html
89
89
  - _includes/people/posts.html
90
90
  - _includes/people/projects.html
@@ -232,8 +232,7 @@ files:
232
232
  - assets/img/download/distribution-release-screenshot-n.svg
233
233
  - assets/img/download/download.svg
234
234
  - assets/img/download/fig-the-downloads-cards-presentation-template.png
235
- - assets/img/people/YourUsername.svg
236
- - assets/img/people/post.svg
235
+ - assets/img/people/avatar.svg
237
236
  - assets/img/people/project.svg
238
237
  - assets/img/people/screenshot.svg
239
238
  - assets/img/sponsors/screenshot-sponsors-cards-layout.png
@@ -1,25 +0,0 @@
1
- {% if page.about.section.visible == true %}
2
- <section class="container my-5 text-center">
3
-
4
- {% if page.about.section.icon %}
5
- <i class="h1 {{ page.about.section.icon }}"></i>
6
- {% endif %}
7
-
8
- {% if page.about.section.name %}
9
- <h1>{{ page.about.section.name }}</h1>
10
- {% endif %}
11
-
12
- {% if page.about.section.preamble %}
13
- <p>{{ page.about.section.preamble }}</p>
14
- {% endif %}
15
-
16
- {% if page.about.content.size > 0 %}
17
- {% for p in page.about.content %}
18
- <p>{{ p }}</p>
19
- {% endfor %}
20
- {% else %}
21
- <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
22
- {% endif %}
23
-
24
- </section>
25
- {% endif %}
@@ -1,106 +0,0 @@
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>
File without changes