jekyll-theme-centos 0.1.14 → 0.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer.html +13 -9
- data/_includes/header/home.html +2 -2
- data/_sass/centos/_footer.scss +4 -8
- 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: f12183c184ab67c73ce8689a2f7f66dcb4ae75f5bdb5c697b7b05cba9aea8c7d
|
4
|
+
data.tar.gz: 478ede7e079e9157d2e6d94415b29c67d4afb5ef2006e16a9b3b03916b4909cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7d83fadcafd9f609fec6c45b1c5aacae800ffd71342fed4f158562a058a3e2892d1b686c3189a2f25e544a441d73ac97ca1ad2be30027c67b5ce92fc8f960b9
|
7
|
+
data.tar.gz: cc1072702b150120b8e36f0f5d723c04c0c6360c022f9bbdb48007f90c2da07d24ccee6f873a5757698e8c8c7c77fde9945fd4e5d13417165edd7f219d402969
|
data/_includes/footer.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
<footer class="footer">
|
2
2
|
<div class="container">
|
3
|
-
<div class="row
|
3
|
+
<div class="row">
|
4
4
|
|
5
|
-
{% assign column = site.navbar | where: "name", site.
|
5
|
+
{% assign column = site.navbar | where: "name", site.footer_links.column1 %}
|
6
6
|
{% for section in column %}
|
7
|
-
<section class="
|
8
|
-
<
|
7
|
+
<section class="links">
|
8
|
+
<h6><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
|
9
9
|
<ul>
|
10
10
|
{% for item in section.menu %}
|
11
11
|
<li><a href="{{ item.link }}">{{ item.name }}</a></li>
|
@@ -14,10 +14,10 @@
|
|
14
14
|
</section>
|
15
15
|
{% endfor %}
|
16
16
|
|
17
|
-
{% assign column = site.navbar | where: "name", site.
|
17
|
+
{% assign column = site.navbar | where: "name", site.footer_links.column2 %}
|
18
18
|
{% for section in column %}
|
19
|
-
<section class="
|
20
|
-
<
|
19
|
+
<section class="links">
|
20
|
+
<h6><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
|
21
21
|
<ul>
|
22
22
|
{% for item in section.menu %}
|
23
23
|
<li><a href="{{ item.link }}">{{ item.name }}</a></li>
|
@@ -30,15 +30,19 @@
|
|
30
30
|
<h4>{{ site.title }}</h4>
|
31
31
|
<p class="lead">{{ site.description }}</p>
|
32
32
|
<div class="lead social">
|
33
|
-
{% for item in site.
|
33
|
+
{% for item in site.footer_links.social %}
|
34
34
|
<a href="{{ item.link }}"><i class="{{ item.icon }}"></i></a>
|
35
35
|
{% endfor %}
|
36
36
|
</div>
|
37
37
|
</section>
|
38
38
|
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="row">
|
39
42
|
<section class="copyright">
|
40
|
-
<p>Copyright ©
|
43
|
+
<p>Copyright © {{ site.time | date: "%Y" }} {{ site.title }} {% for item in site.footer_links.copyright %} | <a href="{{ item.link }}">{{ item.text }}</a>{% endfor %}</p>
|
41
44
|
</section>
|
42
45
|
</div>
|
46
|
+
|
43
47
|
</div>
|
44
48
|
</footer>
|
data/_includes/header/home.html
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
<h1>{{ site.title }}</h1>
|
6
6
|
</header>
|
7
7
|
<p class="lead">{{ site.description }}</p>
|
8
|
-
<p class="lead">{{ site.
|
9
|
-
{% for item in site.
|
8
|
+
<p class="lead">{{ site.header.preamble }}</p>
|
9
|
+
{% for item in site.header.worklines %}
|
10
10
|
<a class="btn btn-light btn-lg" role="button" href="{{ item.link }}"><i class="{{ item.icon }}"></i> <strong>{{ item.name }}</strong></a>
|
11
11
|
{% endfor %}
|
12
12
|
</div>
|
data/_sass/centos/_footer.scss
CHANGED
@@ -20,18 +20,13 @@
|
|
20
20
|
margin-bottom: 0;
|
21
21
|
}
|
22
22
|
|
23
|
-
.
|
24
|
-
@extend
|
25
|
-
@extend %-margin;
|
26
|
-
}
|
27
|
-
|
28
|
-
.community {
|
29
|
-
@extend .col-sm-6, .col-md-3;
|
23
|
+
.links {
|
24
|
+
@extend .col-sm-3;
|
30
25
|
@extend %-margin;
|
31
26
|
}
|
32
27
|
|
33
28
|
.project {
|
34
|
-
@extend .col
|
29
|
+
@extend .col;
|
35
30
|
@extend %-margin;
|
36
31
|
|
37
32
|
.social {
|
@@ -42,6 +37,7 @@
|
|
42
37
|
}
|
43
38
|
|
44
39
|
.copyright {
|
40
|
+
@extend .col;
|
45
41
|
@extend %-margin;
|
46
42
|
font-size: small;
|
47
43
|
}
|