jekyll-theme-centos 2.3.0.beta.83 → 2.3.0.beta.84
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 +4 -4
- data/_includes/announcement.html +6 -0
- data/_includes/default/header.html +7 -0
- data/_includes/toc-accordion.html +0 -2
- data/_layouts/default.html +4 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03fcc9bd3058122091db95cb18be4574011f4c2388ba79ce36b1320ca6e5d9d1
|
|
4
|
+
data.tar.gz: 4cc147161dc229a42325e1ce7314c6ae7eeb4086ea6d925c82ff9c79bdb9c7ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4518b4d43fee15ce672ba49d2c0d8c7c43ce5d028afb119579fc22555ff75b62cce0a52a9d987e5c27bae4bb3a2a319dd29a5603601b557d13cabeb33e774878
|
|
7
|
+
data.tar.gz: e89516d7fc8f76a9ac07b13ce698d4fc327c47e81edac6f622cc5ae274635a0187f421e9e15ee1ea28c125e6906da2417197bdcbf07a5352993b0c52e5295b40
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{% for alert in page.with_announcements %}
|
|
2
|
+
<div class="alert alert-primary alert-dismissible fade show shadow" role="alert">
|
|
3
|
+
<strong>{{ alert.title }}</strong> {{ alert.content }}
|
|
4
|
+
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
5
|
+
</div>
|
|
6
|
+
{% endfor %}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
<div class="bg-image bg-dark text-light">
|
|
2
2
|
<div class="container py-5">
|
|
3
|
+
{% if page.with_announcements.size > 0 %}
|
|
4
|
+
<div class="row">
|
|
5
|
+
<div class="col">
|
|
6
|
+
{% include announcement.html %}
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
9
|
+
{% endif %}
|
|
3
10
|
<div class="row my-3">
|
|
4
11
|
<div class="col">
|
|
5
12
|
<div class="display-4 fw-bold">{{ page.title }}</div>
|
data/_layouts/default.html
CHANGED
|
@@ -11,11 +11,15 @@
|
|
|
11
11
|
<div class="container py-5">
|
|
12
12
|
<div class="row">
|
|
13
13
|
<div class="col">{% include breadcrumbs.html %}</div>
|
|
14
|
+
{% if page.with_editbar %}
|
|
14
15
|
<div class="col">{% include editbar.html %}</div>
|
|
16
|
+
{% endif %}
|
|
15
17
|
</div>
|
|
18
|
+
{% if page.with_toc %}
|
|
16
19
|
<div class="row">
|
|
17
20
|
<div class="col">{% include toc-accordion.html %}</div>
|
|
18
21
|
</div>
|
|
22
|
+
{% endif %}
|
|
19
23
|
<div class="row">
|
|
20
24
|
<div class="col mt-3">{{ content }}</div>
|
|
21
25
|
</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.3.0.beta.
|
|
4
|
+
version: 2.3.0.beta.84
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Release
|
|
@@ -51,6 +51,7 @@ files:
|
|
|
51
51
|
- _data/centos/navbar.yml
|
|
52
52
|
- _data/full-altarchlist.csv
|
|
53
53
|
- _data/full-mirrorlist.csv
|
|
54
|
+
- _includes/announcement.html
|
|
54
55
|
- _includes/blog/header.html
|
|
55
56
|
- _includes/breadcrumbs.html
|
|
56
57
|
- _includes/default/alert-danger.html
|