jekyll-theme-centos 2.3.0.beta.133 → 2.3.0.beta.134

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: 3f45183a9070c194f29a88a89250de00425033c028266215a9ef3e44cddd8bed
4
- data.tar.gz: 0b67b1cbceaa5b8726bc6de90cde7f626cba48276168a7a64408d9f443ccd2fc
3
+ metadata.gz: d0132f7b29094453e1074308c7e117c9209c35a607cd4695bb7108cba6426fff
4
+ data.tar.gz: 7f1deb869577815df3a075cf286db7a10fb52b2f9277ed6a63a79a3a71ec4241
5
5
  SHA512:
6
- metadata.gz: 0aa995d3c153efbd36ed99b4a1fb51b6b7bea3570243ae4da10cfc8e0437c9c6f9ec1d213ff0879352c8203b099bc2cf9c4ad1c81652766f1f3eb41c3083a809
7
- data.tar.gz: 0ae628dab2c0db721364c5aa342a457f2d212058b66bef52198df5a96c01c87294379e5779ca21640a775875242ff3645e1c64f18cf7747a90b248476830e50c
6
+ metadata.gz: f192ca51477ff97fe62472e537ca5fe3d8bdd221e32765e5e105555b1bd75dfc30dce1c5a8027f9507e13fa139a35ef073b090234fc6ee15eb2517f7bf2c2194
7
+ data.tar.gz: cd0a452d1d42bad65b4c778894d1968b4504e349444e69815fcceac2bc5167926f522032b9e915f212233144d0c98e368b6ac870c4cbcf98884bf0e78f737bee
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.3.0.beta.133
4
+ version: 2.3.0.beta.134
5
5
  platform: ruby
6
6
  authors:
7
7
  - Release
@@ -79,19 +79,12 @@ files:
79
79
  - _includes/home/planet.html
80
80
  - _includes/home/sponsors.html
81
81
  - _includes/hr.html
82
- - _includes/people/about.html
83
- - _includes/people/header.html
84
- - _includes/people/posts.html
85
- - _includes/people/projects.html
86
- - _includes/people/pubkeys.html
87
- - _includes/people/support.html
88
82
  - _includes/post-nav-explorer.html
89
83
  - _includes/post-nav.html
90
84
  - _layouts/base/default.html
91
85
  - _layouts/blog.html
92
86
  - _layouts/download/download.html
93
87
  - _layouts/home.html
94
- - _layouts/people.html
95
88
  - _layouts/post.html
96
89
  - _layouts/search.html
97
90
  - _layouts/sponsors.html
