jekyll-dash 2.3.2 → 2.3.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/README.md +9 -0
- data/_layouts/tag_page.html +1 -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: 86176fed5582883183f08987c21b4e59cda96587cb1b219d6049faefe783d56b
|
4
|
+
data.tar.gz: 4e181fcc1be1fce2ef31f36d778c7d160c9e09901fae6ccf4d59effdb44117cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6122cc2193e2a6582c891e29777e30b5bbd89c41adc8db089f9707d8c6d43d98cdbcdc3a6799306d609fa2352f072836fbad0704ca3aec5ea36f459c3a417382
|
7
|
+
data.tar.gz: 9fb1e8ddab0751f8d3585e58e758ca96d36fa0f54e0d973d24f2dda0f8e1e73aa8e8a1cf1266202a4cca24d5ca2cc5c247029c67ecf6ebeb53cd2d6189482854
|
data/README.md
CHANGED
@@ -69,6 +69,9 @@ tag_permalink_style: pretty
|
|
69
69
|
tag_page_layout: tag_page
|
70
70
|
tag_page_dir: tag
|
71
71
|
|
72
|
+
# for github pages custom domains:
|
73
|
+
# include: [CNAME]
|
74
|
+
|
72
75
|
dash:
|
73
76
|
# the way how dates should be displayed
|
74
77
|
date_format: "%b %-d, %Y"
|
@@ -115,6 +118,12 @@ I have created [a guide on how to set this up here](https://bitbra.in/2021/10/03
|
|
115
118
|
|
116
119
|
You are not required to do this, but keep in mind that some functionality might not be available when using the Jekyll generator on Github directly!
|
117
120
|
|
121
|
+
If you are using a custom domain add in your main branch a file named CNAME with your domain there and uncomment this line in your config file:
|
122
|
+
```
|
123
|
+
include: [CNAME]
|
124
|
+
```
|
125
|
+
For more information about how to configure your CNAME file, read the [official documentation](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site).
|
126
|
+
|
118
127
|
## Additional Features
|
119
128
|
|
120
129
|
**Tagging** add the `jekyll/tagging` plugin to your `_config.yml` file to enable tagging. Do not forget to also add the following to your `Gemfile`:
|
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 %}
|
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.3.
|
4
|
+
version: 2.3.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
|