jekyll-dash 1.5.0 → 1.5.3
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/avatar.html +1 -1
- data/_layouts/home.html +1 -1
- data/_layouts/post.html +1 -1
- data/_layouts/tag_page.html +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49deeda502f072153b82d1a1d8450ad5a4dfac86149a7131ed146b2b2ee2d3ca
|
4
|
+
data.tar.gz: 7b5e3615d9cab7a968a2639a3de726218bb8713c187bd2fdc03d8346b8040e9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz: '
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '092c9a1e98ce1a9281fcd04e745e20a9675e9e53a492683b23e95e1bf0b332c7e0068916fdc9f9d7304d42239d742e04b8728b5c5aa5138ac8f269b6f8ab613d'
|
7
|
+
data.tar.gz: b88dcdda83f5eb7d77dacb24802086009f6af5de7ac38aa235c2333c10bc277d28e3845844aa89207dca7ab620e716e12a9bc57741b1ffa23e500547e225c4b0
|
data/_includes/avatar.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{% if site.dash.avatar_source == "github" and site.dash.github_username %}
|
2
2
|
{% capture avatar_image %}
|
3
|
-
https://github.com/{{ site.github_username }}.png
|
3
|
+
https://github.com/{{ site.dash.github_username }}.png
|
4
4
|
{% endcapture %}
|
5
5
|
{% elsif site.dash.avatar_source == "local" and site.dash.avatar_path %}
|
6
6
|
{% capture avatar_image %}
|
data/_layouts/home.html
CHANGED
@@ -17,7 +17,7 @@ layout: default
|
|
17
17
|
{% if site.plugins contains "jekyll/tagging" %}
|
18
18
|
<div class="post-tags">
|
19
19
|
{% for tag in post.tags %}
|
20
|
-
<a class="tag" href="
|
20
|
+
<a class="tag" href="{{ tag | tag_url }}">{{ tag }}</a>
|
21
21
|
{% endfor %}
|
22
22
|
</div>
|
23
23
|
{% endif %}
|
data/_layouts/post.html
CHANGED
@@ -9,7 +9,7 @@ layout: default
|
|
9
9
|
{% if site.plugins contains "jekyll/tagging" %}
|
10
10
|
<div class="post-tags">
|
11
11
|
{% for tag in page.tags %}
|
12
|
-
<a class="tag" href="
|
12
|
+
<a class="tag" href="{{ tag | tag_url }}">{{ tag }}</a>
|
13
13
|
{% endfor %}
|
14
14
|
</div>
|
15
15
|
{% endif %}
|
data/_layouts/tag_page.html
CHANGED
@@ -4,7 +4,7 @@ layout: default
|
|
4
4
|
{% unless site.dash.show_author == false %}
|
5
5
|
{% include author.html %}
|
6
6
|
{% endunless %}
|
7
|
-
<h1 class="post-title">articles tagged with <a class="tag" href="
|
7
|
+
<h1 class="post-title">articles tagged with <a class="tag" href="{{ page.tag | tag_url }}">{{ page.tag }}</a></h1>
|
8
8
|
<div class="post-links">
|
9
9
|
{% for post in site.posts %}
|
10
10
|
{% for tag in post.tags %}
|
@@ -17,7 +17,7 @@ layout: default
|
|
17
17
|
|
18
18
|
<div class="post-tags">
|
19
19
|
{% for tag in post.tags %}
|
20
|
-
<a class="tag" href="
|
20
|
+
<a class="tag" href="{{ tag | tag_url }}">{{ tag }}</a>
|
21
21
|
{% endfor %}
|
22
22
|
</div>
|
23
23
|
{% if site.dash.date_format %}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-dash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Gonzalez Sanchez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|