j1-template 2023.0.7 → 2023.0.9

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 (57) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/themes/j1/procedures/layouts/module_writer.proc +1 -1
  3. data/_includes/themes/j1/procedures/posts/collate_timeline.proc +1 -1
  4. data/assets/data/banner.html +2 -2
  5. data/assets/data/panel.html +4 -4
  6. data/assets/error_pages/HTTP204.html +23 -4
  7. data/assets/error_pages/HTTP400.html +2 -2
  8. data/assets/error_pages/HTTP401.html +2 -2
  9. data/assets/error_pages/HTTP403.html +2 -2
  10. data/assets/error_pages/HTTP404.html +2 -2
  11. data/assets/error_pages/HTTP444.html +2 -2
  12. data/assets/error_pages/HTTP445.html +2 -2
  13. data/assets/error_pages/HTTP446.html +2 -2
  14. data/assets/error_pages/HTTP447.html +2 -2
  15. data/assets/error_pages/HTTP448.html +2 -2
  16. data/assets/error_pages/HTTP500.html +2 -2
  17. data/assets/error_pages/HTTP501.html +2 -2
  18. data/assets/error_pages/HTTP502.html +2 -2
  19. data/assets/error_pages/HTTP503.html +2 -2
  20. data/assets/themes/j1/adapter/js/attic.js +36 -4
  21. data/assets/themes/j1/adapter/js/j1.js +293 -253
  22. data/assets/themes/j1/adapter/js/masterslider.js +16 -15
  23. data/assets/themes/j1/adapter/js/scroller.js +11 -4
  24. data/assets/themes/j1/adapter/js/themer.js +5 -1
  25. data/assets/themes/j1/adapter/js/waves.js +15 -6
  26. data/assets/themes/j1/core/css/themes/unodark/bootstrap.css +75 -3
  27. data/assets/themes/j1/core/css/themes/unodark/bootstrap.min.css +1 -1
  28. data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +55 -8
  29. data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +2 -2
  30. data/lib/j1/version.rb +1 -1
  31. data/lib/starter_web/Gemfile +1 -1
  32. data/lib/starter_web/README.md +5 -5
  33. data/lib/starter_web/_config.yml +3 -3
  34. data/lib/starter_web/_data/blocks/panel.yml +9 -9
  35. data/lib/starter_web/_data/j1_config.yml +10 -2
  36. data/lib/starter_web/_data/layouts/home.yml +1 -1
  37. data/lib/starter_web/_data/modules/attics.yml +17 -14
  38. data/lib/starter_web/_data/modules/defaults/attics.yml +18 -11
  39. data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +44 -44
  40. data/lib/starter_web/_data/modules/defaults/navigator.yml +2 -0
  41. data/lib/starter_web/_data/modules/defaults/waves.yml +1 -1
  42. data/lib/starter_web/_data/resources.yml +145 -146
  43. data/lib/starter_web/_data/templates/feed.xml +1 -1
  44. data/lib/starter_web/_plugins/index/lunr.rb +1 -1
  45. data/lib/starter_web/assets/images/modules/attics/1920x1280/clem-onojeghuo.jpg +0 -0
  46. data/lib/starter_web/assets/images/modules/attics/themes-1920x1280-bw.jpg +0 -0
  47. data/lib/starter_web/package.json +1 -1
  48. data/lib/starter_web/pages/public/blog/navigator/archive/allview.html +1 -1
  49. data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +1 -1
  50. data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +1 -1
  51. data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +1 -1
  52. data/lib/starter_web/pages/public/blog/navigator/index.html +1 -1
  53. data/lib/starter_web/pages/public/learn/roundtrip/present_images.adoc +7 -0
  54. data/lib/starter_web/pages/public/previewer/preview_bootstrap_theme.adoc +5 -6
  55. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  56. data/lib/starter_web/utilsrv/package.json +1 -1
  57. metadata +4 -2
