jekyll-theme-cadre 0.1.19 → 0.1.20
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/disqus.html +1 -1
- data/_includes/other-posts.html +6 -2
- data/_includes/recent-posts.html +4 -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: bf5fa6b8aa799c658c04b1cc52fd3b3d82b5f53d62dd5d85963906bd458093ae
|
|
4
|
+
data.tar.gz: 1c8be7a932858ede304251b9ee1976f9fe35f14b90892a8624da5e4adc43c020
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1c106b84fcb272142811d3c6c201d532edef22b0a63c0e5131b40c0d1b443f2d790b6e1dea32d5065466b0895e81e69bf3fef32ed6fc44cfa90c0d9328c79c1
|
|
7
|
+
data.tar.gz: a57b7a1308813838174543c1ba79bb689240050396262d01c8b4ccb7c391bd54108216d11e8e4d5f53f979e5f1817c1f5cf5eaffce84a15b221f19da3a5326b8
|
data/_includes/disqus.html
CHANGED
data/_includes/other-posts.html
CHANGED
|
@@ -3,14 +3,18 @@
|
|
|
3
3
|
<div class="card-body">
|
|
4
4
|
|
|
5
5
|
<h3 class="card-title text-center">Recent Posts</h3>
|
|
6
|
-
|
|
6
|
+
</div>
|
|
7
|
+
<ul class="list-group list-group-flush">
|
|
7
8
|
{% for post in site.posts limit:3 %}
|
|
8
|
-
<li class="
|
|
9
|
+
<li class="list-group-item">
|
|
10
|
+
<time datetime="{{ page.date | date_to_xmlschema }}">{{ post.date | date: "%b %-d, %Y" }}</time>
|
|
11
|
+
»
|
|
9
12
|
<a class="card-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
|
10
13
|
</li>
|
|
11
14
|
{% endfor %}
|
|
12
15
|
</ul>
|
|
13
16
|
|
|
17
|
+
<div class="card-body">
|
|
14
18
|
{% if site.categories.size > 0 %}
|
|
15
19
|
<h3 class="card-title text-center">Categories</h3>
|
|
16
20
|
<div class="category-tags d-flex flex-wrap justify-content-center px-5">
|
data/_includes/recent-posts.html
CHANGED
|
@@ -3,14 +3,16 @@
|
|
|
3
3
|
<div class="card-body">
|
|
4
4
|
|
|
5
5
|
<h3 class="card-title text-center">Recent Posts</h3>
|
|
6
|
-
|
|
6
|
+
</div>
|
|
7
|
+
<ul class="list-group list-group-flush">
|
|
7
8
|
{% for post in site.posts limit: 5 %}
|
|
8
|
-
<li class="
|
|
9
|
+
<li class="list-group-item">
|
|
9
10
|
<time datetime="{{ page.date | date_to_xmlschema }}">{{ post.date | date: "%b %-d, %Y" }}</time>
|
|
10
11
|
»
|
|
11
12
|
<a class="card-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
|
12
13
|
</li>
|
|
13
14
|
{% endfor %}
|
|
14
15
|
</ul>
|
|
16
|
+
<div class="card-body">
|
|
15
17
|
</div>
|
|
16
18
|
</div>
|