jekyll-theme-centos 2.2.0.beta.3 → 2.2.0.beta.5

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: fa53eeade9136857326664475c774df9341f99ca115d6fdde28249599c3a5102
4
- data.tar.gz: 8fab08493356837d1ef7f2e482fb2cea7a8bd57e2ee6c3dcda075d750bbe3652
3
+ metadata.gz: c99532dd906e6465bfcd8d04774b2b8c5e6b9e1c566d3b913d33e48da67c8617
4
+ data.tar.gz: '09bb09496bc950d72df3a5142cb597b1e7c2a1b7b244793106761ec538249089'
5
5
  SHA512:
6
- metadata.gz: 31f4789c15686701db4cda1ced29e0e18f68dea8acd89ed55758a8ed8cd9263cedd03e2c75d895041c3e5cdabd2c57b5ac8b616c21f6f00290b52a26b36e1a81
7
- data.tar.gz: fbc3f00628610738187612df288a4860f7fee47e98ae8efee30f1ea79549345db51b4c6902370d8dc44f76b4ec06966df949c71d8d82c1308e163b3a2015b15a
6
+ metadata.gz: b121e194b7f50ac0863a50b89e3932f8a0173085d9426c4d4e08845ff6498d9b95c49d414f3e011f01301f0111a8fb1dcb238958e66972e12de8b139db774cf7
7
+ data.tar.gz: 8ac91427d74b276ce262169bdd34510ae851c01f4505c14110b07cd1d6fd4bd64fcbd2739036b65cc8d053163ee772a0862fcb3135d21c57e330a9d09179dc60
@@ -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 mb-3 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">
@@ -12,13 +12,13 @@
12
12
  </div>
13
13
  </div>
14
14
 
15
- <div class="row mt-3">
15
+ <div class="row">
16
16
  {% for pubkey in item.pubkeys.content %}
17
- <div class="col-sm-6 px-5 mb-3">
18
- <h3 class="display-6 fw-bold">{{ pubkey.name }}</h3>
17
+ <div class="col-sm-6 px-5">
18
+ <p class="fw-bold">{{ pubkey.name }}</p>
19
19
 
20
- <div class="input-group mb-3">
21
- <input id="{{ pubkey.name }}-key-{{ forloop.index }}" value="{{ pubkey.content }}" type="text" class="form-control" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" readonly />
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
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,14 +1,14 @@
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.3
4
+ version: 2.2.0.beta.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Release
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-29 00:00:00.000000000 Z
11
+ date: 2022-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll