jekyll-theme-centos-test 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/home/distributions.html +3 -6
- data/_includes/home/header.html +2 -2
- data/_includes/home/news-and-events.html +17 -11
- data/_includes/home/planet.html +6 -2
- data/_includes/home/sponsors.html +5 -3
- 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: '01595cffeff7d9635b23c005b023dc60ce1975664c35a8b96a8f1ab01757b68d'
|
4
|
+
data.tar.gz: 1adfc0e6ad8c25b4f0c3c7d5dae802ca7284fb9709a7881bf2c008ae2fa3e012
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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-
|
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
|
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>
|
data/_includes/home/header.html
CHANGED
@@ -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
|
3
|
-
<div class="row
|
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
|
3
|
+
<div class="container text-center">
|
4
|
+
|
4
5
|
<div class="row">
|
5
|
-
<div class="
|
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
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
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>
|
data/_includes/home/planet.html
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
{% assign entries = site.data.centos.planet %}
|
2
2
|
|
3
|
-
<div class="container
|
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
|
3
|
+
<div class="container text-center mt-5 mb-5">
|
4
4
|
|
5
5
|
<div class="row">
|
6
6
|
<div class="col">
|
7
|
-
|
8
|
-
|
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>
|