jekyll-theme-hydeout 5.0.0 → 5.0.2
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/LICENSE.md +1 -1
- data/README.md +26 -5
- data/_includes/back-link.html +5 -1
- data/_sass/hydeout/_base.scss +6 -1
- metadata +32 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96f86770e79068e477c1a34ee7e74d424c13634fe35d8fa5d474c04d06915a77
|
4
|
+
data.tar.gz: 4784eddd6aeb149ed43976373f10fdfdfb3b7ac240221d3896769b23bdf3c1fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ee122b0ad66df071b02a8792f13a782e99bfc1d7cb7d87bce23f214ad53b5544f7a9e49026967b6fb9872fb5a86e81a1fcd1ae7a2d0136ecae7abcdc925f4e5
|
7
|
+
data.tar.gz: 7db3f7b87c6f0f92741bd261d41ad8a5e925b11243f13f5513bb2a3e417e6c4e7336bdf5db451e4043a3dd3b5f586a53168fa0484395c0fa3de2e538a5048060
|
data/LICENSE.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Copyright (c) 2013 Mark Otto.
|
4
4
|
|
5
|
-
Copyright (c) 2017 Andrew Fong.
|
5
|
+
Copyright (c) 2017 Andrew Fong and additional contributors (https://github.com/fongandrew/hydeout/graphs/contributors)
|
6
6
|
|
7
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
8
8
|
|
data/README.md
CHANGED
@@ -7,15 +7,36 @@ theme for [Jekyll](http://jekyllrb.com) 3.x and 4.x and adds new functionality.
|
|
7
7
|
<img alt="Mobile home page" src="/_screenshots/2.png?raw=true" width="300px" />
|
8
8
|
<img alt="Mobile post page" src="/_screenshots/3.png?raw=true" width="300px" />
|
9
9
|
|
10
|
-
|
10
|
+
## ✅ Jekyll 4.x Branch
|
11
|
+
|
12
|
+
**You're viewing the Jekyll 4.x compatible branch (recommended for all new projects).**
|
13
|
+
|
14
|
+
This branch includes:
|
15
|
+
- Full Jekyll 4.x compatibilityTha
|
16
|
+
- GitHub Pages deployment support
|
17
|
+
- Modern Sass modules
|
18
|
+
- Updated dependencies
|
19
|
+
- Performance improvements
|
20
|
+
- Bug fixes
|
21
|
+
|
22
|
+
## Usage
|
11
23
|
|
12
24
|
Hydeout is available as the `jekyll-theme-hydeout` Ruby Gem.
|
13
|
-
Add `gem "jekyll-theme-hydeout", "~>
|
25
|
+
Add `gem "jekyll-theme-hydeout", "~> 5.0"` to your Gemfile and run
|
14
26
|
`bundle install`.
|
15
27
|
|
16
|
-
|
17
|
-
|
18
|
-
|
28
|
+
### GitHub Pages Support
|
29
|
+
|
30
|
+
**Important:** Jekyll 4.x requires GitHub Actions for GitHub Pages deployment, as the default GitHub Pages builder only supports Jekyll 3.x.
|
31
|
+
|
32
|
+
To use this theme with GitHub Pages, set up a GitHub Actions deployment:
|
33
|
+
- Use our [workflow file](https://github.com/fongandrew/hydeout/blob/jekyll-v4/.github/workflows/jekyll-build.yml) as a template.
|
34
|
+
- Update the branch name in the workflow to match your main branch
|
35
|
+
- Enable GitHub Pages in your repository settings with the source set to "GitHub Actions"
|
36
|
+
|
37
|
+
See https://jekyllrb.com/docs/continuous-integration/github-actions/ for more information.
|
38
|
+
|
39
|
+
### Pagination Setup
|
19
40
|
|
20
41
|
Hydeout uses pagination, so if you have an `index.md`, you'll need to swap
|
21
42
|
it with an `index.html` that uses the `index` layout:
|
data/_includes/back-link.html
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
-
{%
|
1
|
+
{% if page.back_page %}
|
2
|
+
|
3
|
+
{% assign back_page = site.pages | where: "name", page.back_page | first %}
|
2
4
|
{% if back_page != null %}
|
3
5
|
<p class="back-link">
|
4
6
|
<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
7
|
</p>
|
6
8
|
{% endif %}
|
9
|
+
|
10
|
+
{% endif %}
|
data/_sass/hydeout/_base.scss
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-hydeout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Fong
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
10
|
+
date: 2025-04-14 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: jekyll
|
@@ -15,7 +15,7 @@ dependencies:
|
|
15
15
|
requirements:
|
16
16
|
- - ">="
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: '
|
18
|
+
version: '4.0'
|
19
19
|
- - "<"
|
20
20
|
- !ruby/object:Gem::Version
|
21
21
|
version: '5.0'
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
requirements:
|
26
26
|
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: '
|
28
|
+
version: '4.0'
|
29
29
|
- - "<"
|
30
30
|
- !ruby/object:Gem::Version
|
31
31
|
version: '5.0'
|
@@ -71,6 +71,34 @@ dependencies:
|
|
71
71
|
- - "~>"
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: '0.17'
|
74
|
+
- !ruby/object:Gem::Dependency
|
75
|
+
name: jekyll-include-cache
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - "~>"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0.2'
|
81
|
+
type: :runtime
|
82
|
+
prerelease: false
|
83
|
+
version_requirements: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - "~>"
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0.2'
|
88
|
+
- !ruby/object:Gem::Dependency
|
89
|
+
name: jemoji
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - "~>"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0.13'
|
95
|
+
type: :runtime
|
96
|
+
prerelease: false
|
97
|
+
version_requirements: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - "~>"
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0.13'
|
74
102
|
- !ruby/object:Gem::Dependency
|
75
103
|
name: bundler
|
76
104
|
requirement: !ruby/object:Gem::Requirement
|