jekyll-theme-centos 2.2.0.beta.4 → 2.2.0.beta.5
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 +1 -1
- data/_includes/people/posts.html +4 -4
- data/_includes/people/projects.html +1 -1
- data/_includes/people/pubkeys.html +2 -2
- data/_includes/people/support.html +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c99532dd906e6465bfcd8d04774b2b8c5e6b9e1c566d3b913d33e48da67c8617
|
4
|
+
data.tar.gz: '09bb09496bc950d72df3a5142cb597b1e7c2a1b7b244793106761ec538249089'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b121e194b7f50ac0863a50b89e3932f8a0173085d9426c4d4e08845ff6498d9b95c49d414f3e011f01301f0111a8fb1dcb238958e66972e12de8b139db774cf7
|
7
|
+
data.tar.gz: 8ac91427d74b276ce262169bdd34510ae851c01f4505c14110b07cd1d6fd4bd64fcbd2739036b65cc8d053163ee772a0862fcb3135d21c57e330a9d09179dc60
|
data/_includes/people/about.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
{% assign person = site.data.centos.people | where: "username", username %}
|
3
3
|
|
4
4
|
{% for item in person %}
|
5
|
-
<div class="container
|
5
|
+
<div class="container py-5 text-center border-top"{% if item.about.section.highlight == true %} style="background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,0) 100%);"{% endif %}>
|
6
6
|
|
7
7
|
<div class="row">
|
8
8
|
<div class="col">
|
data/_includes/people/posts.html
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
{% if entries.size > 0 %}
|
6
6
|
{% for item in person %}
|
7
|
-
<div class="container">
|
7
|
+
<div class="container py-5 text-center border-top"{% if item.posts.section.highlight == true %} style="background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,0) 100%);"{% endif %}>
|
8
8
|
|
9
|
-
<div class="row
|
9
|
+
<div class="row">
|
10
10
|
<div class="col">
|
11
11
|
{% if item.posts.section.icon %}<div class="display-6">{{ item.posts.section.icon }}</div>{% endif %}
|
12
12
|
{% if item.posts.section.name %}<div class="display-6">{{ item.posts.section.name }}</div>{% endif %}
|
@@ -14,9 +14,9 @@
|
|
14
14
|
</div>
|
15
15
|
</div>
|
16
16
|
|
17
|
-
<div class="row
|
17
|
+
<div class="row text-start">
|
18
18
|
<div class="col">
|
19
|
-
<div class="list-group shadow
|
19
|
+
<div class="list-group shadow">
|
20
20
|
{% for i in entries limit:5 %}
|
21
21
|
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
22
22
|
<a href="{{ i.link }}" class="list-group-item list-group-item-action">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
{% for item in person %}
|
5
5
|
{% if item.projects.content.size > 0 %}
|
6
|
-
<div class="container
|
6
|
+
<div class="container py-5 text-center border-top"{% if item.projects.section.highlight == true %} style="background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,0) 100%);"{% endif %}>
|
7
7
|
|
8
8
|
<div class="row">
|
9
9
|
<div class="col">
|
@@ -2,7 +2,7 @@
|
|
2
2
|
{% assign person = site.data.centos.people | where: "username", username %}
|
3
3
|
|
4
4
|
{% for item in person %}
|
5
|
-
<div class="container
|
5
|
+
<div class="container py-5 text-center border-top"{% if item.pubkeys.section.highlight == true %} style="background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,0) 100%);"{% endif %}>
|
6
6
|
|
7
7
|
<div class="row">
|
8
8
|
<div class="col">
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<p class="fw-bold">{{ pubkey.name }}</p>
|
19
19
|
|
20
20
|
<div class="input-group">
|
21
|
-
<textarea id="{{ pubkey.name }}-key-{{ forloop.index }}" class="form-control" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" rows="
|
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
22
|
<button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-clipboard btn-outline-primary" type="button" 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
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
{% assign person = site.data.centos.people | where: "username", username %}
|
3
3
|
|
4
4
|
{% for item in person %}
|
5
|
-
<div class="container
|
5
|
+
<div class="container py-5 text-center border-top"{% if item.support.section.highlight == true %} style="background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,0) 100%);"{% endif %}>
|
6
6
|
|
7
7
|
<div class="row">
|
8
8
|
<div class="col">
|
@@ -12,7 +12,7 @@
|
|
12
12
|
</div>
|
13
13
|
</div>
|
14
14
|
|
15
|
-
<div class="row
|
15
|
+
<div class="row">
|
16
16
|
<div class="col">
|
17
17
|
{{ item.support.content }}
|
18
18
|
</div>
|