jekyll-theme-centos 0.1.17 → 0.1.18
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/footer.html +2 -0
- data/_includes/header/home.html +4 -0
- 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: cd4de3f9d5e891cc8f14bbd7407a58e23733ff2d3dd54529aeab2df3bbe35283
|
|
4
|
+
data.tar.gz: 9e071c4e347e5caa1bfc1eef37bf07439d414fb8c91ffae195fcf93ec225380d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ba00261f0a3959a8d35380c362f8995744585ff6bd8ecfdfadaaa7300c57855105d8055a561f5b0ca93124ad9571804b4d065f7035baf484d63f340fec0e7a6
|
|
7
|
+
data.tar.gz: a2481a62b9efec9341666c3707c051e251eeb7bf276a32dcab6779317250ce0f921fa3d19cb7bac65fbf08b42b665c26161b312fee7407521dba984350589846
|
data/_includes/footer.html
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
<div class="container">
|
|
3
3
|
<div class="row">
|
|
4
4
|
|
|
5
|
+
{% if site.footer.columns %}
|
|
5
6
|
{% for column in site.footer.columns %}
|
|
6
7
|
{% assign links = site.navbar | where: "name", column %}
|
|
7
8
|
{% for section in links %}
|
|
@@ -15,6 +16,7 @@
|
|
|
15
16
|
</section>
|
|
16
17
|
{% endfor %}
|
|
17
18
|
{% endfor %}
|
|
19
|
+
{% endif %}
|
|
18
20
|
|
|
19
21
|
<section class="project">
|
|
20
22
|
<h4>{{ site.title }}</h4>
|
data/_includes/header/home.html
CHANGED
|
@@ -5,10 +5,14 @@
|
|
|
5
5
|
<h1>{{ site.title }}</h1>
|
|
6
6
|
</header>
|
|
7
7
|
<p class="lead">{{ site.description }}</p>
|
|
8
|
+
{% if site.header.preamble %}
|
|
8
9
|
<p class="lead">{{ site.header.preamble }}</p>
|
|
10
|
+
{% endif %}
|
|
11
|
+
{% if site.header.worklines %}
|
|
9
12
|
{% for item in site.header.worklines %}
|
|
10
13
|
<a class="btn btn-light btn-lg" role="button" href="{{ item.link }}"><i class="{{ item.icon }}"></i> <strong>{{ item.name }}</strong></a>
|
|
11
14
|
{% endfor %}
|
|
15
|
+
{% endif %}
|
|
12
16
|
</div>
|
|
13
17
|
</div>
|
|
14
18
|
</div>
|