j1-template 2022.0.10 → 2022.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/assets/themes/j1/adapter/js/advertising.js +66 -48
  3. data/assets/themes/j1/adapter/js/algolia.js +10 -13
  4. data/assets/themes/j1/adapter/js/analytics.js +259 -0
  5. data/assets/themes/j1/adapter/js/asciidoctor.js +10 -13
  6. data/assets/themes/j1/adapter/js/attic.js +10 -5
  7. data/assets/themes/j1/adapter/js/bmd.js +10 -14
  8. data/assets/themes/j1/adapter/js/carousel.js +10 -13
  9. data/assets/themes/j1/adapter/js/clipboard.js +9 -10
  10. data/assets/themes/j1/adapter/js/comments.js +407 -0
  11. data/assets/themes/j1/adapter/js/cookieConsent.js +106 -87
  12. data/assets/themes/j1/adapter/js/fab.js +11 -11
  13. data/assets/themes/j1/adapter/js/framer.js +60 -62
  14. data/assets/themes/j1/adapter/js/j1.js +225 -268
  15. data/assets/themes/j1/adapter/js/justifiedGallery.js +12 -14
  16. data/assets/themes/j1/adapter/js/justifiedGalleryCustomizer.js +10 -13
  17. data/assets/themes/j1/adapter/js/lightbox.js +12 -9
  18. data/assets/themes/j1/adapter/js/logger.js +11 -5
  19. data/assets/themes/j1/adapter/js/mmenu.js +11 -12
  20. data/assets/themes/j1/adapter/js/navigator.js +13 -12
  21. data/assets/themes/j1/adapter/js/quicksearch.js +10 -13
  22. data/assets/themes/j1/adapter/js/rouge.js +10 -13
  23. data/assets/themes/j1/adapter/js/rtable.js +10 -13
  24. data/assets/themes/j1/adapter/js/rtextResizer.js +10 -13
  25. data/assets/themes/j1/adapter/js/scroller.js +13 -11
  26. data/assets/themes/j1/adapter/js/themer.js +12 -3
  27. data/assets/themes/j1/adapter/js/toccer.js +10 -13
  28. data/assets/themes/j1/adapter/js/translator.js +35 -81
  29. data/assets/themes/j1/core/js/template.js +13 -5
  30. data/assets/themes/j1/core/js/template.min.js +1 -1
  31. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  32. data/assets/themes/j1/modules/advertising/js/google/adInitializer.js +14 -4
  33. data/assets/themes/j1/modules/cookieConsent/js/cookieConsent.js +11 -2
  34. data/assets/themes/j1/modules/cookieConsent/js/cookieConsent.min.js +1 -1
  35. data/lib/j1/version.rb +1 -1
  36. data/lib/starter_web/Gemfile +1 -1
  37. data/lib/starter_web/_config.yml +1 -9
  38. data/lib/starter_web/_data/apps/carousel.yml +2 -2
  39. data/lib/starter_web/_data/apps/defaults/carousel.yml +3 -2
  40. data/lib/starter_web/_data/apps/defaults/justifiedGallery.yml +2 -2
  41. data/lib/starter_web/_data/apps/defaults/justifiedGalleryCustomizer.yml +2 -2
  42. data/lib/starter_web/_data/apps/defaults/lightGallery.yml +2 -2
  43. data/lib/starter_web/_data/apps/defaults/lightbox.yml +2 -2
  44. data/lib/starter_web/_data/apps/justifiedGallery.yml +2 -2
  45. data/lib/starter_web/_data/apps/justifiedGalleryCustomizer.yml +2 -2
  46. data/lib/starter_web/_data/apps/lightGallery.yml +2 -2
  47. data/lib/starter_web/_data/apps/lightbox.yml +2 -2
  48. data/lib/starter_web/_data/blocks/banner.yml +3 -2
  49. data/lib/starter_web/_data/blocks/defaults/banner.yml +9 -0
  50. data/lib/starter_web/_data/blocks/defaults/footer.yml +9 -0
  51. data/lib/starter_web/_data/blocks/defaults/panel.yml +9 -0
  52. data/lib/starter_web/_data/blocks/footer.yml +3 -2
  53. data/lib/starter_web/_data/blocks/panel.yml +3 -2
  54. data/lib/starter_web/_data/builder/blog_navigator.yml +3 -2
  55. data/lib/starter_web/_data/builder/defaults/blog_navigator.yml +8 -8
  56. data/lib/starter_web/_data/j1_config.yml +0 -116
  57. data/lib/starter_web/_data/layouts/default.yml +14 -14
  58. data/lib/starter_web/_data/layouts/home.ads.yml +262 -0
  59. data/lib/starter_web/_data/layouts/home.no-ads.yml +262 -0
  60. data/lib/starter_web/_data/layouts/home.yml +1 -1
  61. data/lib/starter_web/_data/layouts/page.yml +7 -18
  62. data/lib/starter_web/_data/layouts/post.yml +0 -11
  63. data/lib/starter_web/_data/modules/advertising.yml +4 -14
  64. data/lib/starter_web/_data/modules/analytics.yml +99 -0
  65. data/lib/starter_web/_data/modules/attics.yml +3 -2
  66. data/lib/starter_web/_data/modules/comments.yml +55 -0
  67. data/lib/starter_web/_data/modules/cookieconsent.yml +2 -1
  68. data/lib/starter_web/_data/modules/cookies.yml +6 -1
  69. data/lib/starter_web/_data/modules/defaults/advertising.yml +9 -9
  70. data/lib/starter_web/_data/modules/defaults/analytics.yml +93 -0
  71. data/lib/starter_web/_data/modules/defaults/attics.yml +3 -2
  72. data/lib/starter_web/_data/modules/defaults/authentication.yml +51 -48
  73. data/lib/starter_web/_data/modules/defaults/comments.yml +114 -0
  74. data/lib/starter_web/_data/modules/defaults/cookieconsent.yml +3 -3
  75. data/lib/starter_web/_data/modules/defaults/cookies.yml +107 -26
  76. data/lib/starter_web/_data/modules/defaults/fab.yml +4 -2
  77. data/lib/starter_web/_data/modules/defaults/framer.yml +2 -3
  78. data/lib/starter_web/_data/modules/defaults/log4javascript.yml +3 -2
  79. data/lib/starter_web/_data/modules/defaults/log4r.yml +2 -2
  80. data/lib/starter_web/_data/modules/defaults/navigator.yml +4 -2
  81. data/lib/starter_web/_data/modules/defaults/quicksearch.yml +4 -3
  82. data/lib/starter_web/_data/modules/defaults/rtable.yml +3 -2
  83. data/lib/starter_web/_data/modules/defaults/scoller.yml +3 -2
  84. data/lib/starter_web/_data/modules/defaults/themer.yml +119 -118
  85. data/lib/starter_web/_data/modules/defaults/toccer.yml +1 -1
  86. data/lib/starter_web/_data/modules/defaults/translator.yml +1 -1
  87. data/lib/starter_web/_data/modules/fab.yml +3 -2
  88. data/lib/starter_web/_data/modules/framer.yml +3 -4
  89. data/lib/starter_web/_data/modules/log4r.yml +2 -2
  90. data/lib/starter_web/_data/modules/navigator.yml +4 -2
  91. data/lib/starter_web/_data/modules/quicksearch.yml +3 -3
  92. data/lib/starter_web/_data/modules/rtable.yml +3 -3
  93. data/lib/starter_web/_data/modules/scroller.yml +2 -3
  94. data/lib/starter_web/_data/modules/themer.yml +2 -3
  95. data/lib/starter_web/_data/modules/toccer.yml +3 -3
  96. data/lib/starter_web/_data/modules/translator.yml +1 -1
  97. data/lib/starter_web/_data/plugins/defaults/paginator.yml +2 -2
  98. data/lib/starter_web/_data/plugins/paginator.yml +2 -2
  99. data/lib/starter_web/_data/resources.yml +442 -309
  100. data/lib/starter_web/_includes/attributes.asciidoc +1 -1
  101. data/lib/starter_web/_plugins/lunr_index.rb +1 -1
  102. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +1 -1
  103. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +1 -1
  104. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.ads.asciidoc +196 -0
  105. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.comments.asciidoc +182 -0
  106. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-site-generators.adoc +1 -1
  107. data/lib/starter_web/collections/posts/public/featured/_posts/2021-03-03-about-j1.adoc +1 -1
  108. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-01-post-wiki-series.adoc +1 -1
  109. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-02-post-wiki-series.adoc +1 -1
  110. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-03-post-wiki-series.adoc +1 -1
  111. data/lib/starter_web/index.html +0 -3
  112. data/lib/starter_web/package.json +1 -1
  113. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/000_intro.adoc +1 -1
  114. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/100_converter.adoc +1 -1
  115. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/200_themes.adoc +1 -1
  116. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/documentation.adoc +1 -4
  117. data/lib/starter_web/pages/public/asciidoc_skeletons/multi-document/multi.adoc +1 -4
  118. data/lib/starter_web/pages/public/asciidoc_skeletons/simple-document/simple.adoc +1 -4
  119. data/lib/starter_web/pages/public/learn/roundtrip/{100_present_images.no_ads.asciidoc → 100_present_images.base.asciidoc} +0 -0
  120. data/lib/starter_web/pages/public/learn/roundtrip/100_present_images.comments.asciidoc +237 -0
  121. data/lib/starter_web/pages/public/manuals/dropdown-help.adoc +23 -2
  122. data/lib/starter_web/pages/public/previewer/preview_bootstrap_theme.adoc +100 -166
  123. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  124. data/lib/starter_web/utilsrv/package.json +1 -1
  125. metadata +14 -26
  126. data/_includes/themes/j1/blocks/ads/ad.html +0 -64
  127. data/_includes/themes/j1/modules/boards/news_pin_board.html +0 -183
  128. data/_includes/themes/j1/modules/connectors/analytic/custom-provider.html +0 -32
  129. data/_includes/themes/j1/modules/connectors/analytic/google-analytics.html +0 -30
  130. data/_includes/themes/j1/modules/connectors/analytics +0 -60
  131. data/_includes/themes/j1/modules/connectors/comment/commento.html +0 -31
  132. data/_includes/themes/j1/modules/connectors/comment/custom-provider.html +0 -30
  133. data/_includes/themes/j1/modules/connectors/comment/disqus.html +0 -32
  134. data/_includes/themes/j1/modules/connectors/comment/facebook.html +0 -30
  135. data/_includes/themes/j1/modules/connectors/comment/hyvor.html +0 -32
  136. data/_includes/themes/j1/modules/connectors/comment/just-comments.html +0 -31
  137. data/_includes/themes/j1/modules/connectors/comments +0 -64
  138. data/_includes/themes/j1/modules/connectors/sharing +0 -29
  139. data/_includes/themes/j1/modules/connectors/survey/custom-provider.html +0 -30
  140. data/_includes/themes/j1/modules/connectors/survey/jotform.html +0 -32
  141. data/_includes/themes/j1/modules/connectors/surveys +0 -58
  142. data/_includes/themes/j1/modules/connectors/translator +0 -58
  143. data/_includes/themes/j1/modules/connectors/translators/custom-translator.html +0 -32
  144. data/_includes/themes/j1/modules/connectors/translators/google-translator.html +0 -53
  145. data/_includes/themes/j1/modules/search/algolia.html +0 -181
  146. data/_includes/themes/j1/modules/search/docsearch.html +0 -42
  147. data/assets/data/disqus.js +0 -81
  148. data/assets/data/hyvor.js +0 -72
