hydn 0.0.0 → 0.0.1
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/navigation.html +1 -1
- data/_includes/post-author-list.html +1 -1
- data/_layouts/all-categories.html +1 -1
- data/_layouts/all-series.html +2 -2
- 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: a1387855732a46a9fd66a93df7ac35e6794cf7da86b4382d087a0132894040fe
|
|
4
|
+
data.tar.gz: fa8be31631fa64ac5ba0cc25d41f918e1388bffd160b11699814cd73c092ca8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2a41f833cc8355d25b80be58d482a324c033d5bf425ca142a91046d18dff201dd2b5de948f05be88e86ade507a5d1ed1e5096adc6ed529c42c2deeca47bc2e1
|
|
7
|
+
data.tar.gz: e4158e012476b4ddae0317117d35ebeaf068a2a870872fd6ca2484e8057799ff0df26cdfdc3c19e5945dabb131cd7df41c9c36369da566ee2ae76ab510f65d92
|
data/_includes/navigation.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<li><a href="{{ '/series' | relative_url }}">SERIES</a></li>
|
|
9
9
|
|
|
10
10
|
{% for category in site.category-pages %}
|
|
11
|
-
<li><a href="{{ category.url }}">{{ category.title | upcase }}</a></li>
|
|
11
|
+
<li><a href="{{ category.url | relative_url }}">{{ category.title | upcase }}</a></li>
|
|
12
12
|
{% endfor %}
|
|
13
13
|
</ul>
|
|
14
14
|
</nav>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
{% for author in authors %}
|
|
7
7
|
{% assign author_data = site.authors | where: "short_name", author | first %}
|
|
8
|
-
{% capture inner %}{% if author_data %}<a href="{{ author_data.url }}">{{ author_data.name }}</a>{% else %}{{ author }}{% endif %}{% endcapture %}
|
|
8
|
+
{% capture inner %}{% if author_data %}<a href="{{ author_data.url | relative_url }}">{{ author_data.name }}</a>{% else %}{{ author }}{% endif %}{% endcapture %}
|
|
9
9
|
{% assign post_author_list = post_author_list | push: inner %}
|
|
10
10
|
{% endfor %}
|
|
11
11
|
|
|
@@ -10,7 +10,7 @@ layout: default
|
|
|
10
10
|
{% assign category-page = site.category-pages | where: "title", category[0] | first %}
|
|
11
11
|
|
|
12
12
|
{% if category-page %}
|
|
13
|
-
<h2><a href="{{ category-page.url }}">{{ category[0] | upcase }}</a></h2>
|
|
13
|
+
<h2><a href="{{ category-page.url | relative_url }}">{{ category[0] | upcase }}</a></h2>
|
|
14
14
|
{% else %}
|
|
15
15
|
<h2>{{ category[0] | upcase }}</h2>
|
|
16
16
|
{% endif %}
|
data/_layouts/all-series.html
CHANGED
|
@@ -8,9 +8,9 @@ layout: default
|
|
|
8
8
|
{% for series in site.series %}
|
|
9
9
|
|
|
10
10
|
{% assign series-page = site.series | where: "short_name", series.short_name | first %}
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
{% if series-page %}
|
|
13
|
-
<h2><a href="{{ series-page.url }}">{{ series.title }}</a></h2>
|
|
13
|
+
<h2><a href="{{ series-page.url | relative_url }}">{{ series.title }}</a></h2>
|
|
14
14
|
{% else %}
|
|
15
15
|
<h2>{{ series.title }}</h2>
|
|
16
16
|
{% endif %}
|