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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c51e855c1fb3004217431097199681e09854d74c217f9ef853ea18cd8e1a468b
4
- data.tar.gz: 745845b405d92e8fed26ee0a31fcf2d8b3f4ea150c4572e838c37bd84b786478
3
+ metadata.gz: 1c06b48312bde0a7f8e8d8cdd8cdd2b296e6130b0fba2b4f8c682264ab387599
4
+ data.tar.gz: 43a9e596eb63a9313250b68f2ca6593ef67a6eb2122f574d1dfb10e9c1db27be
5
5
  SHA512:
6
- metadata.gz: 166223275238afedf0f4b9a1e195793df2cf020549325122cef3968029bda8aa8617ea75e331266202b8fd03a478a021e1ccc786083276fcd9a9b07c36e68938
7
- data.tar.gz: 1df804482f3eadb8ca485cecfd4d7d7cd67f9da9bfd7636c7c92986842ba3495755a67ff8962828eed153a099eb12da5bc48f0f0ee20ec677eb5954019a6dfd0
6
+ metadata.gz: dca598a8a961d872873341c4ac9091b674fd1df633b2820825c1505bd15a5b3cbcbecd81543a05262996bb10d27bf50a891746b2dbb1f9668dd6845094a91f14
7
+ data.tar.gz: 525b31893a9e445b4ede7cf7d91e11b7580273b487c8817f7c620e37ed791d70cb05da00bf4990650d7af7fad4890f52be5866a0172ae9ad13f96faadce7d7d9
data/_config.yml CHANGED
@@ -7,8 +7,8 @@ email: steve-support@esporo.net
7
7
 
8
8
  lang: en
9
9
 
10
- url: "https://esporo.github.io/steve"
11
- baseurl: ""
10
+ url: ""
11
+ baseurl: "/steve/"
12
12
 
13
13
  # Theme settings
14
14
  steve:
@@ -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 %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: steve-for-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arthur Freitas