jekyll-theme-centos-test 1.1.4 → 1.1.5

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: 811a22de67dfc07368c4d87a2625162c72eea70166726f1b71830f876124a7c4
4
- data.tar.gz: 720466aa8e38f77d6d8021c9cddbbf3303fe3d12ccd4c304d44044e82592297f
3
+ metadata.gz: '01595cffeff7d9635b23c005b023dc60ce1975664c35a8b96a8f1ab01757b68d'
4
+ data.tar.gz: 1adfc0e6ad8c25b4f0c3c7d5dae802ca7284fb9709a7881bf2c008ae2fa3e012
5
5
  SHA512:
6
- metadata.gz: 45b0facf53a886de062df08f238eb189f5367923010b2b09a6e37963b1d6967ab26e28ed03552ab1ca036b5275f478701db049bde07646695b58b6c4a497d236
7
- data.tar.gz: 1e5763a22376c7ecbebf858d270b0d5382938c55cea7b2d8124f7e74f442d2fd3317ae36c337d437480b8707b5b2992ebb9092274552b5d66aebe6c5bb85475d
6
+ metadata.gz: 63b32de312c1aeb021b09f847a5848ae0d052a4d0c839b985d6fcdc6f368f5bfdccf9cbee542fba3b269d96bad60f2c7f07bd4b884a1966f1702eeee43353b46
7
+ data.tar.gz: 16c64dbbe9b5e7f78657a7eb2726d2b0ad7753fbef97bf2c2215928ebf155722d14ab627cd910e9a17b4fa0db9e696a11c2159ae26aabadbc07d174451e7e4de
@@ -1,17 +1,16 @@
1
- <div style="background: linear-gradient(180deg, #ffe8ed, #fbedd3, #f8f9fa)">
2
-
3
1
  <div class="container py-5 text-center">
4
2
 
5
3
  <div class="row">
6
4
  <div class="col">
7
- <div class="display-6">Linux distributions</div>
5
+ <div class="display-5">Linux distributions</div>
8
6
  <p>We offer two Linux variants:</p>
9
7
  </div>
10
8
  </div>
11
9
 
12
10
  <div class="row">
13
11
  {% for item in site.data.centos.distributions limit:2 %}
14
- <div class="col-sm-6 px-5 mb-3{% if forloop.first %} border-end border-white{% endif %}">
12
+ <div class="col-sm-6 px-5 mb-3{% if forloop.first %} border-end{% endif %}">
13
+ <img role="img" src="{{ site.baseurl }}/{{ site.data.centos.identity.symbol.image }}" height="64" alt="{{ site.title }}">
15
14
  <h3 class="display-6 fw-bold"><a href="{{ item.page }}">{{ item.name }}</a></h3>
16
15
  <p class="lead">{{ item.description }}</p>
17
16
  </div>
@@ -25,5 +24,3 @@
25
24
  </div>
26
25
 
27
26
  </div>
28
-
29
- </div>
@@ -1,6 +1,6 @@
1
1
  <div class="bg-dark py-5" style="background: url({{ site.baseurl }}/assets/img/centos-motif.png) right center / cover;">
2
- <div class="container py-5 text-white text-center">
3
- <div class="row py-5">
2
+ <div class="container text-white text-center">
3
+ <div class="row">
4
4
  <div class="col">
5
5
  <h1 class="display-1 fw-bold">{{ site.title }}</h1>
6
6
  <p class="lead">{{ site.description }}</p>
@@ -1,26 +1,32 @@
1
1
  {% assign entries = site.posts | where: "category", "news-and-events" %}
2
2
 
3
- <div class="container pb-2 text-center">
3
+ <div class="container text-center">
4
+
4
5
  <div class="row">
5
- <div class="display-6">News and Events</div>
6
+ <div class="col">
7
+ <div class="display-6"><i class="fa-solid fa-calendar-days"></i></div>
8
+ <div class="display-6">News and Events</div>
9
+ </div>
10
+ </div>
6
11
 
12
+ <div class="row">
7
13
  <div class="col">
8
14
  <div class="list-group shadow mb-3">
9
15
  {% for i in entries limit:5 %}
10
16
  {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
11
17
  <a href="{{ i.link }}" class="list-group-item list-group-item-action d-flex gap-3 py-3" aria-current="true">
12
- <i class="text-primary mt-2 fa-solid fa-calendar-days"></i>
13
- <div class="d-flex gap-2 w-100 justify-content-between">
14
- <div class="text-start">
15
- <h5 class="text-primary">{{ i.title }}</h5>
16
- <p class="opacity-75">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
17
- </div>
18
- <small class="opacity-50 text-nowrap">{{ i.date | date: date_format }}</small>
19
- </div>
18
+ <i class="text-primary mt-2 fa-solid fa-calendar-days"></i>
19
+ <div class="d-flex gap-2 w-100 justify-content-between">
20
+ <div class="text-start">
21
+ <h5 class="text-primary">{{ i.title }}</h5>
22
+ <p class="opacity-75">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
23
+ </div>
24
+ <small class="opacity-50 text-nowrap">{{ i.date | date: date_format }}</small>
25
+ </div>
20
26
  </a>
21
27
  {% endfor %}
22
28
  </div>
23
29
  </div>
24
-
25
30
  </div>
31
+
26
32
  </div>
@@ -1,9 +1,13 @@
1
1
  {% assign entries = site.data.centos.planet %}
2
2
 
3
- <div class="container py-2 text-center">
3
+ <div class="container text-center mt-5 mb-5">
4
4
  <div class="row">
5
+ <div class="col">
6
+ <div class="display-6"><i class="fa-solid fa-globe"></i></div>
5
7
  <div class="display-6">Blob posts</div>
6
-
8
+ </div>
9
+ </div>
10
+ <div class="row">
7
11
  <div class="col">
8
12
  <div class="list-group shadow mb-3">
9
13
  {% for i in entries limit:5 %}
@@ -1,11 +1,12 @@
1
1
  {% assign sponsors_limit = 65 %}
2
2
 
3
- <div class="container py-2 text-center">
3
+ <div class="container text-center mt-5 mb-5">
4
4
 
5
5
  <div class="row">
6
6
  <div class="col">
7
- <div class="display-6">Sponsors</div>
8
- <p>CentOS would not be possible without the support of our sponsors. We would like to thank the following product/service for being a CentOS sponsor.</p>
7
+ <div class="display-6"><i class="fa-solid fa-hand-holding-heart"></i></div>
8
+ <div class="display-6">Sponsors</div>
9
+ <p>CentOS would not be possible without the support of our sponsors. We would like to thank the following product/service for being a CentOS sponsor.</p>
9
10
  </div>
10
11
  </div>
11
12
 
@@ -59,4 +60,5 @@
59
60
  <p>If you value our work, please consider <a href="sponsors"><i class="fa-solid fa-hand-holding-heart"></i> becoming a sponsor</a>!</p>
60
61
  </div>
61
62
  </div>
63
+
62
64
  </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-centos-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alain Reguera Delgado