steve-for-jekyll 1.0 → 1.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/_config.yml +2 -2
- data/_includes/blog/post.html +2 -2
- data/_layouts/home.html +2 -2
- data/_layouts/post.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: 1c06b48312bde0a7f8e8d8cdd8cdd2b296e6130b0fba2b4f8c682264ab387599
|
4
|
+
data.tar.gz: 43a9e596eb63a9313250b68f2ca6593ef67a6eb2122f574d1dfb10e9c1db27be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dca598a8a961d872873341c4ac9091b674fd1df633b2820825c1505bd15a5b3cbcbecd81543a05262996bb10d27bf50a891746b2dbb1f9668dd6845094a91f14
|
7
|
+
data.tar.gz: 525b31893a9e445b4ede7cf7d91e11b7580273b487c8817f7c620e37ed791d70cb05da00bf4990650d7af7fad4890f52be5866a0172ae9ad13f96faadce7d7d9
|
data/_config.yml
CHANGED
data/_includes/blog/post.html
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
<header class="content-header">
|
3
3
|
{% if post.title != "" %}
|
4
4
|
<h2 class="content-title">
|
5
|
-
<a href="{{ post.url }}" rel="bookmark">{{ post.title }}</a>
|
5
|
+
<a href="{{ post.url | relative_url }}" rel="bookmark">{{ post.title }}</a>
|
6
6
|
</h2>
|
7
7
|
{% endif %}
|
8
8
|
|
9
9
|
<div class="content-meta">
|
10
|
-
<a class="content-date" href="{{ post.url }}" rel="bookmark">
|
10
|
+
<a class="content-date" href="{{ post.url | relative_url }}" rel="bookmark">
|
11
11
|
<time datetime="{{ post.date | date_to_xmlschema }}">
|
12
12
|
{{ post.date | date: site.steve.date_formats.post }}
|
13
13
|
</time>
|
data/_layouts/home.html
CHANGED
@@ -9,13 +9,13 @@ layout: blog
|
|
9
9
|
{% if paginator.total_pages > 1 %}
|
10
10
|
<nav class="content-navigation">
|
11
11
|
{% if paginator.previous_page %}
|
12
|
-
<a class="nav-link prev-link" href="{{ paginator.previous_page_path }}" rel="prev">
|
12
|
+
<a class="nav-link prev-link" href="{{ paginator.previous_page_path | relative_url }}" rel="prev">
|
13
13
|
{{ site.steve.pagination.next_page }}
|
14
14
|
</a>
|
15
15
|
{% endif %}
|
16
16
|
|
17
17
|
{% if paginator.next_page %}
|
18
|
-
<a class="nav-link next-link" href="{{ paginator.next_page_path }}" rel="next">
|
18
|
+
<a class="nav-link next-link" href="{{ paginator.next_page_path | relative_url }}" rel="next">
|
19
19
|
{{ site.steve.pagination.prev_page }}
|
20
20
|
</a>
|
21
21
|
{% endif %}
|
data/_layouts/post.html
CHANGED
@@ -52,7 +52,7 @@ layout: blog
|
|
52
52
|
<li>
|
53
53
|
{%- assign tag_slug = tag | slugify -%}
|
54
54
|
|
55
|
-
<a href="{{ site.jekyll-archives.permalinks.tag | replace: ':name', tag_slug }}" rel="tag">
|
55
|
+
<a href="{{ site.jekyll-archives.permalinks.tag | replace: ':name', tag_slug | relative_url }}" rel="tag">
|
56
56
|
{{ tag }}
|
57
57
|
</a>
|
58
58
|
</li>
|
@@ -77,13 +77,13 @@ layout: blog
|
|
77
77
|
{% if page.previous or page.next %}
|
78
78
|
<nav class="content-navigation">
|
79
79
|
{% if page.previous %}
|
80
|
-
<a class="nav-link prev-link" href="{{ page.previous.url }}" rel="prev">
|
80
|
+
<a class="nav-link prev-link" href="{{ page.previous.url | relative_url }}" rel="prev">
|
81
81
|
{{ site.steve.pagination.prev_post }} <strong>{{ page.previous.title }}</strong>
|
82
82
|
</a>
|
83
83
|
{% endif %}
|
84
84
|
|
85
85
|
{% if page.next %}
|
86
|
-
<a class="nav-link next-link" href="{{ page.next.url }}" rel="next">
|
86
|
+
<a class="nav-link next-link" href="{{ page.next.url | relative_url }}" rel="next">
|
87
87
|
{{ site.steve.pagination.next_post }} <strong>{{ page.next.title }}</strong>
|
88
88
|
</a>
|
89
89
|
{% endif %}
|