jekyll-theme-yat 1.4.3 → 1.5.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 +29 -1
- data/_includes/sidebar/article-menu.html +50 -2
- data/_includes/views/banner.html +1 -1
- data/_layouts/about.html +9 -0
- data/_sass/misc/article-menu.scss +3 -2
- data/assets/images/banners/home.jpeg +0 -0
- metadata +33 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa66b045f81c89271c8b0253f29ed221e4a244f141eb8647ced39b6339c2ca1f
|
4
|
+
data.tar.gz: 4f16a912676e9c3e8ff15958921243395e6293800459b791b0051ffd51956fcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fd2e3ddd8c4d0925d6fb1fd4c97a1cf9d18f18c0ce883bef1eaa8420e495a4a0b9cd81e8d935a072d41dbb3a3798f16fce205273b652ec052348698c640688e
|
7
|
+
data.tar.gz: 42e7b333888f073f3d80fb079cc089758300c5491b575109f6f53dd1f4147219482cd26aa60779daa69fb8bc7f9e847c9debddbc51da81f40635840f3230b1d9
|
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# jekyll-theme-yat
|
2
|
+
[](https://jeffreytse.github.io/jekyll-theme-yat)
|
2
3
|
[](http://badge.fury.io/rb/jekyll-theme-yat)
|
3
4
|
[](https://opensource.org/licenses/MIT)
|
4
5
|
[](https://liberapay.com/jeffreytse)
|
@@ -13,10 +14,27 @@ Hey, nice to meet you, you found this Jekyll theme. Here the yet another theme i
|
|
13
14
|
|
14
15
|
<p align="center">
|
15
16
|
|
16
|
-
<img src="https://user-images.githubusercontent.com/9413601/
|
17
|
+
<img src="https://user-images.githubusercontent.com/9413601/91711123-f169b280-ebb7-11ea-8f5e-0867c713cdfc.png" alt="demo-screenshot" width="720px"/>
|
17
18
|
|
18
19
|
</p>
|
19
20
|
|
21
|
+
## Features
|
22
|
+
|
23
|
+
- Full layouts `home`, `post`, `tags`, `archive` and `about`.
|
24
|
+
- Uses font awesome 5 for icons.
|
25
|
+
- Beautiful Syntax Highlight using [hilight.js][hilight-js].
|
26
|
+
- RSS support using [Jekyll Feed][jekyll-feed] gem.
|
27
|
+
- Optimized for search engines using [Jekyll Seo Tag][jekyll-seo-tag] gem.
|
28
|
+
- Sitemap support using [Jekyll Sitemap][jekyll-sitemap] gem.
|
29
|
+
- Complex and flexible table support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
30
|
+
- MathJAX and LaTeX optional support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
31
|
+
- Media (Youtube, Spotify, etc.) support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
32
|
+
- Diagram (PlantUML, Mermaid) support using [Jekyll Spaceship][jekyll-spaceship] gem.
|
33
|
+
- Google Translation support.
|
34
|
+
- New post tag support.
|
35
|
+
|
36
|
+
Also, visit the live [demo][yat-live-demo] site for the theme.
|
37
|
+
|
20
38
|
## Installation
|
21
39
|
|
22
40
|
Add this line to your Jekyll site's `Gemfile`:
|
@@ -66,3 +84,13 @@ You can start by [opening an issue](https://github.com/jeffreytse/jekyll-theme-y
|
|
66
84
|
## License
|
67
85
|
|
68
86
|
This theme is licensed under the [MIT license](https://opensource.org/licenses/mit-license.php) © JeffreyTse.
|
87
|
+
|
88
|
+
<!-- External links -->
|
89
|
+
[jekyll]: https://jekyllrb.com/
|
90
|
+
[yat-git-repo]: https://github.com/jeffreytse/jekyll-theme-yat/
|
91
|
+
[yat-live-demo]: https://jeffreytse.github.io/jekyll-theme-yat/
|
92
|
+
[jekyll-spaceship]: https://github.com/jeffreytse/jekyll-spaceship
|
93
|
+
[jekyll-seo-tag]: https://github.com/jekyll/jekyll-seo-tag
|
94
|
+
[jekyll-sitemap]: https://github.com/jekyll/jekyll-sitemap
|
95
|
+
[jekyll-feed]: https://github.com/jekyll/jekyll-feed
|
96
|
+
[hilight-js]: https://github.com/highlightjs/highlight.js
|
@@ -36,10 +36,54 @@
|
|
36
36
|
// The header element
|
37
37
|
var header = document.querySelector('header.site-header');
|
38
38
|
|
39
|
+
function doMenuCollapse(index, over_items=20) {
|
40
|
+
var items = menuContent.firstChild.children;
|
41
|
+
|
42
|
+
if (items.length < over_items) {
|
43
|
+
return;
|
44
|
+
}
|
45
|
+
|
46
|
+
var activeItem = items[index];
|
47
|
+
var beginItem = activeItem
|
48
|
+
var endItem = activeItem
|
49
|
+
var beginIndex = index;
|
50
|
+
var endIndex = index + 1;
|
51
|
+
while (beginIndex >= 0
|
52
|
+
&& !items[beginIndex].classList.contains('h-h2')) {
|
53
|
+
beginIndex -= 1;
|
54
|
+
}
|
55
|
+
while (endIndex < items.length
|
56
|
+
&& !items[endIndex].classList.contains('h-h2')) {
|
57
|
+
endIndex += 1;
|
58
|
+
}
|
59
|
+
for (var i = 0; i < beginIndex; i++) {
|
60
|
+
item = items[i]
|
61
|
+
if (!item.classList.contains('h-h2')) {
|
62
|
+
item.style.display = 'none';
|
63
|
+
}
|
64
|
+
}
|
65
|
+
for (var i = beginIndex + 1; i < endIndex; i++) {
|
66
|
+
item = items[i]
|
67
|
+
// if (!item.classList.contains('h-h2')) {
|
68
|
+
item.style.display = '';
|
69
|
+
// }
|
70
|
+
}
|
71
|
+
for (var i = endIndex; i < items.length; i++) {
|
72
|
+
item = items[i]
|
73
|
+
if (!item.classList.contains('h-h2')) {
|
74
|
+
item.style.display = 'none';
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
// Init menu collapsed
|
80
|
+
doMenuCollapse(-1);
|
81
|
+
|
39
82
|
// Active the menu item
|
40
83
|
window.addEventListener('scroll', function (event) {
|
41
84
|
var lastActive = menuContent.querySelector('.active');
|
42
85
|
var changed = true;
|
86
|
+
var activeIndex = -1;
|
43
87
|
for (var i = headings.length - 1; i >= 0; i--) {
|
44
88
|
var h = headings[i];
|
45
89
|
var headingRect = h.getBoundingClientRect();
|
@@ -53,6 +97,7 @@
|
|
53
97
|
var curActive = a.parentNode;
|
54
98
|
if (curActive) {
|
55
99
|
curActive.classList.add('active');
|
100
|
+
activeIndex = i;
|
56
101
|
}
|
57
102
|
if (lastActive == curActive) {
|
58
103
|
changed = false;
|
@@ -60,8 +105,11 @@
|
|
60
105
|
break;
|
61
106
|
}
|
62
107
|
}
|
63
|
-
if (
|
64
|
-
lastActive
|
108
|
+
if (changed) {
|
109
|
+
if (lastActive) {
|
110
|
+
lastActive.classList.remove('active');
|
111
|
+
}
|
112
|
+
doMenuCollapse(activeIndex);
|
65
113
|
}
|
66
114
|
event.preventDefault();
|
67
115
|
});
|
data/_includes/views/banner.html
CHANGED
@@ -21,7 +21,7 @@
|
|
21
21
|
{% if banner %}
|
22
22
|
<section class="page-banner">
|
23
23
|
<div class="page-banner-img">
|
24
|
-
<div style="background-image: url({{ banner }})"></div>
|
24
|
+
<div style="background-image: url({{ banner | relative_url }})"></div>
|
25
25
|
</div>
|
26
26
|
<div class="wrapper">
|
27
27
|
<div class="page-banner-inner">
|
data/_layouts/about.html
ADDED
Binary file
|
metadata
CHANGED
@@ -1,57 +1,75 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-yat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jeffreytse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
22
|
+
version: '3.0'
|
20
23
|
type: :development
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
29
|
+
version: '1.6'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.0'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: rake
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
|
-
- - "
|
37
|
+
- - ">="
|
32
38
|
- !ruby/object:Gem::Version
|
33
39
|
version: '12.0'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '13.0'
|
34
43
|
type: :development
|
35
44
|
prerelease: false
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
37
46
|
requirements:
|
38
|
-
- - "
|
47
|
+
- - ">="
|
39
48
|
- !ruby/object:Gem::Version
|
40
49
|
version: '12.0'
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '13.0'
|
41
53
|
- !ruby/object:Gem::Dependency
|
42
54
|
name: jekyll
|
43
55
|
requirement: !ruby/object:Gem::Requirement
|
44
56
|
requirements:
|
45
|
-
- - "
|
57
|
+
- - ">"
|
46
58
|
- !ruby/object:Gem::Version
|
47
|
-
version: '3.
|
59
|
+
version: '3.5'
|
60
|
+
- - "<"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '5.0'
|
48
63
|
type: :runtime
|
49
64
|
prerelease: false
|
50
65
|
version_requirements: !ruby/object:Gem::Requirement
|
51
66
|
requirements:
|
52
|
-
- - "
|
67
|
+
- - ">"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '3.5'
|
70
|
+
- - "<"
|
53
71
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
72
|
+
version: '5.0'
|
55
73
|
- !ruby/object:Gem::Dependency
|
56
74
|
name: jekyll-feed
|
57
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -166,6 +184,7 @@ files:
|
|
166
184
|
- _includes/views/segments.html
|
167
185
|
- _includes/views/site-brand.html
|
168
186
|
- _layouts/404.html
|
187
|
+
- _layouts/about.html
|
169
188
|
- _layouts/archives.html
|
170
189
|
- _layouts/articles.html
|
171
190
|
- _layouts/categories.html
|
@@ -181,6 +200,7 @@ files:
|
|
181
200
|
- _sass/yat/_base.scss
|
182
201
|
- _sass/yat/_layout.scss
|
183
202
|
- assets/css/main.scss
|
203
|
+
- assets/images/banners/home.jpeg
|
184
204
|
- assets/js/main.js
|
185
205
|
homepage: https://github.com/jeffreytse/jekyll-theme-yat
|
186
206
|
licenses:
|
@@ -202,7 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
202
222
|
- !ruby/object:Gem::Version
|
203
223
|
version: '0'
|
204
224
|
requirements: []
|
205
|
-
rubygems_version: 3.
|
225
|
+
rubygems_version: 3.1.4
|
206
226
|
signing_key:
|
207
227
|
specification_version: 4
|
208
228
|
summary: Yet another theme for elegant writers with modern flat style.
|