jekyll-whiteglass 1.6.0 → 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/_layouts/archive.html +2 -3
- data/_layouts/category_archives.html +2 -3
- 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: c258546c3c41a53faacbf840e6978be1b4c92788f5735617e1d43c03753d621c
|
4
|
+
data.tar.gz: e063698a7905f564cc77b772e49ff1469f2df4983897601dad8a64814c3102bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2663e84f6eff2f638c6ead2d06a0da04e2b15611eaa9624e3ecd5dd6c3e1c87066389ea6ffde2185025ee3579a2df2e09cb358d90e885423227e2644e0ff73dd
|
7
|
+
data.tar.gz: 964344b4dcfcb801ddeaf39e2f07b84746da93c1f06a5f7bab59fdf80f144bc0667c8b858b87a113c8da47b7af3c56f112b73baac598ab53375014836c198bef
|
data/CHANGELOG.md
CHANGED
data/_layouts/archive.html
CHANGED
@@ -26,11 +26,10 @@ layout: default
|
|
26
26
|
</span>
|
27
27
|
|
28
28
|
<h2>
|
29
|
-
{% capture link_lang %}{% if lang != empty %} lang="{{ lang }}"{% endif %}{% endcapture %}
|
30
29
|
{% if post.external-url %}
|
31
|
-
<a class="post-link" href="{{ post.external-url }}"
|
30
|
+
<a class="post-link" href="{{ post.external-url }}">{{ post.title | escape }} →</a>
|
32
31
|
{% else %}
|
33
|
-
<a class="post-link" href="{{ post.url | relative_url }}"{{
|
32
|
+
<a class="post-link" href="{{ post.url | relative_url }}"{% if lang != empty %} lang="{{ lang }}"{% endif %}>{{ post.title | escape }}</a>
|
34
33
|
{% endif %}
|
35
34
|
</h2>
|
36
35
|
</li>
|
@@ -24,11 +24,10 @@ layout: default
|
|
24
24
|
</span>
|
25
25
|
|
26
26
|
<h2>
|
27
|
-
{% capture link_lang %}{% if lang != empty %} lang="{{ lang }}"{% endif %}{% endcapture %}
|
28
27
|
{% if post.external-url %}
|
29
|
-
<a class="post-link" href="{{ post.external-url }}"
|
28
|
+
<a class="post-link" href="{{ post.external-url }}">{{ post.title | escape }} →</a>
|
30
29
|
{% else %}
|
31
|
-
<a class="post-link" href="{{ post.url | relative_url }}"{{
|
30
|
+
<a class="post-link" href="{{ post.url | relative_url }}"{% if lang != empty %} lang="{{ lang }}"{% endif %}>{{ post.title | escape }}</a>
|
32
31
|
{% endif %}
|
33
32
|
</h2>
|
34
33
|
</li>
|