lbenicio-minimal-v1 1.3.3 → 1.4.0
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 +4 -4
- data/_includes/footer.html +8 -6
- data/_includes/navigation.html +2 -2
- data/_includes/pagination.html +3 -3
- data/_includes/post-list.html +2 -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: b29e89bf9665db3aabd0d161e26ef3362a5add16659826b8d9d70fdc15a1aece
|
4
|
+
data.tar.gz: ced10f25aa28611d969411019ea7916ea4eed55d45fdc95cc471e22cef09f079
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51295ad8dc70695ba692c60ef4490c6a59f7defdfd197f32298c4fb3f3dfc2b2498560ebbbd93120b3bb5207dadabaa231236a055417c6bd4bd7a2d4bba0e0b1
|
7
|
+
data.tar.gz: 6716706c6b951e6b28b0da47415f976bac6f7ff7e587f335d49e48fe19fc24dd14b2d7c58488c78fffb9b8c9eee7df29979c4371dd90a70dd564d44f0de0ac3f
|
@@ -2,16 +2,16 @@
|
|
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.url }}
|
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.url }}
|
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.url }}
|
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.url }}
|
14
|
+
<a class="text-dark nav-blog-links" href="{{ site.url }}tag">Tags</a>
|
15
15
|
</li>
|
16
16
|
</ul>
|
17
17
|
</nav>
|
data/_includes/footer.html
CHANGED
@@ -10,13 +10,15 @@
|
|
10
10
|
</div>
|
11
11
|
</footer>
|
12
12
|
<!-- JS -->
|
13
|
+
<script
|
14
|
+
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
|
15
|
+
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
|
16
|
+
crossorigin="anonymous"
|
17
|
+
>
|
18
|
+
</script>
|
13
19
|
<script
|
14
20
|
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
|
15
21
|
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
|
16
|
-
crossorigin="anonymous"
|
22
|
+
crossorigin="anonymous"
|
23
|
+
>
|
17
24
|
</script>
|
18
|
-
<script
|
19
|
-
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
|
20
|
-
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
|
21
|
-
crossorigin="anonymous">
|
22
|
-
</script>
|
data/_includes/navigation.html
CHANGED
@@ -13,13 +13,13 @@
|
|
13
13
|
<a href="{{ site.default_url }}"><i class="fas fa-home text-black-50"></i></a>
|
14
14
|
</li>
|
15
15
|
<li class="list-group-item border-0">
|
16
|
-
<a href="{{ site.default_url }}
|
16
|
+
<a href="{{ site.default_url }}aboutme"><i class="fas fa-address-card text-black-50"></i></a>
|
17
17
|
</li>
|
18
18
|
<li class="list-group-item border-0">
|
19
19
|
<a href="{{ site.blog }}"><i class="fas fa-comment-alt text-black-50"></i></a>
|
20
20
|
</li>
|
21
21
|
<li class="list-group-item border-0">
|
22
|
-
<a href="{{ site.default_url }}
|
22
|
+
<a href="{{ site.default_url }}contact"><i class="fas fa-envelope-open text-black-50"></i></a>
|
23
23
|
</li>
|
24
24
|
</ul>
|
25
25
|
</nav>
|
data/_includes/pagination.html
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
<ul class="pagination d-flex justify-content-evenly pt-3">
|
3
3
|
{% if paginator.previous_page %}
|
4
4
|
<li class="ms-3 me-3 me-auto">
|
5
|
-
<a class="pagination-nav text-black" href="{{ paginator.previous_page_path
|
5
|
+
<a class="pagination-nav text-black" href="{{ paginator.previous_page_path }}">Newer</a>
|
6
6
|
</li>
|
7
7
|
{% endif %}
|
8
8
|
{% if paginator.next_page %}
|
9
9
|
<li class="ml-auto">
|
10
|
-
<a class="pagination-nav text-black" href="{{ paginator.next_page_path
|
10
|
+
<a class="pagination-nav text-black" href="{{ paginator.next_page_path }}">Older</a>
|
11
11
|
</li>
|
12
12
|
{% endif %}
|
13
13
|
</ul>
|
@@ -16,7 +16,7 @@
|
|
16
16
|
<ul class="pagination d-flex justify-content-evenly pt-3">
|
17
17
|
{% for trail in paginator.page_trail %}
|
18
18
|
<li class="ms-3 me-3 {% if page.url == trail.path %}selected font-weight-bold border-bottom border-dark{% endif %}">
|
19
|
-
<a class="pagination-nav text-black" href="{{ trail.path
|
19
|
+
<a class="pagination-nav text-black" href="{{ trail.path }}" title="{{trail.title}}">{{ trail.num }}</a>
|
20
20
|
</li>
|
21
21
|
{% endfor %}
|
22
22
|
</ul>
|
data/_includes/post-list.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
{% for post in paginator.posts %}
|
3
3
|
<li class="row mb-5">
|
4
4
|
<div class="col-12 d-flex justify-content-center text-center">
|
5
|
-
<a class="text-dark post-link" href="{{ post.url
|
5
|
+
<a class="text-dark post-link" href="{{ post.url }}">
|
6
6
|
<span>{{ post.title }}</span>
|
7
7
|
<br>
|
8
8
|
<small class="d-flex justify-content-center">{{ post.date | date: "%-d %B %Y" }}</small>
|
@@ -13,7 +13,7 @@
|
|
13
13
|
{% assign ph = ph_2[0] | split: '</p>' %}
|
14
14
|
{% if include.rm %}
|
15
15
|
<div><p>{{ ph }}</p></div>
|
16
|
-
<div><p><a href="{{ post.url
|
16
|
+
<div><p><a href="{{ post.url }}">Read more...</a></p></div>
|
17
17
|
{% endif %}
|
18
18
|
</li>
|
19
19
|
{% endfor %}
|