jekyll-dash 2.3.3 → 2.4.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 +4 -4
- data/README.md +2 -2
- data/_layouts/post.html +6 -1
- 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: df30ced951827345fbf9c992969c939e8e4897744c7fdee6569b88bfca75528f
|
|
4
|
+
data.tar.gz: 58ce54ec19d8fe9a97bc1ecc908a2b6938def4fe109bedcc46ba24f7cc1bcac6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d1c5a81a298b32d6e38c9f9c4784d98df50ad19ab80127ba4befd517f75c7f065282c0c3eb7de611720b00a5ac902f13afd058bda0bd3ec5cddcd395d725e9d
|
|
7
|
+
data.tar.gz: b227f7ee77e2b826535969c13c67bef741e5af3f68765c8415d0f4e960087631bcbae26049d9301c6dad31cfd152f9f590935484d9938de05497f3720660c3e2
|
data/README.md
CHANGED
|
@@ -31,7 +31,7 @@ For **Jekyll 3**:
|
|
|
31
31
|
gem 'jekyll-dash', '~> 1'
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
> Keep in mind: Github pages generation only supports Jekyll 3.
|
|
34
|
+
> Keep in mind: Github pages generation [only supports Jekyll 3.9.x right now](https://pages.github.com/versions/).
|
|
35
35
|
|
|
36
36
|
For **Jekyll 4**:
|
|
37
37
|
```ruby
|
|
@@ -150,7 +150,7 @@ gem "liquid-md5"
|
|
|
150
150
|
|
|
151
151
|
> I am using this theme but I don't see any tags?
|
|
152
152
|
|
|
153
|
-
**Solution**: as described above you have to add the tagging plugin. Additionally, tags do not work natively by Github Pages. You have to build your site on an external CI and push the `_site` artifacts to a hosting repository.
|
|
153
|
+
**Solution**: as described above you have to add the tagging plugin. Additionally, tags do not work natively by Github Pages. [You have to build your site on an external CI](https://bitbra.in/2021/10/03/host-your-own-blog-for-free-with-custom-domain.html) and push the `_site` artifacts to a hosting repository.
|
|
154
154
|
|
|
155
155
|
> I am getting an error that Bundler could not find compatible versions for gem
|
|
156
156
|
|
data/_layouts/post.html
CHANGED
|
@@ -13,7 +13,12 @@ layout: default
|
|
|
13
13
|
{% endfor %}
|
|
14
14
|
</div>
|
|
15
15
|
{% endif %}
|
|
16
|
-
<div class="post-date">
|
|
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>
|
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: 2.
|
|
4
|
+
version: 2.4.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: 2022-
|
|
11
|
+
date: 2022-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|