jekyll-theme-centos 2.2.0.beta.4 → 2.2.0.beta.6

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: bf9513c9e19625f048835009e12e80cc258a78e783b001dc16b3918c3d1690b2
4
- data.tar.gz: 96f75fdb6626b37d45207e7951675cec5b48bb4c512b4fba25d445c4f465fec5
3
+ metadata.gz: 61ae14d2c992cab436c33c8fb72615dc0097c542c39017a0757cf1fc469c30f8
4
+ data.tar.gz: d1ffa3f252605f61d8fb800bb2f6c1d193c824b17a410a6129a559e597073066
5
5
  SHA512:
6
- metadata.gz: 90f73ee32c33effc8dafa1e3cb3dd131a9ae78aa9f5844f0198401584617907952f243fb08e309f3c4ce2ff703a8d0887c4d08f06df7bfeb9fa7c82e6a206950
7
- data.tar.gz: ea1fcb010dee5d664bba48cd53da57e9c9ed0b404ac0ee7a8ce1627aab8759272ad91629315ec5e58afcea488a3ce30cc501a7323b87599d1dc46d4415d433c7
6
+ metadata.gz: 7ac45897c8f1eb69aa2a7893cca435b0089c51de1346f1c00ece906f087e3fdb6c1b5f50c6bb2add37fdf0707994397e1d83e261d78c35ce8f0a5f5f09a8a993
7
+ data.tar.gz: 203e52f1facb2739f2afc194cffdf4e94adaf707f08a8be678c45ffdcbb0cfa47db8cce824a420f1e4e522399dc334f3dc9541052ab1a7ada632c89d3092ee05
@@ -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 mt-5 mb-3 text-center">
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">
@@ -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 text-center">
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 mt-3">
17
+ <div class="row text-start">
18
18
  <div class="col">
19
- <div class="list-group shadow mb-3">
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 my-5 text-center">
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 mt-5 text-center">
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="1" readonly>{{ pubkey.content }}</textarea>
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 my-5 text-center">
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 mt-3">
15
+ <div class="row">
16
16
  <div class="col">
17
17
  {{ item.support.content }}
18
18
  </div>
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.2.0.beta.4
4
+ version: 2.2.0.beta.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Release
@@ -263,7 +263,6 @@ files:
263
263
  - assets/img/centos-vertical-logo.svg
264
264
  - assets/img/centos-vertical-message-logo.svg
265
265
  - assets/img/centos-whitelogo.svg
266
- - assets/img/favicon.svg
267
266
  - assets/img/people/username.png
268
267
  - assets/img/sort_asc.png
269
268
  - assets/img/sort_asc_disabled.png
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 42.333 42.333"><g transform="matrix(1.0529 0 0 1.05289 -387.492 265.985)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="matrix(1.15 0 0 1.15 -53.772 39.325)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="matrix(1.15 0 0 1.15 -53.772 39.325)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>