jekyll-dash 1.5.1 → 1.6.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38df2dc5ed74aae72fabcb7bf9ac4068c71bee323e39d2b1bea2964fd16ffaa4
4
- data.tar.gz: e5b1853e9737b119540d4773518c0a9406c455a8c68702cb9a8c9fb7a9d10d02
3
+ metadata.gz: a4d348a3d40bb3a870c2afd3f57623472ef8ea3726cc8708d29c315f54121b62
4
+ data.tar.gz: dad1b58f3148a29a1c5a35008348778baa4c93f17f41e6faf5dfa4966bfb84b6
5
5
  SHA512:
6
- metadata.gz: f94d2234e44c5a0f6b482277ca6ac00d5de3cb5953935c65c3ddb233733cdd5db177746cc69c01a76b6c7e30c3c4dcaa8f65a5276bc3c8baba11b5ea8c1070e8
7
- data.tar.gz: fde4b61847ecfef4a164257bb02e02e3d87dbe2f2bd05d8bd61244e42df7517fd95706716195348f0980bbf309298daf1fb99d27045d502e56c367184bf73e51
6
+ metadata.gz: 2d34ba63f8fa5927d8cf45e8291f1564f4dc9a426b871c74b2a73e8641fe2ac03213400b3253c906b9c20897c4dcd95bebb939b21d648f394e582e8758e04204
7
+ data.tar.gz: 76ce1c062fc8aaf63ada76d05327e61d7e508cd16eb6106241321813cd34d7966ff890f9f92bc89ea190b3415a285657999422b9e208240205c72e653ac7bf94
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="/tag/{{ tag }}/">{{ tag }}</a>
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,11 +9,16 @@ 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="/tag/{{ tag }}/">{{ tag }}</a>
12
+ <a class="tag" href="{{ tag | tag_url }}">{{ tag }}</a>
13
13
  {% endfor %}
14
14
  </div>
15
15
  {% endif %}
16
- <div class="post-date">Published on {{ page.date | date_to_string }}</div>
16
+ <div class="post-date">
17
+ Published on {{ page.date | date_to_string }}
18
+ {% if page.author != null %}
19
+ by {{ page.author }}
20
+ {% endif %}
21
+ </div>
17
22
  {% if page.description != null %}
18
23
  <noscript>
19
24
  <div class="post-description">{{ page.description }}</div>
@@ -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="/tag/{{ page.tag }}/">{{ page.tag }}</a></h1>
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="/tag/{{ tag }}/">{{ tag }}</a>
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.1
4
+ version: 1.6.0
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: 2021-11-27 00:00:00.000000000 Z
11
+ date: 2022-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll