jekyll-theme-hydeout 4.1.0 → 4.2.0
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/README.md +1 -1
- data/_includes/back-link.html +6 -0
- data/_includes/page-links.html +1 -1
- data/_layouts/default.html +1 -1
- data/_layouts/page.html +2 -1
- data/_sass/hydeout.scss +1 -0
- data/_sass/hydeout/_back-link.scss +10 -0
- data/_sass/hydeout/_base.scss +20 -0
- metadata +12 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61a9f26f5d08ea52740dc4c5b0873f3aa9d9075b
|
|
4
|
+
data.tar.gz: 8e17561df2f49a04b8ace7da4ea3332edd1c38c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ec501edef52d459d0bf36bc48f50a53ed72b8167c8c16f3977d68e31754b493b72db527837a930b7785e2b42a70a5b8b341d5e776f26fd4a350ded6e847647f
|
|
7
|
+
data.tar.gz: fe9807f296712b82b49610b6f76bb25abd0c5df949b46c982f428ab993633b6acebe7bebc2d3f5527d187e1c99eeeee81ff691f9c6e37c80e91efa70e003327b
|
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ theme for [Jekyll](http://jekyllrb.com) 3.x and 4.x and adds new functionality.
|
|
|
10
10
|
### Usage
|
|
11
11
|
|
|
12
12
|
Hydeout is available as the `jekyll-theme-hydeout` Ruby Gem.
|
|
13
|
-
Add `gem "jekyll-theme-hydeout", "~>
|
|
13
|
+
Add `gem "jekyll-theme-hydeout", "~> 4.1"` to your Gemfile and run
|
|
14
14
|
`bundle install`.
|
|
15
15
|
|
|
16
16
|
If you're installing on Github pages, you may also have to add
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{% assign back_page = site.pages | find: "name", page.back_page %}
|
|
2
|
+
{% if back_page != null %}
|
|
3
|
+
<p class="back-link">
|
|
4
|
+
<a href="{{ back_page.url | relative_url }}"><span class="back-arrow icon">{% include svg/back-arrow.svg %}</span>{{ back_page.short_title | default: back_page.title }}</a>
|
|
5
|
+
</p>
|
|
6
|
+
{% endif %}
|
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="{{ node.url | relative_url }}">{{ node.title }}</a>
|
|
10
|
+
href="{{ node.url | relative_url }}">{% if node.short_title != null %}{{ node.short_title }}{% else %}{{ node.title }}{% endif %}</a>
|
|
11
11
|
{% endif %}
|
|
12
12
|
{% endif %}
|
|
13
13
|
{% endfor %}
|
data/_layouts/default.html
CHANGED
data/_layouts/page.html
CHANGED
data/_sass/hydeout.scss
CHANGED
data/_sass/hydeout/_base.scss
CHANGED
|
@@ -107,3 +107,23 @@ input[type='submit'] {
|
|
|
107
107
|
color: #fff;
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
|
+
|
|
111
|
+
.video-container {
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
position: relative;
|
|
114
|
+
width:100%;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.video-container::after {
|
|
118
|
+
padding-top: 56.25%;
|
|
119
|
+
display: block;
|
|
120
|
+
content: '';
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.video-container iframe {
|
|
124
|
+
position: absolute;
|
|
125
|
+
top: 0;
|
|
126
|
+
left: 0;
|
|
127
|
+
width: 100%;
|
|
128
|
+
height: 100%;
|
|
129
|
+
}
|
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.
|
|
4
|
+
version: 4.2.0
|
|
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: 2021-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -78,14 +78,20 @@ dependencies:
|
|
|
78
78
|
requirements:
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '1
|
|
81
|
+
version: '2.1'
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: 2.1.4
|
|
82
85
|
type: :development
|
|
83
86
|
prerelease: false
|
|
84
87
|
version_requirements: !ruby/object:Gem::Requirement
|
|
85
88
|
requirements:
|
|
86
89
|
- - "~>"
|
|
87
90
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: '1
|
|
91
|
+
version: '2.1'
|
|
92
|
+
- - ">="
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: 2.1.4
|
|
89
95
|
- !ruby/object:Gem::Dependency
|
|
90
96
|
name: wdm
|
|
91
97
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -109,6 +115,7 @@ extra_rdoc_files: []
|
|
|
109
115
|
files:
|
|
110
116
|
- LICENSE.md
|
|
111
117
|
- README.md
|
|
118
|
+
- _includes/back-link.html
|
|
112
119
|
- _includes/category-links.html
|
|
113
120
|
- _includes/comments.html
|
|
114
121
|
- _includes/copyright.html
|
|
@@ -146,6 +153,7 @@ files:
|
|
|
146
153
|
- _layouts/search.html
|
|
147
154
|
- _layouts/tags.html
|
|
148
155
|
- _sass/hydeout.scss
|
|
156
|
+
- _sass/hydeout/_back-link.scss
|
|
149
157
|
- _sass/hydeout/_base.scss
|
|
150
158
|
- _sass/hydeout/_code.scss
|
|
151
159
|
- _sass/hydeout/_layout.scss
|