data/lib/j1/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module J1
2
- VERSION = '2023.0.7'
2
+ VERSION = '2023.0.9'
3
3
  end
@@ -79,7 +79,7 @@ gem 'j1-template', '~> 2023.0.0'
79
79
 
80
80
  # Loaded from gem.fury.io
81
81
  #source 'https://gem.fury.io/jekyll-one-org/' do
82
- # gem 'j1-template', '~> 2023.0.7'
82
+ # gem 'j1-template', '~> 2023.0.9'
83
83
  #end
84
84
 
85
85
  # ------------------------------------------------------------------------------
@@ -380,7 +380,7 @@ This command creates a **initial** project in folder **my-starter**.
380
380
  2022-07-30 18:12:12 - GENERATE: Resolving dependencies...
381
381
  2022-07-30 18:12:12 - GENERATE: Using bundler 2.3.7
382
382
  ...
383
- 2022-07-30 18:12:12 - GENERATE: Using j1-template 2023.0.7
383
+ 2022-07-30 18:12:12 - GENERATE: Using j1-template 2023.0.9
384
384
  2022-07-30 18:12:12 - GENERATE: Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
385
385
  2022-07-30 18:12:12 - GENERATE: Bundled gems are installed into `../../.gem`
386
386
  2022-07-30 18:12:12 - GENERATE: C:/Users/xxx/.gem/ruby/3.1.0;C:/DevTools/Ruby31-x64/lib/ruby/gems/3.1.0;
@@ -416,7 +416,7 @@ commands are available as well.
416
416
  2022-07-30 18:17:48 - SETUP: Initialize the project ...
417
417
  2022-07-30 18:17:48 - SETUP: Be patient, this will take a while ...
418
418
  2022-07-30 18:17:49 - SETUP:
419
- 2022-07-30 18:17:49 - SETUP: > j1@2023.0.7 setup C:\Users\xxx\j1-projects\my-starter
419
+ 2022-07-30 18:17:49 - SETUP: > j1@2023.0.9 setup C:\Users\xxx\j1-projects\my-starter
420
420
  2022-07-30 18:17:49 - SETUP: > npm --silent run setup-start && npm --silent run setup-base && run-s -s setup:*
421
421
  2022-07-30 18:17:49 - SETUP:
422
422
  2022-07-30 18:17:50 - SETUP: Setup project for first use ..
@@ -461,7 +461,7 @@ browser. Let's start the journey ...
461
461
  Check setup state of the J1 project ...
462
462
  2022-07-30 18:26:18 - SITE: Starting up your site ...
463
463
  2022-07-30 18:26:18 - SITE:
464
- 2022-07-30 18:26:18 - SITE: > j1@2023.0.7 j1-site C:\Users\jadams\j1-projects\my-starter
464
+ 2022-07-30 18:26:18 - SITE: > j1@2023.0.9 j1-site C:\Users\jadams\j1-projects\my-starter
465
465
  2022-07-30 18:26:18 - SITE: > run-p -s j1-site:*
466
466
  2022-07-30 18:26:18 - SITE:
467
467
  2022-07-30 18:26:20 - SITE: Startup UTILSRV ..
@@ -500,7 +500,7 @@ Check setup state of the J1 project ...
500
500
  REBUILD: Rebuild the projects website ...
501
501
  REBUILD: Be patient, this will take a while ...
502
502
  2022-07-30 18:45:09 - REBUILD:
503
- 2022-07-30 18:45:09 - REBUILD: > j1@2023.0.7 rebuild C:\Users\xxx\j1-projects\my-starter
503
+ 2022-07-30 18:45:09 - REBUILD: > j1@2023.0.9 rebuild C:\Users\xxx\j1-projects\my-starter
504
504
  2022-07-30 18:45:09 - REBUILD: > run-s -s rebuild:* && run-s -s post-rebuild:*
505
505
  2022-07-30 18:45:09 - REBUILD:
506
506
  2022-07-30 18:45:10 - REBUILD: Rebuild site incremental ..
