j1-template 2022.0.12 → 2022.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/assets/themes/j1/adapter/js/advertising.js +65 -44
  3. data/assets/themes/j1/adapter/js/algolia.js +9 -9
  4. data/assets/themes/j1/adapter/js/analytics.js +46 -24
  5. data/assets/themes/j1/adapter/js/asciidoctor.js +9 -9
  6. data/assets/themes/j1/adapter/js/attic.js +9 -1
  7. data/assets/themes/j1/adapter/js/bmd.js +9 -10
  8. data/assets/themes/j1/adapter/js/carousel.js +9 -9
  9. data/assets/themes/j1/adapter/js/clipboard.js +9 -9
  10. data/assets/themes/j1/adapter/js/comments.js +31 -10
  11. data/assets/themes/j1/adapter/js/cookieConsent.js +73 -80
  12. data/assets/themes/j1/adapter/js/fab.js +10 -10
  13. data/assets/themes/j1/adapter/js/framer.js +59 -58
  14. data/assets/themes/j1/adapter/js/j1.js +166 -103
  15. data/assets/themes/j1/adapter/js/justifiedGallery.js +11 -10
  16. data/assets/themes/j1/adapter/js/justifiedGalleryCustomizer.js +9 -9
  17. data/assets/themes/j1/adapter/js/lightbox.js +11 -4
  18. data/assets/themes/j1/adapter/js/logger.js +10 -3
  19. data/assets/themes/j1/adapter/js/mmenu.js +9 -9
  20. data/assets/themes/j1/adapter/js/navigator.js +9 -9
  21. data/assets/themes/j1/adapter/js/quicksearch.js +9 -9
  22. data/assets/themes/j1/adapter/js/rouge.js +9 -9
  23. data/assets/themes/j1/adapter/js/rtable.js +9 -9
  24. data/assets/themes/j1/adapter/js/rtextResizer.js +9 -9
  25. data/assets/themes/j1/adapter/js/scroller.js +12 -7
  26. data/assets/themes/j1/adapter/js/themer.js +11 -2
  27. data/assets/themes/j1/adapter/js/toccer.js +9 -9
  28. data/assets/themes/j1/adapter/js/translator.js +13 -16
  29. data/assets/themes/j1/core/css/vendor.css +6 -1
  30. data/assets/themes/j1/core/css/vendor.min.css +1 -1
  31. data/assets/themes/j1/core/js/template.js +4 -3
  32. data/assets/themes/j1/core/js/template.min.js +1 -1
  33. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  34. data/assets/themes/j1/modules/advertising/js/google/adInitializer.js +14 -4
  35. data/exe/j1 +31 -11
  36. data/lib/j1/commands/generate.rb +37 -36
  37. data/lib/j1/commands/help.rb +35 -0
  38. data/lib/j1/commands/patch.rb +81 -0
  39. data/lib/j1/commands/reset.rb +36 -0
  40. data/lib/j1/commands/setup.rb +126 -0
  41. data/lib/j1/commands/site.rb +27 -0
  42. data/lib/j1/external.rb +1 -1
  43. data/lib/j1/utils/exec_until_trap.rb +28 -0
  44. data/lib/j1/utils.rb +31 -0
  45. data/lib/j1/version.rb +1 -1
  46. data/lib/starter_web/Gemfile +1 -1
  47. data/lib/starter_web/_config.yml +1 -1
  48. data/lib/starter_web/_data/layouts/home.ads.yml +262 -0
  49. data/lib/starter_web/_data/layouts/home.no-ads.yml +262 -0
  50. data/lib/starter_web/_data/layouts/home.yml +1 -1
  51. data/lib/starter_web/_data/modules/advertising.yml +1 -12
  52. data/lib/starter_web/_data/modules/analytics.yml +1 -1
  53. data/lib/starter_web/_data/modules/cookies.yml +5 -2
  54. data/lib/starter_web/_data/modules/defaults/advertising.yml +7 -8
  55. data/lib/starter_web/_data/modules/defaults/comments.yml +4 -4
  56. data/lib/starter_web/_data/modules/defaults/cookies.yml +106 -36
  57. data/lib/starter_web/_data/modules/defaults/themer.yml +3 -2
  58. data/lib/starter_web/_data/modules/themer.yml +2 -1
  59. data/lib/starter_web/_includes/attributes.asciidoc +1 -1
  60. data/lib/starter_web/_plugins/lunr_index.rb +1 -1
  61. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +1 -1
  62. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +1 -1
  63. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.ads.asciidoc +1 -1
  64. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.comments.asciidoc +1 -1
  65. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-site-generators.adoc +1 -1
  66. data/lib/starter_web/collections/posts/public/featured/_posts/2021-03-03-about-j1.adoc +1 -1
  67. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-01-post-wiki-series.adoc +1 -1
  68. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-02-post-wiki-series.adoc +1 -1
  69. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-03-post-wiki-series.adoc +1 -1
  70. data/lib/starter_web/index.html +0 -3
  71. data/lib/starter_web/package.json +5 -1
  72. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/000_intro.adoc +1 -1
  73. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/100_converter.adoc +1 -1
  74. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/200_themes.adoc +1 -1
  75. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/documentation.adoc +1 -4
  76. data/lib/starter_web/pages/public/asciidoc_skeletons/multi-document/multi.adoc +1 -4
  77. data/lib/starter_web/pages/public/asciidoc_skeletons/simple-document/simple.adoc +1 -4
  78. data/lib/starter_web/pages/public/learn/roundtrip/400_asciidoc_extensions.adoc +7 -7
  79. data/lib/starter_web/pages/public/manuals/dropdown-help.adoc +23 -2
  80. data/lib/starter_web/pages/public/previewer/preview_bootstrap_theme.adoc +100 -166
  81. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  82. data/lib/starter_web/utilsrv/package.json +1 -1
  83. metadata +11 -3
@@ -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
@@ -32,14 +32,6 @@ settings:
32
32
  # ----------------------------------------------------------------------------
33
33
  # Settings
34
34
  #
35
- # enabled
36
- # --------------------------------------------------------------------------
37
- # Enables or disables the Ad services. If disabled, no ads services are
38
- # enabled and no unit container get initialized on any page.
39
- #
40
- # values: [true|false]
41
- # default: false
42
- #
43
35
  # provider
44
36
  # --------------------------------------------------------------------------
45
37
  # Currently, only Google adsense (google) is available as an provider
@@ -50,8 +42,6 @@ settings:
50
42
  #
51
43
  # ----------------------------------------------------------------------------
52
44
  #
53
- enabled: false
54
-
55
45
  google:
56
46
 
57
47
  # --------------------------------------------------------------------------
@@ -95,12 +85,11 @@ settings:
95
85
  #
96
86
  # --------------------------------------------------------------------------
97
87
  #
98
- publisherID: ca-pub-xxxx..xxx
88
+ publisherID: '<your-publisher-id>'
99
89
  autoHideOnUnfilled: false
100
90
  addBorderOnUnfilled: true
101
91
  checkTrackingProtection: true
102
92
  showErrorPageOnBlocked: true
103
- addBorderOnUnfilled: true
104
93
 
105
94
  ads:
106
95
 
@@ -46,7 +46,7 @@ settings:
46
46
  #
47
47
  # ----------------------------------------------------------------------------
48
48
  #
49
- enabled: false
49
+ enabled: true
50
50
 
51
51
  provider: google
52
52
  google:
@@ -26,7 +26,10 @@ description:
26
26
  settings:
27
27
  enabled: true
28
28
 
29
- check_cookies: false
30
-
29
+ # ----------------------------------------------------------------------------
30
+ # Switches
31
+ # ----------------------------------------------------------------------------
32
+ checkCookies: true
33
+
31
34
  # ------------------------------------------------------------------------------
32
35
  # END config
@@ -34,11 +34,12 @@ defaults:
34
34
  #
35
35
  # enabled
36
36
  # --------------------------------------------------------------------------
37
- # Enables or disables the Ad services. If disabled, no ads services are
38
- # enabled and no unit container get initialized on any page.
37
+ # Enables or disables the Ad services. If disabled, ad services is NOT
38
+ # initialized and no unit container get initialized on any page even the
39
+ # module is loaded.
39
40
  #
40
41
  # values: [true|false]
41
- # default: false
42
+ # default: true
42
43
  #
43
44
  # provider
44
45
  # --------------------------------------------------------------------------
@@ -50,13 +51,12 @@ defaults:
50
51
  #
51
52
  # ----------------------------------------------------------------------------
52
53
  #
53
- enabled: false
54
-
54
+ enabled: true
55
55
  provider: google
56
- google:
57
56
 
57
+ google:
58
58
  # --------------------------------------------------------------------------
59
- # Provider settings
59
+ # Provider settings (Google)
60
60
  #
61
61
  # publisherID
62
62
  # ------------------------------------------------------------------------
@@ -100,7 +100,6 @@ defaults:
100
100
  addBorderOnUnfilled: true
101
101
  checkTrackingProtection: false
102
102
  showErrorPageOnBlocked: false
103
- addBorderOnUnfilled: true
104
103
 
105
104
  # ------------------------------------------------------------------------------
106
105
  # END config
@@ -90,22 +90,22 @@ defaults:
90
90
  # Provider settings
91
91
  # ----------------------------------------------------------------------------
92
92
  hyvor:
93
- site_id: 'hyvor-site-id'
93
+ site_id: '<your-hyvor-site-id>'
94
94
 
95
95
  disqus:
96
96
  site_id: '<your-site-short-name>'
97
97
 
98
98
  # currently NOT supported
99
99
  commento:
100
- site_id: '<commento-site-id>'
100
+ site_id: '<your-commento-site-id>'
101
101
 
102
102
  # currently NOT supported
103
103
  just-comments:
104
- site_id: '<just-comments-site-id>'
104
+ site_id: '<your-just-comments-site-id>'
105
105
 
106
106
  # currently NOT supported
107
107
  facebook:
108
- appid: '<facebook-app-id>'
108
+ site_id: '<your-facebook-app-id>'
109
109
  num_posts: 5
110
110
  width: 580
111
111
  colorscheme: light