hydn 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f221a11ca1adbfc56b068fd676d825546f32d5618200905928147be85d0aa98
4
- data.tar.gz: 2bb1105bfcbac9149de7fb51f3a14102476752e4ee6c1a833fa1564f85dbbac9
3
+ metadata.gz: a1387855732a46a9fd66a93df7ac35e6794cf7da86b4382d087a0132894040fe
4
+ data.tar.gz: fa8be31631fa64ac5ba0cc25d41f918e1388bffd160b11699814cd73c092ca8e
5
5
  SHA512:
6
- metadata.gz: d90d9bef0573a325b1dbdcf5a4ddac5d74220262fdc05a03b06585a1a8d99a2a73aef217e7594f5fb5077cb026e844480254f549539b8417ec9ccd6708cc3f37
7
- data.tar.gz: 929a0515389fa98e86a9a2558e62889d435d450bb9d369f6b420bcc2cd17f79864cf056c244597439a7dceb099cf57afeb2ee32a60c277a8fab20a15afe4d523
6
+ metadata.gz: b2a41f833cc8355d25b80be58d482a324c033d5bf425ca142a91046d18dff201dd2b5de948f05be88e86ade507a5d1ed1e5096adc6ed529c42c2deeca47bc2e1
7
+ data.tar.gz: e4158e012476b4ddae0317117d35ebeaf068a2a870872fd6ca2484e8057799ff0df26cdfdc3c19e5945dabb131cd7df41c9c36369da566ee2ae76ab510f65d92
@@ -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 %}
@@ -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 %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hydn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - CYAN4S