jekyll-theme-hyde-dark 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/sidebar.html +3 -3
- 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: 23d1a7d487faad6f57b8797b9b69d75c7b0658300027ac9198b54c9d11d8951b
|
4
|
+
data.tar.gz: e4602f5497fad7c0fa0270162a1a786943da2fcf6286999f55332e24e7816c6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28412393d321f42405af03caefb67961fa9f5d26edfe2e905f75e639b5e11e95e87ae6bb1296afb0994dfc6436ce2a07d45d6fe601415f781b93960567a5ad01
|
7
|
+
data.tar.gz: f9ceddaa7fd43ad4ac64c67ff5b0ab63c7ed8a1acfe9782c497fb08cd1290cd6d62487db1567614685442d3160dcb50cd0bdfec63a412b70cc222f67ff14be36
|
data/_includes/sidebar.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<div class="container">
|
7
7
|
<div class="sidebar-about">
|
8
8
|
<h1>
|
9
|
-
<a href="{{ site.baseurl }}">
|
9
|
+
<a href="{{ site.baseurl | relative_url }}">
|
10
10
|
{{ site.title }}
|
11
11
|
</a>
|
12
12
|
</h1>
|
@@ -16,7 +16,7 @@
|
|
16
16
|
<nav class="sidebar-nav">
|
17
17
|
<a
|
18
18
|
class="sidebar-nav-item{% if page.url == site.baseurl %} active{% endif %}"
|
19
|
-
href="{{ site.baseurl }}"
|
19
|
+
href="{{ site.baseurl | relative_url }}"
|
20
20
|
>Home</a
|
21
21
|
>
|
22
22
|
|
@@ -26,7 +26,7 @@
|
|
26
26
|
pages_list %} {% if node.title != null %} {% if node.layout == "page" %}
|
27
27
|
<a
|
28
28
|
class="sidebar-nav-item{% if page.url == node.url %} active{% endif %}"
|
29
|
-
href="{{ node.url }}"
|
29
|
+
href="{{ node.url | relative_url }}"
|
30
30
|
>{{ node.title }}</a
|
31
31
|
>
|
32
32
|
{% endif %} {% endif %} {% endfor %}
|