lbenicio-minimal-v1 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/blog-navigation.html +5 -5
- data/_layouts/default.html +2 -1
- data/_layouts/feed.html +3 -2
- 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: 273bfb340eb26096c80ef74d208b446b9f3251610113f533e33d85f0b8a5a684
|
4
|
+
data.tar.gz: ee92ccb94b41c2370706e1440e6ae3a75277262d4b0a32c1d501ac1f1fd38841
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 103bba1ce5f3573f752faf1294957987a4ee112524238ffed78d5d9bd34d7cbb2a2c033e774843a6d1541b1aad2daffef0d42a2a6a7fc37003e9f12fab9309de
|
7
|
+
data.tar.gz: 324499bc880682456850408762e7c144ed1d3a71bb52207fc42d8393df630d9523056df0dc75af3dfe24a788400efec10cf0b2abf80ac85b5b7c1c54b83b0e9e
|
@@ -1,17 +1,17 @@
|
|
1
|
-
<nav class="mt-
|
1
|
+
<nav class="container-fluid mt-5 mb-5 border-bottom border-2 border-light w-75 pb-5">
|
2
2
|
<nav class="offset-3 col-6">
|
3
3
|
<ul class="list-group list-group-horizontal justify-content-center">
|
4
4
|
<li class="list-group-item border-0">
|
5
|
-
<a class="text-dark nav-blog-links" href="{{ site.
|
5
|
+
<a class="text-dark nav-blog-links" href="{{ site.url }}/">Articles</a>
|
6
6
|
</li>
|
7
7
|
<li class="list-group-item border-0">
|
8
|
-
<a class="text-dark nav-blog-links" href="{{ site.
|
8
|
+
<a class="text-dark nav-blog-links" href="{{ site.url }}/feed/posts">Feed</a>
|
9
9
|
</li>
|
10
10
|
<li class="list-group-item border-0">
|
11
|
-
<a class="text-dark nav-blog-links" href="{{ site.
|
11
|
+
<a class="text-dark nav-blog-links" href="{{ site.url }}/category">Categories</a>
|
12
12
|
</li>
|
13
13
|
<li class="list-group-item border-0">
|
14
|
-
<a class="text-dark nav-blog-links" href="{{ site.
|
14
|
+
<a class="text-dark nav-blog-links" href="{{ site.url }}/tag">Tags</a>
|
15
15
|
</li>
|
16
16
|
</ul>
|
17
17
|
</nav>
|
data/_layouts/default.html
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
<head>
|
5
5
|
{% include head.html %}
|
6
6
|
</head>
|
7
|
+
|
7
8
|
<body class="bg-body d-flex flex-column min-vh-100 {% if page.date %} body-posts{% endif %}">
|
8
9
|
{% include fork.html %}
|
9
10
|
{% include navigation.html %}
|
@@ -22,4 +23,4 @@
|
|
22
23
|
{% include analytics.html %}
|
23
24
|
</body>
|
24
25
|
|
25
|
-
</html>
|
26
|
+
</html>
|
data/_layouts/feed.html
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
<head>
|
5
5
|
{% include head.html %}
|
6
6
|
</head>
|
7
|
+
|
7
8
|
<body class="bg-body d-flex flex-column min-vh-100 {% if page.date %} body-posts{% endif %}">
|
8
9
|
{% include fork.html %}
|
9
10
|
{% include navigation.html %}
|
@@ -11,7 +12,7 @@
|
|
11
12
|
<div class="container-fluid mt-2">
|
12
13
|
<div class="row">
|
13
14
|
<div class="offset-xs-1 col-xs-10 offset-sm-3 col-sm-6">
|
14
|
-
<section class="content">
|
15
|
+
<section class="content mt-5">
|
15
16
|
<div class="container-fluid" id="main-container">
|
16
17
|
{{ content }}
|
17
18
|
{% include pagination.html %}
|
@@ -24,4 +25,4 @@
|
|
24
25
|
{% include analytics.html %}
|
25
26
|
</body>
|
26
27
|
|
27
|
-
</html>
|
28
|
+
</html>
|