@@ -0,0 +1,262 @@
1
+ # ------------------------------------------------------------------------------
2
+ # ~/_data/layouts/home.yml
3
+ # Configuration data to specify the (HTML) Layout of all content
4
+ # pages of type HOME placed by the content loader
5
+ #
6
+ # Product/Info:
7
+ # https://jekyll.one
8
+ #
9
+ # Copyright (C) 2021 Juergen Adams
10
+ #
11
+ # J1 Template is licensed under the MIT License.
12
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
13
+ #
14
+ # ------------------------------------------------------------------------------
15
+ # NOTE:
16
+ # By J1 template, "Liquid Procedures" are being used intensively. To load
17
+ # HTML data for a layout, the loader procedure places the data based this
18
+ # YAML data file into the REGION specified with a LANE.
19
+ # ------------------------------------------------------------------------------
20
+
21
+ # ------------------------------------------------------------------------------
22
+ # Layout configuration settings
23
+ #
24
+ # lanes|lane
25
+ # ----------------------------------------------------------------------------
26
+ # Set LANE specific configuration parameters for a page LAYOUT. The
27
+ # LANES array contains multiple (lane) hashes that describes the type
28
+ # of the component that is loaded into a lane and their specific
29
+ # (placement) parameters.
30
+ #
31
+ # region
32
+ # ----------------------------------------------------------------------------
33
+ # J1 templates defines, based on the general structure of a HTML page
34
+ # (head|body), more specific REGIONS based on HTML5 semantic elements
35
+ # to place HTML data:
36
+ #
37
+ # head <head> section. Contains (site-wide) meta data and
38
+ # all CSS and JS files are to be loaded for a page.
39
+ # body-navigation <body> NAV section. Contains the main navigation bar.
40
+ # Placed a the BEGINNING of the <body> section.
41
+ # body-header <body> HEADER section. Contains the page banner (header).
42
+ # Placed AFTER the page navigation but BEFORE the main
43
+ # content (body-main) of a page.
44
+ # body-main <body> MAIN section. J1 template puts a <main> container
45
+ # element in the <body> section to place the (main) content.
46
+ # All content related elements are loaded into the region
47
+ # 'body-main'. Content may components like boxes, panels,
48
+ # quotes etc. and the document content like sections and
49
+ # articles.
50
+ # body-footer <body> FOOTER section. J1 template puts a <footer> element
51
+ # at the end of the <BODY> section. The body-footer region
52
+ # contains all elements that should be loaded at the end
53
+ # of a page; typically the page footer.
54
+ #
55
+ # values: head|body-navigation|body-header|body-main|body-footer
56
+ # default: no defaults
57
+ #
58
+ # type
59
+ # ----------------------------------------------------------------------------
60
+ # The (HTML) content of a lane can be included (from an include file) or
61
+ # loaded asychronously from a HTML data file by AJAX (get|load) calls.
62
+ # J1 template is using jQuery as an interface to AJAX calls.
63
+ #
64
+ # values: include|load
65
+ # default: no defaults
66
+ #
67
+ # source
68
+ # ----------------------------------------------------------------------------
69
+ # The parameter source defines a (site root relativ) path to the data
70
+ # source to be included or loaded.
71
+ #
72
+ # values: string (path)
73
+ # default: no defaults
74
+ #
75
+ # file
76
+ # ----------------------------------------------------------------------------
77
+ # Defines the data file to be included or loaded.
78
+ #
79
+ # values: string
80
+ # default: no defaults
81
+ #
82
+ # id
83
+ # ----------------------------------------------------------------------------
84
+ # Used for AJAX load calls (see parameter type). The id is used twice. First,
85
+ # id references a HTML fragment as part of the (HTML) data file (see parameter
86
+ # data below). Second, the id is used to identify the placeholder (div)
87
+ # element where the AJAX call puts the data on.
88
+ #
89
+ # values: string
90
+ # default: no defaults
91
+ #
92
+ # class
93
+ # ----------------------------------------------------------------------------
94
+ # Additional CSS classes that are put on the placeholder (div) element.
95
+ # Can be used for type 'load', only.
96
+ #
97
+ # values: string (CSS class name)
98
+ # default: no defaults
99
+ #
100
+ # ------------------------------------------------------------------------------
101
+
102
+ # ------------------------------------------------------------------------------
103
+ # Layout configuration settings
104
+ #
105
+ lanes:
106
+
107
+ # ----------------------------------------------------------------------------
108
+ # MASTER header
109
+ #
110
+ - lane:
111
+ enabled: true
112
+ region: body-header
113
+ type: sync
114
+ base: _includes/themes/j1
115
+ path: modules/attics
116
+ file: generator.html
117
+
118
+ # ----------------------------------------------------------------------------
119
+ # MASTER slider
120
+ #
121
+ - lane:
122
+ enabled: false
123
+ id: master_slider
124
+ region: body-header
125
+ type: async
126
+ properties: mb-0
127
+
128
+ # ----------------------------------------------------------------------------
129
+ # Top Advertisment
130
+ #
131
+ - lane:
132
+ enabled: false
133
+ region: body-header
134
+ id: google_ad_top_home
135
+ type: sync
136
+ base: _includes/themes/j1
137
+ path: modules/ads
138
+ file: google_ad_top_home.html
139
+
140
+ # ----------------------------------------------------------------------------
141
+ # PAGE CONTENT (region body-main)
142
+ #
143
+ # NOTE:
144
+ # The CONTENT of a post or page may already rendered (page contains HTML
145
+ # data) or unrendered (page contains MARKUP data). In both cases, rendered
146
+ # or unrendered content, a valid FRONTMATTER is needed to pass the data.
147
+ #
148
+ # The CONTENT generation for posts and pages depends on the data type,
149
+ # the MARKUP language (Markdown, Asciidoc) the page is using. The data
150
+ # type is specified by the file EXTENSION (e.g. ".md" for Markdown or
151
+ # ".adoc" for Asciidoc formatted content).
152
+ #
153
+ # To enable Jekyll running the render phase, the respective processor
154
+ # (e.g.kramdown for MARKDOWN or asciidoctor for ASCIIDOC) needs to be
155
+ # loaded and configured (Gemfile and the side-wide configuration file
156
+ # _config.yml).
157
+ #
158
+ # NOTE:
159
+ # The CONTENT of a PAGE is passed trough a (Liquid) wrapper procedure
160
+ # (page_content.html) to add or inject specific ADDITIONAL data like
161
+ # a TOC etc. that influences the resulting page.
162
+ #
163
+ # To modify the wrapper, DO NOT CHANGE the template files. See with
164
+ # ***URL*** how to create your own wrapper (and OVERLOAD the J1 template
165
+ # system with the data you provided).
166
+ #
167
+ # ----------------------------------------------------------------------------
168
+
169
+ # ----------------------------------------------------------------------------
170
+ # TEASER banner
171
+ #
172
+ - lane:
173
+ enabled: true
174
+ id: home_teaser_banner
175
+ region: body-main
176
+ type: async
177
+ properties: g-2 elevated-z0
178
+
179
+ # ----------------------------------------------------------------------------
180
+ # SERVICE panel
181
+ #
182
+ - lane:
183
+ enabled: false
184
+ id: home_service_panel
185
+ region: body-main
186
+ type: async
187
+ properties: g-2 elevated-z0
188
+
189
+ # ----------------------------------------------------------------------------
190
+ # DIVIDER banner
191
+ #
192
+ - lane:
193
+ enabled: false
194
+ id: divider-1
195
+ region: body-main
196
+ type: async
197
+ properties: mt-4 mr-5 mb-4 ml-5
198
+
199
+ # ----------------------------------------------------------------------------
200
+ # Page Advertisment
201
+ #
202
+ - lane:
203
+ enabled: false
204
+ region: body-main
205
+ id: google_ad_content_home
206
+ type: sync
207
+ base: _includes/themes/j1
208
+ path: modules/ads
209
+ file: google_ad_content_home.html
210
+
211
+ # ----------------------------------------------------------------------------
212
+ # INTRO panel
213
+ #
214
+ - lane:
215
+ enabled: true
216
+ id: home_intro_panel
217
+ region: body-main
218
+ type: async
219
+ properties: g-2 elevated-z2
220
+
221
+ # ----------------------------------------------------------------------------
222
+ # PARALLAX banner
223
+ #
224
+ - lane:
225
+ enabled: true
226
+ id: home_parallax_banner
227
+ region: body-main
228
+ type: async
229
+ properties: elevated-z0
230
+
231
+ # ----------------------------------------------------------------------------
232
+ # IMAGE banner
233
+ #
234
+ - lane:
235
+ enabled: false
236
+ id: home_image_banner
237
+ region: body-main
238
+ type: async
239
+ properties: mb-3
240
+
241
+ # ----------------------------------------------------------------------------
242
+ # NEWS panel
243
+ #
244
+ - lane:
245
+ enabled: true
246
+ id: home_news_panel
247
+ region: body-main
248
+ type: async
249
+ properties: g-2 elevated-z2
250
+
251
+ # ----------------------------------------------------------------------------
252
+ # FAB
253
+ #
254
+ - lane:
255
+ enabled: true
256
+ id: fab-container
257
+ region: body-main
258
+ type: async
259
+ properties: elevated-z0
260
+
261
+ # ------------------------------------------------------------------------------
262
+ # END config
@@ -0,0 +1,262 @@
1
+ # ------------------------------------------------------------------------------
2
+ # ~/_data/layouts/home.yml
3
+ # Configuration data to specify the (HTML) Layout of all content
4
+ # pages of type HOME placed by the content loader
5
+ #
6
+ # Product/Info:
7
+ # https://jekyll.one
8
+ #
9
+ # Copyright (C) 2021 Juergen Adams
10
+ #
11
+ # J1 Template is licensed under the MIT License.
12
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
13
+ #
14
+ # ------------------------------------------------------------------------------
15
+ # NOTE:
16
+ # By J1 template, "Liquid Procedures" are being used intensively. To load
17
+ # HTML data for a layout, the loader procedure places the data based this
18
+ # YAML data file into the REGION specified with a LANE.
19
+ # ------------------------------------------------------------------------------
20
+
21
+ # ------------------------------------------------------------------------------
22
+ # Layout configuration settings
23
+ #
24
+ # lanes|lane
25
+ # ----------------------------------------------------------------------------
26
+ # Set LANE specific configuration parameters for a page LAYOUT. The
27
+ # LANES array contains multiple (lane) hashes that describes the type
28
+ # of the component that is loaded into a lane and their specific
29
+ # (placement) parameters.
30
+ #
31
+ # region
32
+ # ----------------------------------------------------------------------------
33
+ # J1 templates defines, based on the general structure of a HTML page
34
+ # (head|body), more specific REGIONS based on HTML5 semantic elements
35
+ # to place HTML data:
36
+ #
37
+ # head <head> section. Contains (site-wide) meta data and
38
+ # all CSS and JS files are to be loaded for a page.
39
+ # body-navigation <body> NAV section. Contains the main navigation bar.
40
+ # Placed a the BEGINNING of the <body> section.
41
+ # body-header <body> HEADER section. Contains the page banner (header).
42
+ # Placed AFTER the page navigation but BEFORE the main
43
+ # content (body-main) of a page.
44
+ # body-main <body> MAIN section. J1 template puts a <main> container
45
+ # element in the <body> section to place the (main) content.
46
+ # All content related elements are loaded into the region
47
+ # 'body-main'. Content may components like boxes, panels,
48
+ # quotes etc. and the document content like sections and
49
+ # articles.
50
+ # body-footer <body> FOOTER section. J1 template puts a <footer> element
51
+ # at the end of the <BODY> section. The body-footer region
52
+ # contains all elements that should be loaded at the end
53
+ # of a page; typically the page footer.
54
+ #
55
+ # values: head|body-navigation|body-header|body-main|body-footer
56
+ # default: no defaults
57
+ #
58
+ # type
59
+ # ----------------------------------------------------------------------------
60
+ # The (HTML) content of a lane can be included (from an include file) or
61
+ # loaded asychronously from a HTML data file by AJAX (get|load) calls.
62
+ # J1 template is using jQuery as an interface to AJAX calls.
63
+ #
64
+ # values: include|load
65
+ # default: no defaults
66
+ #
67
+ # source
68
+ # ----------------------------------------------------------------------------
69
+ # The parameter source defines a (site root relativ) path to the data
70
+ # source to be included or loaded.
71
+ #
72
+ # values: string (path)
73
+ # default: no defaults
74
+ #
75
+ # file
76
+ # ----------------------------------------------------------------------------
77
+ # Defines the data file to be included or loaded.
78
+ #
79
+ # values: string
80
+ # default: no defaults
81
+ #
82
+ # id
83
+ # ----------------------------------------------------------------------------
84
+ # Used for AJAX load calls (see parameter type). The id is used twice. First,
85
+ # id references a HTML fragment as part of the (HTML) data file (see parameter
86
+ # data below). Second, the id is used to identify the placeholder (div)
87
+ # element where the AJAX call puts the data on.
88
+ #
89
+ # values: string
90
+ # default: no defaults
91
+ #
92
+ # class
93
+ # ----------------------------------------------------------------------------
94
+ # Additional CSS classes that are put on the placeholder (div) element.
95
+ # Can be used for type 'load', only.
96
+ #
97
+ # values: string (CSS class name)
98
+ # default: no defaults
99
+ #
100
+ # ------------------------------------------------------------------------------
101
+
102
+ # ------------------------------------------------------------------------------
103
+ # Layout configuration settings
104
+ #
105
+ lanes:
106
+
107
+ # ----------------------------------------------------------------------------
108
+ # MASTER header
109
+ #
110
+ - lane:
111
+ enabled: true
112
+ region: body-header
113
+ type: sync
114
+ base: _includes/themes/j1
115
+ path: modules/attics
116
+ file: generator.html
117
+
118
+ # ----------------------------------------------------------------------------
119
+ # MASTER slider
120
+ #
121
+ - lane:
122
+ enabled: false
123
+ id: master_slider
124
+ region: body-header
125
+ type: async
126
+ properties: mb-0
127
+
128
+ # ----------------------------------------------------------------------------
129
+ # Top Advertisment
130
+ #
131
+ - lane:
132
+ enabled: false
133
+ region: body-header
134
+ id: google_ad_top_home
135
+ type: sync
136
+ base: _includes/themes/j1
137
+ path: modules/ads
138
+ file: google_ad_top_home.html
139
+
140
+ # ----------------------------------------------------------------------------
141
+ # PAGE CONTENT (region body-main)
142
+ #
143
+ # NOTE:
144
+ # The CONTENT of a post or page may already rendered (page contains HTML
145
+ # data) or unrendered (page contains MARKUP data). In both cases, rendered
146
+ # or unrendered content, a valid FRONTMATTER is needed to pass the data.
147
+ #
148
+ # The CONTENT generation for posts and pages depends on the data type,
149
+ # the MARKUP language (Markdown, Asciidoc) the page is using. The data
150
+ # type is specified by the file EXTENSION (e.g. ".md" for Markdown or
151
+ # ".adoc" for Asciidoc formatted content).
152
+ #
153
+ # To enable Jekyll running the render phase, the respective processor
154
+ # (e.g.kramdown for MARKDOWN or asciidoctor for ASCIIDOC) needs to be
155
+ # loaded and configured (Gemfile and the side-wide configuration file
156
+ # _config.yml).
157
+ #
158
+ # NOTE:
159
+ # The CONTENT of a PAGE is passed trough a (Liquid) wrapper procedure
160
+ # (page_content.html) to add or inject specific ADDITIONAL data like
161
+ # a TOC etc. that influences the resulting page.
162
+ #
163
+ # To modify the wrapper, DO NOT CHANGE the template files. See with
164
+ # ***URL*** how to create your own wrapper (and OVERLOAD the J1 template
165
+ # system with the data you provided).
166
+ #
167
+ # ----------------------------------------------------------------------------
168
+
169
+ # ----------------------------------------------------------------------------
170
+ # TEASER banner
171
+ #
172
+ - lane:
173
+ enabled: true
174
+ id: home_teaser_banner
175
+ region: body-main
176
+ type: async
177
+ properties: g-2 elevated-z0
178
+
179
+ # ----------------------------------------------------------------------------
180
+ # SERVICE panel
181
+ #
182
+ - lane:
183
+ enabled: false
184
+ id: home_service_panel
185
+ region: body-main
186
+ type: async
187
+ properties: g-2 elevated-z0
188
+
189
+ # ----------------------------------------------------------------------------
190
+ # DIVIDER banner
191
+ #
192
+ - lane:
193
+ enabled: false
194
+ id: divider-1
195
+ region: body-main
196
+ type: async
197
+ properties: mt-4 mr-5 mb-4 ml-5
198
+
199
+ # ----------------------------------------------------------------------------
200
+ # Page Advertisment
201
+ #
202
+ - lane:
203
+ enabled: false
204
+ region: body-main
205
+ id: google_ad_content_home
206
+ type: sync
207
+ base: _includes/themes/j1
208
+ path: modules/ads
209
+ file: google_ad_content_home.html
210
+
211
+ # ----------------------------------------------------------------------------
212
+ # INTRO panel
213
+ #
214
+ - lane:
215
+ enabled: true
216
+ id: home_intro_panel
217
+ region: body-main
218
+ type: async
219
+ properties: g-2 elevated-z2
220
+
221
+ # ----------------------------------------------------------------------------
222
+ # PARALLAX banner
223
+ #
224
+ - lane:
225
+ enabled: true
226
+ id: home_parallax_banner
227
+ region: body-main
228
+ type: async
229
+ properties: elevated-z0
230
+
231
+ # ----------------------------------------------------------------------------
232
+ # IMAGE banner
233
+ #
234
+ - lane:
235
+ enabled: false
236
+ id: home_image_banner
237
+ region: body-main
238
+ type: async
239
+ properties: mb-3
240
+
241
+ # ----------------------------------------------------------------------------
242
+ # NEWS panel
243
+ #
244
+ - lane:
245
+ enabled: true
246
+ id: home_news_panel
247
+ region: body-main
248
+ type: async
249
+ properties: g-2 elevated-z2
250
+
251
+ # ----------------------------------------------------------------------------
252
+ # FAB
253
+ #
254
+ - lane:
255
+ enabled: true
256
+ id: fab-container
257
+ region: body-main
258
+ type: async
259
+ properties: elevated-z0
260
+
261
+ # ------------------------------------------------------------------------------
262
+ # END config
@@ -129,7 +129,7 @@ lanes:
129
129
  # Top Advertisment
130
130
  #
131
131
  - lane:
132
- enabled: false
132
+ enabled: true
133
133
  region: body-header
134
134
  id: google_ad_top_home
135
135
  type: sync
@@ -123,13 +123,13 @@ lanes:
123
123
  # ----------------------------------------------------------------------------
124
124
  # Ad Block
125
125
  #
126
- - lane:
127
- enabled: false
128
- region: body-header
129
- type: sync
130
- base: _includes/themes/j1
131
- path: blocks/ads
132
- file: ad.html
126
+ # - lane:
127
+ # enabled: false
128
+ # region: body-header
129
+ # type: sync
130
+ # base: _includes/themes/j1
131
+ # path: blocks/ads
132
+ # file: ad.html
133
133
 
134
134
  # ----------------------------------------------------------------------------
135
135
  # PAGE CONTENT (region body-main)
@@ -170,17 +170,6 @@ lanes:
170
170
  path: layouts
171
171
  file: content_generator_page.html
172
172
 
173
- # ----------------------------------------------------------------------------
174
- # COMMENT connector (e.g. for DISQUS as part of the CONTENT section)
175
- #
176
- - lane:
177
- enabled: true
178
- region: body-main
179
- type: sync
180
- base: _includes/themes/j1
181
- path: modules/connectors
182
- file: comments
183
-
184
173
  # ----------------------------------------------------------------------------