@@ -1,25 +0,0 @@
1
- {% if page.about.section.visible == true %}
2
- <div class="container py-5 text-center border-top{% if page.about.section.highlight == true %} bg-light-radial-gradient{% endif %}">
3
- <div class="row">
4
- <div class="col">
5
- {% if page.about.section.icon %}
6
- <div class="display-6"><i class="{{ page.about.section.icon }}"></i></div>
7
- {% endif %} {% if page.about.section.name %}
8
- <div class="display-6 fw-bold">{{ page.about.section.name }}</div>
9
- {% endif %} {% if page.about.section.preamble %}
10
- <p>{{ page.about.section.preamble }}</p>
11
- {% endif %}
12
- </div>
13
- </div>
14
-
15
- <div class="row mt-3">
16
- <div class="col">
17
- {% if page.about.content.size > 0 %} {% for p in page.about.content %}
18
- <p>{{ p }}</p>
19
- {% endfor %} {% else %}
20
- <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
21
- {% endif %}
22
- </div>
23
- </div>
24
- </div>
25
- {% endif %}
@@ -1,11 +0,0 @@
1
- <div class="bg-dark bg-image">
2
- <div class="container p-5 text-white text-center">
3
- <div class="row">
4
- <div class="col">
5
- <img class="rounded-circle shadow img-fluid" width="250" src="{{ site.baseurl }}/assets/img/people/{{ page.username }}.png" alt="{{ page.username }}" />
6
- <h1 class="display-1 fw-bold">{{ page.username }}</h1>
7
- <p class="lead">{{ page.fullname }}</p>
8
- </div>
9
- </div>
10
- </div>
11
- </div>
@@ -1,35 +0,0 @@
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 py-5 text-center border-top{% if page.posts.section.highlight == true %} bg-light-radial-gradient{% endif %}">
3
- <div class="row">
4
- <div class="col">
5
- {% if page.posts.section.icon %}
6
- <div class="display-6"><i class="{{ page.posts.section.icon }}"></i></div>
7
- {% endif %} {% if page.posts.section.name %}
8
- <div class="display-6 fw-bold">{{ page.posts.section.name }}</div>
9
- {% endif %} {% if page.posts.section.preamble %}
10
- <p>{{ page.posts.section.preamble }}</p>
11
- {% endif %}
12
- </div>
13
- </div>
14
-
15
- <div class="row">
16
- <div class="col">
17
- {% if entries.size > 0 %}
18
- <div class="list-group shadow text-start">
19
- {% for i in entries limit: limit %} {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
20
- <a href="{{ site.baseurl }}{{ i.url }}" class="list-group-item list-group-item-action">
21
- <div class="d-flex gap-2w-100 justify-content-between">
22
- <h5 class="pt-0 mt-1 mb-1 fw-bold text-primary">{{ i.title }}</h5>
23
- <small class="text-muted">{{ i.date | date: date_format }}</small>
24
- </div>
25
- <p class="mb-1">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
26
- </a>
27
- {% endfor %}
28
- </div>
29
- {% else %}
30
- <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
31
- {% endif %}
32
- </div>
33
- </div>
34
- </div>
35
- {% endif %}
@@ -1,32 +0,0 @@
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 py-5 text-center border-top{% if page.projects.section.highlight == true %} bg-light-radial-gradient{% endif %}">
3
- <div class="row">
4
- <div class="col">
5
- {% if page.projects.section.icon %}
6
- <div class="display-6"><i class="{{ page.projects.section.icon }}"></i></div>
7
- {% endif %} {% if page.projects.section.name %}
8
- <div class="display-6 fw-bold">{{ page.projects.section.name }}</div>
9
- {% endif %} {% if page.projects.section.preamble %}
10
- <p>{{ page.projects.section.preamble }}</p>
11
- {% endif %}
12
- </div>
13
- </div>
14
-
15
- <div class="row">
16
- <div class="col">
17
- {% if projects.size > 0 %}
18
- <div class="list-group shadow text-start">
19
- {% for i in projects limit: limit %}
20
- <a href="{{ site.baseurl }}{{ i.link }}" class="list-group-item list-group-item-action">
21
- <div class="fw-bold">{{ i.name }}</div>
22
- <small class="text-muted">{{ i.description }}</small>
23
- </a>
24
- {% endfor %}
25
- </div>
26
- {% else %}
27
- <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
28
- {% endif %}
29
- </div>
30
- </div>
31
- </div>
32
- {% endif %}
@@ -1,31 +0,0 @@
1
- {% if page.pubkeys.section.visible == true %}
2
- <div class="container py-5 text-center border-top{% if page.pubkeys.section.highlight == true %} bg-light-radial-gradient{% endif %}">
3
- <div class="row">
4
- <div class="col">
5
- {% if page.pubkeys.section.icon %}
6
- <div class="display-6"><i class="{{ page.pubkeys.section.icon }}"></i></div>
7
- {% endif %} {% if page.pubkeys.section.name %}
8
- <div class="display-6 fw-bold">{{ page.pubkeys.section.name }}</div>
9
- {% endif %} {% if page.pubkeys.section.preamble %}
10
- <p>{{ page.pubkeys.section.preamble }}</p>
11
- {% endif %}
12
- </div>
13
- </div>
14
-
15
- {% if page.pubkeys.content.size > 0 %}
16
- <div class="row">
17
- {% for pubkey in page.pubkeys.content %}
18
- <div class="col-sm-6 px-5">
19
- <p class="fw-bold">{{ pubkey.name }}</p>
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="5">{{ pubkey.content }}</textarea>
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>
23
- </div>
24
- </div>
25
- {% endfor %}
26
- </div>
27
- {% else %}
28
- <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
29
- {% endif %}
30
- </div>
31
- {% endif %}
@@ -1,25 +0,0 @@
1
- {% if page.support.section.visible == true %}
2
- <div class="container py-5 text-center border-top{% if page.support.section.highlight == true %} bg-light-radial-gradient{% endif %}">
3
- <div class="row">
4
- <div class="col">
5
- {% if page.support.section.icon %}
6
- <div class="display-6"><i class="{{ page.support.section.icon }}"></i></div>
7
- {% endif %} {% if page.support.section.name %}
8
- <div class="display-6 fw-bold">{{ page.support.section.name }}</div>
9
- {% endif %} {% if page.support.section.preamble %}
10
- <p>{{ page.support.section.preamble }}</p>
11
- {% endif %}
12
- </div>
13
- </div>
14
-
15
- {% if page.support.content.size > 0 %}
16
- <div class="row">
17
- {% for support in page.support.content %}
18
- <div class="col">{{ support }}</div>
19
- {% endfor %}
20
- </div>
21
- {% else %}
22
- <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
23
- {% endif %}
24
- </div>
25
- {% endif %}
data/_layouts/people.html DELETED
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="{{ page.lang | default: 'en' }}">
3
-
4
- {% include head.html title=page.title -%}
5
-
6
- <body>
7
-
8
- {% include navbar.html -%}
9
-
10
- <main class="bg-light">
11
-
12
- {% include people/header.html %}
13
- {% include people/about.html %}
14
- {% include people/projects.html %}
15
- {% include people/posts.html %}
16
- {% include people/pubkeys.html %}
17
- {% include people/support.html %}
18
-
19
- </main>
20
-
21
- {% include footer.html %}
22
- {% include script.html -%}
23
- </body>
24
- </html>