jekyll-theme-hydeout 4.0.0 → 4.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
  SHA1:
3
- metadata.gz: 8ede74be147a0b99c886b90309f4361e690e9cfa
4
- data.tar.gz: '028cc1a510c0a274481943f31c2b84b40460f226'
3
+ metadata.gz: c483a6becbe82503f4b721bbb3522c5b66d5ab6d
4
+ data.tar.gz: 3a1710afe2d9cb736e0d9e62dfb4700312249cbf
5
5
  SHA512:
6
- metadata.gz: dd0f4f5752f3ba7866dd8a40530f06fb273065c2e2b27f51de019f86ee5ab2b16507a5c3d5ac5a334d1cb5fa43a5eaed4c2e756895e79dd91238cebd420d0a62
7
- data.tar.gz: 5a4d3728150d4a6a1158673b706069073d4c394f115f851e9ccf365f352fc7c6dc743013d19fc91f44df8dca5ba264e3289e5dfe078aa66565017f6f7371ffe9
6
+ metadata.gz: 9e2476e64a953c5d4ae7503cf67687cb153a89cceefcaac7eb3b26c0300655bddf3b29ef7301b46129134327232fa40e658167ea10bb1cf7e34a9127d8691f36
7
+ data.tar.gz: 451131651df9f6d66c614c13f0aadd920e5129861a90fa20d3bead776b867b5e3e500919504d406287f62d982a0edb50ce229b7c4949f9707f84eebcab25de8e
@@ -6,7 +6,7 @@
6
6
  {% if node.title != null %}
7
7
  {% if node.layout == "category" %}
8
8
  <a class="category-link {% if page.url == node.url %} active{% endif %}"
9
- href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a>
9
+ href="{{ node.url | relative_url }}">{{ node.title }}</a>
10
10
  {% endif %}
11
11
  {% endif %}
12
12
  {% endfor %}
@@ -1,4 +1,4 @@
1
1
  <p>
2
2
  &copy; {{ site.time | date: '%Y' }}.
3
- <a href="{{ site.baseurl }}/LICENSE.md">MIT License.</a>
3
+ <a href="{{ "/LICENSE.md" | relative_url }}">MIT License.</a>
4
4
  </p>
@@ -1,2 +1,2 @@
1
- <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/favicon.png" />
2
- <link rel="shortcut icon" href="{{ site.baseurl }}/favicon.ico" />
1
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ "/favicon.png" | relative_url }}" />
2
+ <link rel="shortcut icon" href="{{ "/favicon.ico" | relative_url}}" />
@@ -1,5 +1,5 @@
1
1
  <head>
2
- <link href="http://gmpg.org/xfn/11" rel="profile" />
2
+ <link href="https://gmpg.org/xfn/11" rel="profile" />
3
3
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
4
4
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5
5
 
@@ -17,14 +17,14 @@
17
17
  {% include google-analytics.html %}
18
18
 
19
19
  <!-- CSS -->
20
- <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css" />
20
+ <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" />
21
21
  {% include font-includes.html %}
22
22
 
23
23
  <!-- Icons -->
24
24
  {% include favicons.html %}
25
25
 
26
26
  <!-- RSS -->
27
- <link rel="alternate" type="application/rss+xml" title="RSS" href="/{{ site.feed.path | default: 'feed.xml' }}" />
27
+ <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ site.feed.path | default: 'feed.xml' | relative_url }}" />
28
28
 
29
29
  {% include custom-head.html %}
30
30
  </head>
@@ -7,7 +7,7 @@
7
7
  {% if node.title != null %}
8
8
  {% if node.sidebar_link %}
9
9
  <a class="page-link {% if page.url == node.url %} active{% endif %}"
10
- href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a>
10
+ href="{{ node.url | relative_url }}">{{ node.title }}</a>
11
11
  {% endif %}
12
12
  {% endif %}
13
13
  {% endfor %}
@@ -1,7 +1,7 @@
1
1
  {% if paginator.previous_page %}
2
2
  <div class="pagination">
3
3
  <a class="pagination-item newer"
4
- href="{{ site.baseurl }}{{ paginator.previous_page_path }}">
4
+ href="{{ paginator.previous_page_path | relative_url }}">
5
5
  Newer
6
6
  </a>
7
7
  </div>
@@ -1,7 +1,7 @@
1
1
  {% if paginator.next_page %}
2
2
  <div class="pagination">
3
3
  <a class="pagination-item older"
4
- href="{{ site.baseurl }}{{ paginator.next_page_path }}">
4
+ href="{{ paginator.next_page_path | relative_url }}">
5
5
  Older
6
6
  </a>
7
7
  </div>
@@ -18,7 +18,7 @@
18
18
  {% endfor %}
19
19
 
20
20
  {% if category_page %}
21
- <a href="{{ site.baseurl }}{{ category_page.url }}">
21
+ <a href="{{ category_page.url | relative_url }}">
22
22
  {{ category_page.title | default: category_page.category }}
23
23
  </a>
24
24
  {% else %}
@@ -11,7 +11,7 @@
11
11
  <div class="post-tags">
12
12
  {% for tag in include.post.tags %}
13
13
  {% if tags_page %}
14
- <a href="{{ site.baseurl }}{{ tags_page.url }}#{{ tag | slugify }}">
14
+ <a href="{{ tags_page.url | relative_url }}#{{ tag | slugify }}">
15
15
  {% else %}<span>{% endif %}