185
174
  # FAM
186
175
  #
@@ -160,17 +160,6 @@ lanes:
160
160
  path: layouts
161
161
  file: content_generator_post.html
162
162
 
163
- # ----------------------------------------------------------------------------
164
- # COMMENT connector
165
- #
166
- - lane:
167
- enabled: true
168
- region: body-main
169
- type: sync
170
- base: _includes/themes/j1
171
- path: modules/connectors
172
- file: comments
173
-
174
163
  # ----------------------------------------------------------------------------
175
164
  # FAM
176
165
  #
@@ -16,9 +16,10 @@
16
16
  # ------------------------------------------------------------------------------
17
17
 
18
18
  # ------------------------------------------------------------------------------
19
- # About this configuration (used for J1 CC only)
19
+ # Description (used for J1 CC only)
20
20
  #
21
- about_config:
21
+ description:
22
+
22
23
  title: Advertising
23
24
  scope: User settings
24
25
  location: _data/modules/advertising.yml
@@ -31,14 +32,6 @@ settings:
31
32
  # ----------------------------------------------------------------------------
32
33
  # Settings
33
34
  #
34
- # enabled
35
- # --------------------------------------------------------------------------
36
- # Enables or disables the Ad services. If disabled, no ads services are
37
- # enabled and no unit container get initialized on any page.
38
- #
39
- # values: [true|false]
40
- # default: false
41
- #
42
35
  # provider
43
36
  # --------------------------------------------------------------------------
44
37
  # Currently, only Google adsense (google) is available as an provider
@@ -49,8 +42,6 @@ settings:
49
42
  #
50
43
  # ----------------------------------------------------------------------------
51
44
  #
52
- enabled: false
53
-
54
45
  google:
55
46
 
56
47
  # --------------------------------------------------------------------------
@@ -94,12 +85,11 @@ settings:
94
85
  #
95
86
  # --------------------------------------------------------------------------
96
87
  #
97
- publisherID: ca-pub-xxxx..xxx
88
+ publisherID: '<your-publisher-id>'
98
89
  autoHideOnUnfilled: false
99
90
  addBorderOnUnfilled: true
100
91
  checkTrackingProtection: true
101
92
  showErrorPageOnBlocked: true
102
- addBorderOnUnfilled: true
103
93
 
104
94
  ads:
105
95