@@ -548,7 +548,7 @@ using Lerna for all packages:
548
548
  2022-07-30 18:29:07 - RESET: Reset the project to factory state ...
549
549
  2022-07-30 18:29:07 - RESET: Be patient, this will take a while ...
550
550
  2022-07-30 18:29:08 - RESET:
551
- 2022-07-30 18:29:08 - RESET: > j1@2023.0.7 reset C:\Users\xxx\j1-projects\my-starter
551
+ 2022-07-30 18:29:08 - RESET: > j1@2023.0.9 reset C:\Users\xxx\j1-projects\my-starter
552
552
  2022-07-30 18:29:08 - RESET: > run-s -s reset:*
553
553
  2022-07-30 18:29:08 - RESET:
554
554
  2022-07-30 18:29:08 - RESET: Reset project to factory state ..
@@ -53,7 +53,7 @@ environment: development
53
53
  # ------------------------------------------------------------------------------
54
54
  # Sets the build version of J1 Theme Gem
55
55
  #
56
- version: 2023.0.7
56
+ version: 2023.0.9
57
57
 
58
58
  # version
59
59
  # ------------------------------------------------------------------------------
@@ -490,11 +490,11 @@ kramdown:
490
490
  #
491
491
  plugins:
492
492
  # - algolia
493
- - asciidoctor
494
493
  # - asciidoctor-pdf
495
- - jekyll-asciidoc
496
494
  # - jekyll-gist
497
495
  # - jekyll-redirect-from
496
+ - asciidoctor
497
+ - jekyll-asciidoc
498
498
 
499
499
  # ------------------------------------------------------------------------------
500
500
  # ALGOLIA Search (Instantsearch)
@@ -80,14 +80,14 @@ settings:
80
80
  enabled: true
81
81
  height: 2 # [1 .. 9]
82
82
  style: wave-1 # default
83
- color: "#c4c4c4" # "#dcdcdc"
84
- background_color: "#f5f5f5" # auto|rgb_value, "#f5f5f5"
83
+ color: "#EEEEEE" # #c4c4c4
84
+ background_color: "#f5f5f5" # elevation level: auto|rgb_value, "#f5f5f5"
85
85
  transform: false # false or rotate|flip-x|flip-y and combinations
86
86
  bottom:
87
87
  enabled: true
88
88
  height: 2
89
89
  style: wave-4
90
- color: "#c4c4c4"
90
+ color: "#EEEEEE"
91
91
  background_color: "#f5f5f5"
92
92
  transform: flip-y flip-x
93
93
 
@@ -227,14 +227,14 @@ settings:
227
227
  enabled: true
228
228
  height: 4 # [1 .. 9]
229
229
  style: wave-4 # default
230
- color: "#c4c4c4"
230
+ color: "#EEEEEE"
231
231
  background_color: "#f5f5f5"
232
232
  transform: false # false or rotate|flip-x|flip-y and combinations
233
233
  bottom:
234
234
  enabled: true
235
235
  height: 2
236
236
  style: wave-4
237
- color: "#c4c4c4"
237
+ color: "#EEEEEE"
238
238
  background_color: "#f5f5f5"
239
239
  transform: rotate
240
240
 
@@ -429,14 +429,14 @@ settings:
429
429
  enabled: true
430
430
  height: 2 # [1 .. 9]
431
431
  style: wave-1 # default
432
- color: "#c4c4c4"
432
+ color: "#EEEEEE"
433
433
  background_color: "#f5f5f5"
434
434
  transform: false # false or rotate|flip-x|flip-y and combinations
435
435
  bottom:
436
436
  enabled: true
437
437
  height: 2
438
438
  style: wave-4
439
- color: "#c4c4c4"
439
+ color: "#EEEEEE"
440
440
  background_color: "#f5f5f5"
441
441
  transform: rotate
442
442
 
@@ -749,14 +749,14 @@ settings:
749
749
  enabled: false