16
16
  <span class="icon">
17
17
  {% include svg/tags.svg %}
@@ -4,7 +4,7 @@
4
4
  {% for post in site.related_posts limit:3 %}
5
5
  <li>
6
6
  <h3>
7
- <a href="{{ site.baseurl }}{{ post.url }}">
7
+ <a href="{{ post.url | relative_url }}">
8
8
  {{ post.title }}
9
9
  <small>{{ post.date | date_to_string }}</small>
10
10
  </a>
@@ -10,7 +10,7 @@
10
10
  {% assign url = url | replace_first: 'spdy://', '' %}
11
11
  {% assign url = url | replace_first: '//', '' %}
12
12
  <input name="sitesearch" type="hidden"
13
- value="{{ url }}{{ site.baseurl }}" />
13
+ value="{{ url }}{{ "/" | relative_url }}" />
14
14
 
15
15
  <input type="submit" value="Search" />
16
16
  </div>
@@ -14,7 +14,7 @@
14
14
 
15
15
  <a id="subscribe-link"
16
16
  class="icon" title="Subscribe" aria-label="Subscribe"
17
- href="{{ site.baseurl }}/{{ site.feed.path | default: 'feed.xml' }}">
17
+ href="{{ site.feed.path | default: 'feed.xml' | relative_url }}">
18
18
  {% include svg/feed.svg %}
19
19
  </a>
20
20
 
@@ -35,7 +35,7 @@
35
35
  <a id="tags-link"
36
36
  class="icon{% if page.url == '/tags' %} active{% endif %}"
37
37
  title="Tags" aria-label="Tags"
38
- href="{{ site.baseurl }}{{ tags_page.url }}">
38
+ href="{{ tags_page.url | relative_url }}">
39
39
  {% include svg/tags.svg %}
40
40
  </a>
41
41
  {% endif %}
@@ -44,7 +44,7 @@
44
44
  <a id="search-link"
45
45
  class="icon{% if page.url == '/search' %} active{% endif %}"
46
46
  title="Search" aria-label="Search"
47
- href="{{ site.baseurl }}{{ search_page.url }}">
47
+ href="{{ search_page.url | relative_url }}">
48
48
  {% include svg/search.svg %}
49
49
  </a>
50
50
  {% endif %}
@@ -1,11 +1,11 @@
1
1
  <nav id="sidebar-nav-links">
2
2
  {% if site.sidebar_home_link %}
3
3
  <a class="home-link {% if page.url == '/' %} active{% endif %}"
4
- href="{{ site.baseurl }}/">Home</a>
4
+ href="{{ "/" | relative_url }}">Home</a>
5
5
  {% endif %}
6
6
  {% if site.sidebar_blog_link %}
7
7
  <a class="page-link {% if page.url == site.sidebar_blog_link %} active{% endif %}"
8
- href="{{ site.baseurl }}{{ site.sidebar_blog_link }}">Blog</a>
8
+ href="{{ site.sidebar_blog_link | relative_url }}">Blog</a>
9
9
  {% endif %}
10
10
 
11
11
  {% comment %}
@@ -1,7 +1,7 @@
1
1
  <div id="sidebar">
2
2
  <header>
3
3
  <{% if page.layout == "index" %}h1{% else %}div{% endif %} class="site-title">
4
- <a href="{{ site.baseurl }}/">
4
+ <a href="{{ "/" | relative_url }}">
5
5
  {% unless page.url == "/" %}
6
6
  <span class="back-arrow icon">{% include svg/back-arrow.svg %}</span>
7
7
  {% endunless %}
@@ -27,7 +27,7 @@
27
27
  {% for post in site.tags[tag] %}
28
28
  <li>
29
29
  <h3>
30
- <a href="{{ site.baseurl }}{{ post.url }}">
30
+ <a href="{{ post.url | relative_url }}">
31
31
  {{ post.title }}
32
32
  <small>{{ post.date | date_to_string }}</small>
33
33
  </a>
@@ -11,7 +11,7 @@ layout: page
11
11
  {% for post in site.categories[category] %}
12
12
  <li>
13
13
  <h3>
14
- <a href="{{ site.baseurl }}{{ post.url }}">
14
+ <a href="{{ post.url | relative_url }}">
15
15
  {{ post.title }}
16
16
  <small>{{ post.date | date_to_string }}</small>
17
17
  </a>
@@ -10,7 +10,7 @@ layout: default
10
10
  {% for post in paginator.posts %}
11
11
  <article class="post-body">
12
12
  <h2 class="post-title">
13
- <a href="{{ site.baseurl }}{{ post.url }}">
13
+ <a href="{{ post.url | relative_url }}">
14
14
  {{ post.title }}
15
15
  </a>
16
16
  </h2>
@@ -32,7 +32,7 @@ layout: default
32
32
  {% endcapture %}
33
33
 
34
34
  {% if content_words != excerpt_words %}
35
- <a href="{{ site.baseurl }}{{ post.url }}">More &hellip;</a>
35
+ <a href="{{ post.url | relative_url }}">More &hellip;</a>
36
36
  {% endif %}
37
37
  {% endif %}
38
38
  </article>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-hydeout
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Fong
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-09-17 00:00:00.000000000 Z
11
+ date: 2019-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll