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 +4 -4
- data/_includes/category-links.html +1 -1
- data/_includes/copyright.html +1 -1
- data/_includes/favicons.html +2 -2
- data/_includes/head.html +3 -3
- data/_includes/page-links.html +1 -1
- data/_includes/pagination-newer.html +1 -1
- data/_includes/pagination-older.html +1 -1
- data/_includes/post-meta.html +1 -1
- data/_includes/post-tags.html +1 -1
- data/_includes/related_posts.html +1 -1
- data/_includes/search-form.html +1 -1
- data/_includes/sidebar-icon-links.html +3 -3
- data/_includes/sidebar-nav-links.html +2 -2
- data/_includes/sidebar.html +1 -1
- data/_includes/tags-list.html +1 -1
- data/_layouts/category.html +1 -1
- data/_layouts/index.html +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c483a6becbe82503f4b721bbb3522c5b66d5ab6d
|
|
4
|
+
data.tar.gz: 3a1710afe2d9cb736e0d9e62dfb4700312249cbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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="{{
|
|
9
|
+
href="{{ node.url | relative_url }}">{{ node.title }}</a>
|
|
10
10
|
{% endif %}
|
|
11
11
|
{% endif %}
|
|
12
12
|
{% endfor %}
|
data/_includes/copyright.html
CHANGED
data/_includes/favicons.html
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{
|
|
2
|
-
<link rel="shortcut icon" href="{{
|
|
1
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ "/favicon.png" | relative_url }}" />
|
|
2
|
+
<link rel="shortcut icon" href="{{ "/favicon.ico" | relative_url}}" />
|
data/_includes/head.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<head>
|
|
2
|
-
<link href="
|
|
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="{{
|
|
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="
|
|
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>
|
data/_includes/page-links.html
CHANGED
|
@@ -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="{{
|
|
10
|
+
href="{{ node.url | relative_url }}">{{ node.title }}</a>
|
|
11
11
|
{% endif %}
|
|
12
12
|
{% endif %}
|
|
13
13
|
{% endfor %}
|
data/_includes/post-meta.html
CHANGED
data/_includes/post-tags.html
CHANGED
|
@@ -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="{{
|
|
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 %}
|
data/_includes/search-form.html
CHANGED
|
@@ -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 }}{{
|
|
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.
|
|
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="{{
|
|
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="{{
|
|
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="{{
|
|
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.
|
|
8
|
+
href="{{ site.sidebar_blog_link | relative_url }}">Blog</a>
|
|
9
9
|
{% endif %}
|
|
10
10
|
|
|
11
11
|
{% comment %}
|
data/_includes/sidebar.html
CHANGED
|
@@ -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="{{
|
|
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 %}
|
data/_includes/tags-list.html
CHANGED
data/_layouts/category.html
CHANGED
data/_layouts/index.html
CHANGED
|
@@ -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="{{
|
|
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="{{
|
|
35
|
+
<a href="{{ post.url | relative_url }}">More …</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.
|
|
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:
|
|
11
|
+
date: 2019-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|