750
750
  height: 2 # [1 .. 9]
751
751
  style: wave-1 # default
752
- color: "#c4c4c4"
752
+ color: "#EEEEEE"
753
753
  background_color: "#f5f5f5"
754
754
  transform: false # false or rotate|flip-x|flip-y and combinations
755
755
  bottom:
756
756
  enabled: false
757
757
  height: 2
758
758
  style: wave-4
759
- color: "#c4c4c4"
759
+ color: "#EEEEEE"
760
760
  background_color: "#f5f5f5"
761
761
  transform: rotate
762
762
 
@@ -166,7 +166,7 @@ cookies:
166
166
  # NOTE: Used for developent mode ONLY
167
167
  # NOTE: See ~/packages/300_theme_src/_layouts/default.html
168
168
  # ------------------------------------------------------------------------------
169
- flicker_timeout: 150
169
+ flicker_timeout: 250
170
170
 
171
171
  # ------------------------------------------------------------------------------
172
172
  # HTML PrettyPrint
@@ -379,6 +379,14 @@ body:
379
379
  font-weight: 400
380
380
  line-height: 1.5
381
381
 
382
+ # ----------------------------------------------------------------------------
383
+ # animation on page load
384
+ # See: https://www.geeksforgeeks.org/how-to-create-fade-in-effect-on-page-load-using-css/
385
+ #
386
+ animation: true
387
+ animation_type: fadeIn # currently, only fadeIn supported
388
+ animation_duration: 3
389
+
382
390
  # ------------------------------------------------------------------------------
383
391
  # PAGE settings
384
392
  # ------------------------------------------------------------------------------
@@ -415,7 +423,7 @@ body:
415
423
  #
416
424
  # ------------------------------------------------------------------------------
417
425
  #
418
- timeoutScrollDynamicPages: 2000
426
+ timeoutScrollDynamicPages: 2000 # 2000
419
427
  scrollDynamicPagesTopOnChange: false
420
428
 
421
429
  # ------------------------------------------------------------------------------
@@ -326,7 +326,7 @@ lanes:
326
326
  id: home_intro_panel
327
327
  region: body-main
328
328
  type: async
329
- properties: elevated-z3
329
+ properties: elevated-z1
330
330
 
331
331
  # ----------------------------------------------------------------------------
332
332
  # PARALLAX banner
@@ -55,20 +55,12 @@ settings:
55
55
  id: attic_home
56
56
  layout: home
57
57
 
58
- # title_animate: animate__fadeInDown
59
- # title_animate_duration: animate__slower
60
- # title_animate_delay: animate__delay-2s
61
- # raised_level: 15
62
-
63
58
  padding_top: 400
64
59
  padding_bottom: 50
65
60
  opacity: 0.5
66
61
 
67
- # background_color_1: transparent
68
- # background_color_2: transparent
69
-
70
- background_color_1: "#0D47A1" # md-blue-900
71
- background_color_2: "#0D47A1" # md-blue-900
62
+ background_color_1: "#0D47A1" # md-blue-900 | transparent
63
+ background_color_2: "#0D47A1" # md-blue-900 | transparent
72
64
 
73
65
  filters:
74
66
  grayscale: 1
@@ -76,7 +68,7 @@ settings:
76
68
  brightness: 0.8
77
69
 
78
70
  # --------------------------------------------------------------------------
79
- # layouts posts|pages
71
+ # layouts collections|posts|pages|blog_archive
80
72
  #
81
73
  - name: Pages and Posts
82
74
  attic:
@@ -84,13 +76,15 @@ settings:
84
76
 
85
77
  id: attic_page_post
86
78
  layout: [ collection, page, post, blog_archive ]
79
+
87
80
  padding_top: 400
88
81
  padding_bottom: 50
89
82
  opacity: 0.5
90
83
 
91
84
  filters:
92
- grayscale: 0.5
93
- sepia: 0.5
85
+ grayscale: 1
86
+ contrast: 0.8
87
+ brightness: 0.8
94
88
 
95
89
  # --------------------------------------------------------------------------
96
90
  # layouts raw
@@ -101,12 +95,18 @@ settings:
101
95
 
102
96
  id: attic_raw
103
97
  layout: [ raw ]
98
+
104
99
  padding_top: 400
105
100
  padding_bottom: 50
106
101
  opacity: 0.5
107
102
 
103
+ filters:
104
+ grayscale: 1
105
+ contrast: 0.8
106
+ brightness: 0.8
107
+
108
108
  # --------------------------------------------------------------------------
109
- # layouts collection|app|raw
109
+ # layouts app
110
110
  #
111
111
  - name: Text pages
112
112
  attic:
@@ -115,5 +115,8 @@ settings:
115
115
  id: attic_text
116
116
  layout: [ app ]
117
117
 
118
+ padding_top: 400
119
+ padding_bottom: 50
120
+
118
121
  # ------------------------------------------------------------------------------
119
122
  # END config
@@ -43,48 +43,55 @@ defaults:
43
43
  notranslate: true
44
44
  pauseOnHover: false
45
45
 
46
- icon_family: MDI
46
+ icon_family: MDI # MDI | FontAweSome
47
47
  icon_color: "#9E9E9E" # md-gray
48
48
  icon_size: default
49
49
 
50
50
  raised_level: 0
51
51
  r_text: enabled
52
52
  text_emphasis: stronger
53
+
53
54
  padding_top: 200
54
55
  padding_bottom: 50
55
56
  margin_bottom: 50
56
57
 
57
58
  title_size: 3em
58
59
  title_color: rgba(255, 255, 255, 0.8) # rgba_lighten_800
59
- title_animate: animate__bounceInDown # fadeInDown fadeInLeft
60
- title_animate_duration: animate__slower
61
- # title_animate_delay: animate__delay-2s
62
- title_align: left
60
+ title_align: left # left | center | right (BS text alignment text-xxx)
61
+ title_animate: animate__bounceInDown # all options allowed from animate
62
+ title_animate_duration: animate__slower # all options allowed from animate
63
+ # title_animate_delay: animate__delay-2s # all options allowed from animate
64
+
63
65
 
64
66
  tagline_size: 1.5em
65
- tagline_color: rgba(255, 255, 255, 0.8) # rgba_lighten_800
67
+ tagline_color: rgba(255, 255, 255, 0.8)
68
+ tagline_align: left
66
69
  tagline_animate: animate__fadeInRight
67
70
  tagline_animate_duration: animate__slower
68
71
  # tagline_animate_delay: animate__delay-2s
69
- tagline_align: left
72
+
70
73
 
71
74
  # gradient effect (all image color typas)
72
75
  #
73
- # background_color_1: "#000" # black
74
- # background_color_2: "#78909C" # md-bluegray-400
76
+ # background_color_1: "#000" # black
77
+ # background_color_2: "#78909C" # md-bluegray-400
75
78
 
76
79
  # duo-color effect, base color 'blue' (requires gray-scaled images)
77
80
  #
78
81
  background_color_1: "#0D47A1" # md-blue-900
79
82
  background_color_2: "#0D47A1" # md-blue-900
80
83
 
84
+ # currently NOT supported
85
+ #
81
86
  action_enabled: false
82
87
  action_url: "#void"
83
88
  action_button: btn-default
84
89
  action_icon: download # cloud-action
85
- action_icon_family: MDI # FontAweSome
90
+ action_icon_family: MDI # MDI | FontAweSome
86
91
  action_text: Download Now
87
92
 
93
+ # currently NOT supported
94
+ #
88
95
  logo_enabled: false
89
96
  logo_url: /assets/images/modules/icons/j1/j1-512x512.png
90
97
  logo_alt: Jekyll-One-Template
@@ -176,7 +183,7 @@ defaults:
176
183
 
177
184
 
178
185
  # ----------------------------------------------------------------------------
179
- # Attic properties (Layout specific settings)
186
+ # Attic layout properties (Layout specific)
180
187
  #
181
188
  attics:
182
189
 
@@ -170,31 +170,31 @@ defaults:
170
170
 
171
171
  paginator:
172
172
  older_posts:
173
- en: Older Posts
174
- de: Ältere Beiträge
173
+ en: Older
174
+ de: Ältere
175
175
  newer_posts:
176
- en: Newer Posts
177
- de: Neuere Beiträge
176
+ en: Newer
177
+ de: Neuere
178
178
  first_post:
179
- en: First Page
180
- de: Erste Seite
179
+ en: First
180
+ de: Erste
181
181
  last_post:
182
- en: Last Page
183
- de: Letzte Seite
182
+ en: Last
183
+ de: Letzte
184
184
 
185
185
  view_selector:
186
186
  category_view:
187
- en: By Category
188
- de: Nach Kategorie
187
+ en: Category
188
+ de: Kategorie
189
189
  date_view:
190
- en: By Date
191
- de: Nach Datum
190
+ en: Date
191
+ de: Datum
192
192
  archive_view:
193
- en: All Posts
194
- de: Alle Beiträge
193
+ en: All
194
+ de: Alle
195
195
  tag_view:
196
- en: By Tag
197
- de: Nach Tag
196
+ en: Tag
197
+ de: Tag
198
198
 
199
199
  article_navigator:
200
200
  page_text:
@@ -204,18 +204,18 @@ defaults:
204
204
  description: >
205
205
  Navigate through all of the articles available on this site. To do this,
206
206
  use the various display pages to find the articles that interest you.
207
- The <b>By Category</b> page lists articles on a specific <b>topic</b>.
207
+ The <b>Category</b> page lists articles on a specific <b>topic</b>.
208
208
  If you are looking for articles by publication date, you can use the view
209
- Use <b>By Date</b>. All articles in reverse order of appearance can be
210
- found in the view <b>All Posts</b>.
209
+ <b>Date</b>. All articles in reverse order of appearance can be
210
+ found in the view <b>All</b>.
211
211
  de:
212
212
  description: >
213
213
  Navigieren Sie durch alle auf dieser Site verfügbaren Artikel. Verenden Sie
214
214
  dazu die verschiedenen Anzeigeseiten um die Beitäge finden, die Sie interessieren.
215
- Die Seite <b>Nach Kategorie</b> listet Artikel zu einem bestimmten <b>Thema</b>.
215
+ Die Seite <b>Kategorie</b> listet Artikel zu einem bestimmten <b>Thema</b>.
216
216
  Suchen Sie nach Artikeln nach einem Erscheinungsdatum, könne Sie die Ansicht
217
- <b>Nach Datum</b> verwenden. Alle Artikel in umgekehrter Reihenfolge ihres
218
- Erscheinens sind in der Ansicht <b>Alle Beiträge</b> zu finden.
217
+ <b>Datum</b> verwenden. Alle Artikel in umgekehrter Reihenfolge ihres
218
+ Erscheinens sind in der Ansicht <b>Alle</b> zu finden.
219
219
 
220
220
  article_previewer:
221
221
  page_text:
@@ -229,21 +229,21 @@ defaults:
229
229
  <i class="mdi mdi-plus"></i>FAB button</a> you can reach a table of contents
230
230
  <a href="#" class="btn-fab-floating btn-small btn-md-blue">
231
231
  <i class="mdi mdi-wrap mdi-"></i>open_mmenu_toc</a> of all available articles
232
- in the same order. To preview older posts, use the button <b>Older Posts</b> from
233
- the Preview Bar. For newer posts use the button <b>Newer Posts</b> for more recent
232
+ in the same order. To preview older posts, use the button <b>Older</b> from
233
+ the Preview Bar. For newer posts use the button <b>Newer</b> for more recent
234
234
  articles.
235
235
  de:
236
236
  headline: Vorschau
237
237
  description: >
238
- Alle Artikel sind in umgekehrter Reihenfolge ihres Erscheinens
239
- gruppiert. Aktuellere Beiträge werden zuerst angezeigt. Über den FAB-Button
238
+ Alle Artikel sind in umgekehrter Reihenfolge ihres Erscheinens gruppiert.
239
+ Aktuellere Beiträge werden zuerst angezeigt. Über den FAB-Button
240
240
  <a href="#" class="btn-fab-floating btn-small btn-md-blue">
241
241
  <i class="mdi mdi-plus"></i>FAB button</a> erreichen Sie ein
242
242
  Inhaltsverzeichnis <a href="#" class="btn-fab-floating btn-small btn-md-blue">
243
243
  <i class="mdi mdi-wrap mdi-"></i>open_mmenu_toc</a> über alle verfübaren Artikel
244
244
  in gleicher Reihenfolge. Zur Anzeige älterer Artikel, verwenden Sie die Schältfläche
245
- <b>Ältere Beiträge</b>. Für jüngere Posts klicken Sie auf die Schältfläche
246
- <b>Neuere Beiträge</b>.
245
+ <b>Ältere</b>. Für jüngere Posts klicken Sie auf die Schältfläche
246
+ <b>Neuere</b>.
247
247
 
248
248
  archive_view:
249
249
  page_text:
@@ -264,8 +264,8 @@ defaults:
264
264
  <br><br>
265
265
  From the navigation bar, <b>Navigator</b> takes you back to the
266
266
  <b>main page</b> of the Navigator. Articles ordered by <b>category</b>
267
- can be found in the view <b>By Category</b>. To search for posts
268
- in the archive by <b>date</b>, go for the view <b>By Date</b>.
267
+ can be found in the view <b>Category</b>. To search for posts
268
+ in the archive by <b>date</b>, go for the view <b>Date</b>.
269
269
  de:
270
270
  headline: Alle Beiträge
271
271
  description: >
@@ -280,8 +280,8 @@ defaults:
280
280
  <br><br>
281
281
  In der Navigationszeile gelangen Sie über <b>Navigator</b> zurück zur
282
282
  <b>Hauptseite</b> des Navigators. Artikel nach ihrer Kategorie sind über die Seite
283
- <b>Nach Kategorie</b> zu finden. Um Beiträge im Archiv nach <b>Datum</b>
284
- zu durchsuchen, rufen Sie die Anzeige <b>Nach Datum</b> auf.
283
+ <b>Kategorie</b> zu finden. Um Beiträge im Archiv nach <b>Datum</b>
284
+ zu durchsuchen, rufen Sie die Anzeige <b>Datum</b> auf.
285
285
 
286
286
  category_view:
287
287
  page_text:
@@ -302,8 +302,8 @@ defaults:
302
302
  <br><br>
303
303
  From the navigation bar, <b>Navigator</b> takes you back to the
304
304
  <b>main page</b> of the Navigator. To search for articles in the
305
- archive by date, go for the view <b>By Date</b>. All articles in
306
- reverse order of appearance can be found in the view <b>All Posts</b>.
305
+ archive by date, go for the view <b>Date</b>. All articles in
306
+ reverse order of appearance can be found in the view <b>All</b>.
307
307
 
308
308
  de:
309
309
  headline: Artikel nach Kategorie
@@ -320,9 +320,9 @@ defaults:
320
320
  <br><br>
321
321
  In der Navigationszeile gelangen Sie über <b>Navigator</b> zurück zur
322
322
  <b>Hauptseite</b> des Navigators. Um Artikel im Archiv nach <b>Datum</b>
323
- zu durchsuchen, rufen Sie die Anzeige <b>Nach Datum</b> auf. Alle Artikel
323
+ zu durchsuchen, rufen Sie die Anzeige <b>Datum</b> auf. Alle Artikel
324
324
  in umgekehrter Reihenfolge ihres Erscheinens sind in der Ansicht
325
- <b>Alle Beiträge</b> zu finden.
325
+ <b>Alle</b> zu finden.
326
326
 
327
327
  date_view:
328
328
  page_text:
@@ -343,8 +343,8 @@ defaults:
343
343
  <br><br>
344
344
  From the navigation bar, <b>Navigator</b> takes you back to the
345
345
  <b>main page</b> of the Navigator. To search for articles in the
346
- archive by category, go for the view <b>By Category</b>. All articles
347
- in reverse order of appearance can be found in the view <b>All Posts</b>.
346
+ archive by category, go for the view <b>Category</b>. All articles
347
+ in reverse order of appearance can be found in the view <b>All</b>.
348
348
  de:
349
349
  headline: Artikel nach Datum
350
350
  description: >
@@ -360,8 +360,8 @@ defaults:
360
360
  <br><br>
361
361
  In der Navigationszeile gelangen Sie über <b>Navigator</b> zurück zur
362
362
  <b>Hauptseite</b> des Navigators. Um Artikel im Archiv nach <b>Kategorien</b> zu durchsuchen,
363
- rufen Sie die Anzeige <b>Nach Kategorie</b> auf. Alle Artikel in umgekehrter
364
- Reihenfolge ihres Erscheinens sind in der Ansicht <b>Alle Beiträge</b>
363
+ rufen Sie die Anzeige <b>Kategorie</b> auf. Alle Artikel in umgekehrter
364
+ Reihenfolge ihres Erscheinens sind in der Ansicht <b>Alle</b>
365
365
  zu finden.
366
366
 
367
367
  tag_view:
@@ -383,8 +383,8 @@ defaults:
383
383
  <br><br>
384
384
  From the navigation bar, <b>Navigator</b> takes you back to the
385
385
  <b>main page</b> of the Navigator. To search for articles in the
386
- archive by category, go for the view <b>By Category</b>. All articles
387
- in reverse order of appearance can be found in the view <b>All Posts</b>.
386
+ archive by category, go for the view <b>Category</b>. All articles
387
+ in reverse order of appearance can be found in the view <b>All</b>.
388
388
  de:
389
389
  headline: Artikel nach Tag
390
390
  description: >
@@ -400,8 +400,8 @@ defaults:
400
400
  <br><br>
401
401
  In der Navigationszeile gelangen Sie über <b>Navigator</b> zurück zur
402
402
  <b>Hauptseite</b> des Navigators. Um Artikel im Archiv nach <b>Kategorien</b> zu durchsuchen,
403
- rufen Sie die Anzeige <b>Nach Kategorie</b> auf. Alle Artikel in umgekehrter
404
- Reihenfolge ihres Erscheinens sind in der Ansicht <b>Alle Beiträge</b>
403
+ rufen Sie die Anzeige <b>Kategorie</b> auf. Alle Artikel in umgekehrter
404
+ Reihenfolge ihres Erscheinens sind in der Ansicht <b>Alle</b>
405
405
  zu finden.
406
406
 
407
407
  # ------------------------------------------------------------------------------
@@ -92,6 +92,8 @@ defaults:
92
92
  background_color_full: rgba(0, 0, 0, 0.8) # darken-600
93
93
  # background_color_collapsed: "#2196F3" # # default: theme|bg_primary
94
94
  # background_color_scrolled: "#2196F3" # # default: theme|bg_primary
95
+ background_color_collapsed: default # # default: theme|bg_primary
96
+ background_color_scrolled: default # # default: theme|bg_primary
95
97
 
96
98
  # ----------------------------------------------------------------------------
97
99
  # NavMenu (Mobile)
@@ -26,7 +26,7 @@ description:
26
26
  defaults:
27
27
  enabled: false
28
28
 
29
- themes: [ all ]
29
+ themes: [ UnoLight ]
30
30
 
31
31
  # ------------------------------------------------------------------------------
32
32
  # END config