jekyll-theme-switch 0.1.1 → 0.5.1.pre.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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -22
  3. data/_includes/footer.html +27 -2
  4. data/_includes/head.html +34 -5
  5. data/_includes/post_meta.html +44 -7
  6. data/_includes/rss/post.html +4 -0
  7. data/_layouts/archive.html +1 -1
  8. data/_layouts/category_page.html +30 -10
  9. data/_layouts/default.html +1 -4
  10. data/_layouts/holidays.html +1 -1
  11. data/_layouts/home.html +37 -11
  12. data/_layouts/monthly_archive.html +2 -2
  13. data/_layouts/page.html +29 -7
  14. data/_layouts/post.html +53 -23
  15. data/_layouts/rss.html +32 -0
  16. data/_layouts/series_index.html +1 -1
  17. data/_layouts/series_post.html +3 -3
  18. data/_layouts/tag_page.html +30 -10
  19. data/_layouts/wrapped.html +6 -0
  20. data/_layouts/yearly_archive.html +2 -2
  21. data/_plugins/blog_series_plugin.rb +16 -0
  22. data/_plugins/category_tag_filter.rb +36 -0
  23. data/_plugins/filesize_filter.rb +13 -0
  24. data/_plugins/normalize_whitespace_filter.rb +10 -0
  25. data/_plugins/songlink_tag_plugin.rb +18 -0
  26. data/_plugins/video_tag_plugin.rb +62 -0
  27. data/_plugins/vimeo_tag_plugin.rb +23 -0
  28. data/_plugins/yearly_archive_plugin.rb +81 -0
  29. data/_sass/jekyll-theme-switch/_base.scss +1 -1
  30. data/_sass/jekyll-theme-switch/_dark.scss +51 -5
  31. data/_sass/jekyll-theme-switch/_layout.scss +157 -20
  32. data/_sass/jekyll-theme-switch/_syntax-highlighting.scss +0 -1
  33. data/assets/css/jekyll-theme-switch.scss +5 -5
  34. data/assets/image/arnaud-jaegers-OkXIepDkNBE-unsplash.jpg +0 -0
  35. data/assets/image/fabian-betto-d3npqyXkaGI-unsplash.jpg +0 -0
  36. data/assets/image/jonatan-pie-g6tqHx0ME1o-unsplash.jpg +0 -0
  37. data/assets/image/marek-piwnicki-NPct-Mxw-64-unsplash.jpg +0 -0
  38. metadata +21 -34
@@ -17,9 +17,9 @@ $text-color: #111;
17
17
  $background-color: #fdfdfd;
18
18
  $brand-color: #4f49ff;
19
19
 
20
- $text-color-dark: #eee;
21
- $background-color-dark: #232323;
22
- $brand-color-dark: #2d9698;
20
+ $text-color-dark: #888;
21
+ $background-color-dark: #121212;
22
+ $brand-color-dark: #2D9B88;
23
23
 
24
24
  $grey-color: #828282;
25
25
  $grey-color-light: lighten($grey-color, 40%);
@@ -89,7 +89,7 @@ $on-laptop: 800px;
89
89
  @import "jekyll-theme-switch/base",
90
90
  "jekyll-theme-switch/layout",
91
91
  "jekyll-theme-switch/jekyll-youtube",
92
- "jekyll-theme-switch/dark",
93
92
  "jekyll-theme-switch/image-effects",
94
- "jekyll-theme-switch/syntax-highlighting"
93
+ "jekyll-theme-switch/syntax-highlighting",
94
+ "jekyll-theme-switch/dark"
95
95
  ;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-switch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.5.1.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Luijten
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-05 00:00:00.000000000 Z
11
+ date: 2022-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '4.0'
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 2.1.4
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 2.1.4
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: rake
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -52,20 +38,6 @@ dependencies:
52
38
  - - "~>"
53
39
  - !ruby/object:Gem::Version
54
40
  version: '12.0'
55
- - !ruby/object:Gem::Dependency
56
- name: faraday
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: 1.0.0
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: 1.0.0
69
41
  - !ruby/object:Gem::Dependency
70
42
  name: jekyll-paginate
71
43
  requirement: !ruby/object:Gem::Requirement
@@ -168,6 +140,7 @@ files:
168
140
  - _includes/holidays_ul.html
169
141
  - _includes/month.html
170
142
  - _includes/post_meta.html
143
+ - _includes/rss/post.html
171
144
  - _includes/section_nav.html
172
145
  - _includes/vimeo.html
173
146
  - _includes/youtube.html
@@ -179,10 +152,20 @@ files:
179
152
  - _layouts/monthly_archive.html
180
153
  - _layouts/page.html
181
154
  - _layouts/post.html
155
+ - _layouts/rss.html
182
156
  - _layouts/series_index.html
183
157
  - _layouts/series_post.html
184
158
  - _layouts/tag_page.html
159
+ - _layouts/wrapped.html
185
160
  - _layouts/yearly_archive.html
161
+ - _plugins/blog_series_plugin.rb
162
+ - _plugins/category_tag_filter.rb
163
+ - _plugins/filesize_filter.rb
164
+ - _plugins/normalize_whitespace_filter.rb
165
+ - _plugins/songlink_tag_plugin.rb
166
+ - _plugins/video_tag_plugin.rb
167
+ - _plugins/vimeo_tag_plugin.rb
168
+ - _plugins/yearly_archive_plugin.rb
186
169
  - _sass/jekyll-theme-switch/_base.scss
187
170
  - _sass/jekyll-theme-switch/_dark.scss
188
171
  - _sass/jekyll-theme-switch/_image-effects.scss
@@ -190,7 +173,11 @@ files:
190
173
  - _sass/jekyll-theme-switch/_layout.scss
191
174
  - _sass/jekyll-theme-switch/_syntax-highlighting.scss
192
175
  - assets/css/jekyll-theme-switch.scss
193
- homepage: https://luijten.org/
176
+ - assets/image/arnaud-jaegers-OkXIepDkNBE-unsplash.jpg
177
+ - assets/image/fabian-betto-d3npqyXkaGI-unsplash.jpg
178
+ - assets/image/jonatan-pie-g6tqHx0ME1o-unsplash.jpg
179
+ - assets/image/marek-piwnicki-NPct-Mxw-64-unsplash.jpg
180
+ homepage: https://islandsvinur.gitlab.io/jekyll-theme-switch/
194
181
  licenses:
195
182
  - MIT
196
183
  metadata: {}
@@ -205,11 +192,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
205
192
  version: '0'
206
193
  required_rubygems_version: !ruby/object:Gem::Requirement
207
194
  requirements:
208
- - - ">="
195
+ - - ">"
209
196
  - !ruby/object:Gem::Version
210
- version: '0'
197
+ version: 1.3.1
211
198
  requirements: []
212
- rubygems_version: 3.1.2
199
+ rubygems_version: 3.3.26
213
200
  signing_key:
214
201
  specification_version: 4
215
202
  summary: The theme for Logging the Switch.