appscms-tools-theme 3.7.7 → 3.7.8

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/appscms/head/head.html +432 -591
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 554818da7344481520f28c8887c21cc33de35757737dcb5a8a52bbe2aa6f1ea6
4
- data.tar.gz: 25ab5e29fda9888e341fe814a0e344a4fe7074345d34ffe311117ad3bb2ecf69
3
+ metadata.gz: afdc45cbc6b419f686f1fb14faf611cc4b5109f07a56555562dce3691056fee6
4
+ data.tar.gz: b295a721273b2be8d2d4318daee4195089a5fb2be6ae081d74a8bfc7cd979963
5
5
  SHA512:
6
- metadata.gz: 612e4656757185c4b0587188792d108aad38c9ef1bea183f65deb1424d48944cbb0a235a3cd2e2b614e8aa27fb5c5a17f513dfb257a3c16d1cdeef3b5c175ea4
7
- data.tar.gz: cf5be8b334785ebba5d4474a8283f9b9e25aa4559e2110f2ab9176087c2c43a4008aa37d3217b64f69bbd6eb478ee596a8c6a2496159b598d8a7b0bda131bf1a
6
+ metadata.gz: 054e995f13c602ab3de6a543c80f2260bf2fdd81c9cd55e60545912cccfbc5cced56f95bd6d96108ae9db2f552c97f9e39f87d6cd15707795e3160c14cdb4439
7
+ data.tar.gz: c438ddf622636bcec96bf390ffd02e58a895ede97f4d8a4c25f72758bd8dc4d67a499aca2a77dff3baf4510ac3fd2be551fb3a647b1f537abb944bc5b8c2a9a5
@@ -1,281 +1,118 @@
1
1
  <head>
2
- {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign
3
- dataArr = site.data.[page.folderName][lang][file] %} {% assign dataToShow =
4
- dataArr %} {% assign title = dataToShow.TITLE | replace: "$variable",
5
- page.value | default: page.title | default: site.title %} {% assign
6
- description = dataToShow.META | replace: "$variable", page.value | default:
7
- page.description | default: site.description %} {% assign keywords =
8
- dataToShow.keywords %} {% assign favicon = site.favicon %} {%- assign title =
9
- title | split: ' ' -%} {%- assign newtitle = '' %} {% for operation in title
10
- %} {%- if forloop.first -%} {% assign word = operation | capitalize %} {%
11
- assign newtitle = newtitle | append: word %} {% assign newtitle = newtitle |
12
- append: " " %} {%- else -%} {% assign word = operation %} {%- if forloop.last
13
- -%} {% assign newtitle = newtitle | append: word %} {%- else -%} {% assign
14
- newtitle = newtitle | append: word %} {% assign newtitle = newtitle | append :
15
- " " %} {%- endif -%} {%- endif -%} {% endfor %} {%- assign description =
16
- description | split: ' ' -%} {% assign pagedescription = '' %} {% for
17
- operation in description %} {%- if forloop.first -%} {% assign word =
18
- operation | capitalize %} {% assign pagedescription = pagedescription | append
19
- : word %} {% assign pagedescription = pagedescription | append: " " %} {%-
20
- else -%} {% assign word = operation %} {%- if forloop.last -%} {% assign
21
- pagedescription = pagedescription | append: word %} {%- else -%} {% assign
22
- pagedescription = pagedescription | append: word %} {% assign pagedescription
23
- = pagedescription | append: " " %} {%- endif -%} {%- endif -%} {% endfor %}
24
- {%- assign title = newtitle -%} {%- assign description = pagedescription -%}
25
- <meta charset="utf-8" />
26
- <link rel="shortcut icon" href="{{favicon}}" />
27
- <meta name="viewport" content="width=device-width" />
28
-
29
- {%- if page.layout == "aboutUs" -%}
30
-
31
- <title>{{ site.name }} - About us | {{ title }}</title>
32
- {% elsif page.layout == "termAndCondition" %}
33
- <title>{{ site.name }} - Terms and conditions | {{ title }}</title>
34
- {% elsif page.layout == "disclaimer" %}
35
- <title>{{ site.name }} - Disclaimer | {{ title }}</title>
36
- {% elsif page.layout == "privacyPolicy" %}
37
- <title>{{ site.name }} - Privacy policy | {{ title }}</title>
38
- {% elsif page.layout == "contactUs" %}
39
- <title>{{ site.name }} - Contact | {{ title }}</title>
40
- {% elsif page.layout == "help" %}
41
- <title>{{ site.name }} - Help | {{ title }}</title>
42
- {%- else -%}
43
-
44
- <title>{{ newtitle }}</title>
45
-
46
- {%- endif -%} {%- if dataToShow.keywords -%}
47
-
48
- <meta name="keywords" content="{{keywords}}" />
49
-
50
- {%- endif -%} {%- if page.layout == "aboutUs" -%}
51
-
52
- <meta
53
- name="description"
54
- content="{{site.name}} - About us | {{description}}"
55
- />
56
- {% elsif page.layout == "termAndCondition" %}
57
- <meta
58
- name="description"
59
- content="{{site.name}} - Terms and conditions | {{description}}"
60
- />
61
- {% elsif page.layout == "disclaimer" %}
62
- <meta
63
- name="description"
64
- content="{{site.name}} - Disclaimer | {{description}}"
65
- />
66
- {% elsif page.layout == "privacyPolicy" %}
67
- <meta
68
- name="description"
69
- content="{{site.name}} - Privacy policy | {{description}}"
70
- />
71
- {% elsif page.layout == "contactUs" %}
72
- <meta
73
- name="description"
74
- content="{{site.name}} - Contact | {{description}}"
75
- />
76
- {%- else -%}
77
- <meta name="description" content="{{description}}" />
78
-
79
- {%- endif -%}
80
-
81
- <link rel="canonical" href="{{site.url | append: page.url}}" />
82
-
83
- {%- if site.versioning -%}
84
-
85
- <link
86
- rel="stylesheet"
87
- href="{{ site.baseurl }}/{% ministamp assets/css/bootstrap.min.css assets/css/bootstrap.min.css %}"
88
- {%-
89
- if
90
- site.crossorigin
91
- -%}
92
- {{
93
- }}
94
- crossorigin="anonymous"
95
- {%-
96
- endif
97
- -%}
98
- />
99
-
100
- {%- if dataToShow.css -%}
101
-
102
- <link
103
- rel="stylesheet"
104
- href="{{dataToShow.css}}"
105
- {%-
106
- if
107
- site.crossorigin
108
- -%}
109
- {{
110
- }}
111
- crossorigin="anonymous"
112
- {%-
113
- endif
114
- -%}
115
- />
116
- {%- else -%}
117
- <!-- <link
118
- rel="stylesheet"
119
- href="{{ site.baseurl }}/{% ministamp assets/css/tools.css assets/css/tools.css %}"
120
- {%-
121
- if
122
- site.crossorigin
123
- -%}
124
- {{
125
- }}
126
- crossorigin="anonymous"
127
- {%-
128
- endif
129
- -%}
130
- /> -->
131
-
132
- {%- endif -%} {%- if site.monumetricId -%}
133
-
134
- <link
135
- rel="stylesheet"
136
- href="{{ site.baseurl }}/{% ministamp assets/css/responsive.css assets/css/responsive.css %}"
137
- {%-
138
- if
139
- site.crossorigin
140
- -%}
141
- {{
142
- }}
143
- crossorigin="anonymous"
144
- {%-
145
- endif
146
- -%}
147
- />
148
-
149
- {%- endif -%} {%- if page.layout == "calculator" -%}
150
-
151
- <link
152
- rel="stylesheet"
153
- href="{{ site.baseurl }}/{% ministamp assets/css/calculators.css assets/css/calculators.css %}"
154
- {%-
155
- if
156
- site.crossorigin
157
- -%}
158
- {{
159
- }}
160
- crossorigin="anonymous"
161
- {%-
162
- endif
163
- -%}
164
- />
165
-
166
- {%- endif -%} {%- if page.layout == "home-1" -%}
167
-
168
- <link
169
- rel="stylesheet"
170
- href="{{ site.baseurl }}/{% ministamp assets/css/home-1.css assets/css/home-1.css %}"
171
- {%-
172
- if
173
- site.crossorigin
174
- -%}
175
- {{
176
- }}
177
- crossorigin="anonymous"
178
- {%-
179
- endif
180
- -%}
181
- />
182
-
183
- {%- endif -%} {%- if page.layout == "appscms-home" -%}
184
- <link rel="stylesheet" href="/assets/css/appscms-theme.css" />
185
- <link rel="stylesheet" href="/assets/css/appscms-home.css" />
186
- {%- endif -%}
187
- {%- if page.layout == "appscms-feature" -%}
188
- <link rel="stylesheet" href="/assets/css/appscms-theme.css" />
189
- <link rel="stylesheet" href="/assets/css/appscms-feature.css" />
190
- {%- endif -%}
191
-
192
- {%- if page.layout == "feature-1" or page.newBox or page.layout
193
- == "feature-download" -%}
194
-
195
- <link
196
- rel="stylesheet"
197
- href="{{ site.baseurl }}/{% ministamp assets/css/feature-1.css assets/css/feature-1.css %}"
198
- {%-
199
- if
200
- site.crossorigin
201
- -%}
202
- {{
203
- }}
204
- crossorigin="anonymous"
205
- {%-
206
- endif
207
- -%}
208
- />
209
-
210
- {%- endif -%} {%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
211
-
212
- <link
213
- rel="stylesheet"
214
- href="{{ site.baseurl }}/{% ministamp assets/css/common.css assets/css/common.css %}"
215
- {%-
216
- if
217
- site.crossorigin
218
- -%}
219
- {{
220
- }}
221
- crossorigin="anonymous"
222
- {%-
223
- endif
224
- -%}
225
- />
226
-
227
- {%- endif -%} {%- if page.layout == 'imagekit' -%}
228
-
229
- <link
230
- rel="stylesheet"
231
- href="{{ site.baseurl }}/{% ministamp assets/css/imagekit.css assets/css/imagekit.css %}"
232
- {%-
233
- if
234
- site.crossorigin
235
- -%}
236
- {{
237
- }}
238
- crossorigin="anonymous"
239
- {%-
240
- endif
241
- -%}
242
- />
243
-
244
- {%- endif -%} {%- else -%}
245
-
246
- <link
247
- rel="stylesheet"
248
- href="/assets/css/bootstrap.min.css"
249
- {%-
250
- if
251
- site.crossorigin
252
- -%}
253
- {{
254
- }}
255
- crossorigin="anonymous"
256
- {%-
257
- endif
258
- -%}
259
- />
260
-
261
- {%- if dataToShow.css -%}
262
-
263
- <link
264
- rel="stylesheet"
265
- href="{{dataToShow.css}}"
266
- {%-
267
- if
268
- site.crossorigin
269
- -%}
270
- {{
271
- }}
272
- crossorigin="anonymous"
273
- {%-
274
- endif
275
- -%}
276
- />
277
- {%- else -%}
278
- <!-- <link
2
+ {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign
3
+ dataArr = site.data.[page.folderName][lang][file] %} {% assign dataToShow =
4
+ dataArr %} {% assign title = dataToShow.TITLE | replace: "$variable",
5
+ page.value | default: page.title | default: site.title %} {% assign
6
+ description = dataToShow.META | replace: "$variable", page.value | default:
7
+ page.description | default: site.description %} {% assign keywords =
8
+ dataToShow.keywords %} {% assign favicon = site.favicon %} {%- assign title =
9
+ title | split: ' ' -%} {%- assign newtitle = '' %} {% for operation in title
10
+ %} {%- if forloop.first -%} {% assign word = operation | capitalize %} {%
11
+ assign newtitle = newtitle | append: word %} {% assign newtitle = newtitle |
12
+ append: " " %} {%- else -%} {% assign word = operation %} {%- if forloop.last
13
+ -%} {% assign newtitle = newtitle | append: word %} {%- else -%} {% assign
14
+ newtitle = newtitle | append: word %} {% assign newtitle = newtitle | append :
15
+ " " %} {%- endif -%} {%- endif -%} {% endfor %} {%- assign description =
16
+ description | split: ' ' -%} {% assign pagedescription = '' %} {% for
17
+ operation in description %} {%- if forloop.first -%} {% assign word =
18
+ operation | capitalize %} {% assign pagedescription = pagedescription | append
19
+ : word %} {% assign pagedescription = pagedescription | append: " " %} {%-
20
+ else -%} {% assign word = operation %} {%- if forloop.last -%} {% assign
21
+ pagedescription = pagedescription | append: word %} {%- else -%} {% assign
22
+ pagedescription = pagedescription | append: word %} {% assign pagedescription
23
+ = pagedescription | append: " " %} {%- endif -%} {%- endif -%} {% endfor %}
24
+ {%- assign title = newtitle -%} {%- assign description = pagedescription -%}
25
+ <meta charset="utf-8" />
26
+ <link rel="shortcut icon" href="{{favicon}}" />
27
+ <meta name="viewport" content="width=device-width" />
28
+
29
+ {%- if page.layout == "aboutUs" -%}
30
+
31
+ <title>{{ site.name }} - About us | {{ title }}</title>
32
+ {% elsif page.layout == "termAndCondition" %}
33
+ <title>{{ site.name }} - Terms and conditions | {{ title }}</title>
34
+ {% elsif page.layout == "disclaimer" %}
35
+ <title>{{ site.name }} - Disclaimer | {{ title }}</title>
36
+ {% elsif page.layout == "privacyPolicy" %}
37
+ <title>{{ site.name }} - Privacy policy | {{ title }}</title>
38
+ {% elsif page.layout == "contactUs" %}
39
+ <title>{{ site.name }} - Contact | {{ title }}</title>
40
+ {% elsif page.layout == "help" %}
41
+ <title>{{ site.name }} - Help | {{ title }}</title>
42
+ {%- else -%}
43
+
44
+ <title>{{ newtitle }}</title>
45
+
46
+ {%- endif -%} {%- if dataToShow.keywords -%}
47
+
48
+ <meta name="keywords" content="{{keywords}}" />
49
+
50
+ {%- endif -%} {%- if page.layout == "aboutUs" -%}
51
+
52
+ <meta
53
+ name="description"
54
+ content="{{site.name}} - About us | {{description}}"
55
+ />
56
+ {% elsif page.layout == "termAndCondition" %}
57
+ <meta
58
+ name="description"
59
+ content="{{site.name}} - Terms and conditions | {{description}}"
60
+ />
61
+ {% elsif page.layout == "disclaimer" %}
62
+ <meta
63
+ name="description"
64
+ content="{{site.name}} - Disclaimer | {{description}}"
65
+ />
66
+ {% elsif page.layout == "privacyPolicy" %}
67
+ <meta
68
+ name="description"
69
+ content="{{site.name}} - Privacy policy | {{description}}"
70
+ />
71
+ {% elsif page.layout == "contactUs" %}
72
+ <meta
73
+ name="description"
74
+ content="{{site.name}} - Contact | {{description}}"
75
+ />
76
+ {%- else -%}
77
+ <meta name="description" content="{{description}}" />
78
+
79
+ {%- endif -%}
80
+
81
+ <link rel="canonical" href="{{site.url | append: page.url}}" />
82
+
83
+ <link
84
+ rel="stylesheet"
85
+ href="/assets/css/bootstrap.min.css"
86
+ {%-
87
+ if
88
+ site.crossorigin
89
+ -%}
90
+ {{
91
+ }}
92
+ crossorigin="anonymous"
93
+ {%-
94
+ endif
95
+ -%}
96
+ />
97
+
98
+ {%- if dataToShow.css -%}
99
+
100
+ <link
101
+ rel="stylesheet"
102
+ href="{{dataToShow.css}}"
103
+ {%-
104
+ if
105
+ site.crossorigin
106
+ -%}
107
+ {{
108
+ }}
109
+ crossorigin="anonymous"
110
+ {%-
111
+ endif
112
+ -%}
113
+ />
114
+ {%- else -%}
115
+ <!-- <link
279
116
  rel="stylesheet"
280
117
  href="/assets/css/tools.css"
281
118
  {%-
@@ -289,323 +126,327 @@
289
126
  endif
290
127
  -%}
291
128
  /> -->
292
-
293
- {%- endif -%} {%- if site.monumetricId -%}
294
-
295
- <link
296
- rel="stylesheet"
297
- href="/assets/css/responsive.css"
298
- {%-
299
- if
300
- site.crossorigin
301
- -%}
302
- {{
303
- }}
304
- crossorigin="anonymous"
305
- {%-
306
- endif
307
- -%}
308
- />
309
-
310
- {%- endif -%} {%- if page.layout == "calculator" -%}
311
-
312
- <link
313
- rel="stylesheet"
314
- href="/assets/css/calculators.css"
315
- {%-
316
- if
317
- site.crossorigin
318
- -%}
319
- {{
320
- }}
321
- crossorigin="anonymous"
322
- {%-
323
- endif
324
- -%}
325
- />
326
-
327
- {%- endif -%} {%- if page.layout == "home-1" -%}
328
-
329
- <link
330
- rel="stylesheet"
331
- href="/assets/css/home-1.css"
332
- {%-
333
- if
334
- site.crossorigin
335
- -%}
336
- {{
337
- }}
338
- crossorigin="anonymous"
339
- {%-
340
- endif
341
- -%}
342
- />
343
-
344
- {%- endif -%} {%- if page.layout == "feature-1" or page.newBox or page.layout
345
- == "feature-download" -%}
346
-
347
- <link
348
- rel="stylesheet"
349
- href="/assets/css/feature-1.css"
350
- {%-
351
- if
352
- site.crossorigin
353
- -%}
354
- {{
355
- }}
356
- crossorigin="anonymous"
357
- {%-
358
- endif
359
- -%}
360
- />
361
-
362
- {%- endif -%} {%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
363
-
364
- <link
365
- rel="stylesheet"
366
- href="/assets/css/common.css"
367
- {%-
368
- if
369
- site.crossorigin
370
- -%}
371
- {{
372
- }}
373
- crossorigin="anonymous"
374
- {%-
375
- endif
376
- -%}
377
- />
378
-
379
- {%- endif -%} {%- if page.layout == 'imagekit' -%}
380
-
381
- <link
382
- rel="stylesheet"
383
- href="/assets/css/imagekit.css"
384
- {%-
385
- if
386
- site.crossorigin
387
- -%}
388
- {{
389
- }}
390
- crossorigin="anonymous"
391
- {%-
392
- endif
393
- -%}
394
- />
395
-
396
- {%- endif -%} {%- endif -%}
397
-
398
- <meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
399
- <meta property="og:title" content="{{title}}" />
400
- <meta property="og:description" content="{{description}}" />
401
- <meta property="og:type" content="website" />
402
- <meta
403
- data-rh="true"
404
- property="og:url"
405
- content="{{site.url | append: page.url}}"
406
- />
407
- <meta data-rh="true" property="og:site_name" content="{{site.name}}" />
408
- <meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
409
- <meta
410
- data-rh="true"
411
- property="twitter:url"
412
- content="{{site.url | append: page.url}}"
413
- />
414
- <meta data-rh="true" name="twitter:title" content="{{title}}" />
415
- <meta data-rh="true" name="twitter:description" content="{{description}}" />
416
- <meta
417
- data-rh="true"
418
- name="twitter:image:src"
419
- content="{{site.url}}{{favicon}}"
420
- />
421
- {% include adsense/adsense.html %} {%- if page.noindex -%}
422
- <meta name="robots" content="noindex" />
423
-
424
- {%- endif -%} {%- if site.pwa -%}
425
-
426
- <link rel="manifest" href="/assets/js/manifest.json" />
427
-
428
- {%- endif -%} {%- if site.internationalization -%} {%- include
429
- alternates/alternates.html -%} {%- endif -%} {% include cssfile/links.html %}
430
-
431
- <script type="application/ld+json">
432
- {
433
- "@context": "http://schema.org",
434
- "@type": "Organization",
435
- "url": "{{ site.siteurl }}",
436
- "logo": "{{ site.siteurl }}{{ site.logo }}"
437
- }
438
- </script>
439
- <script type="application/ld+json">
440
- {
441
- "@context": "http://schema.org",
442
- "@type": "WebSite",
443
- "name": "{{ site.name }}",
444
- "alternateName": "{{ site.alternateName }}",
445
- "url": "{{ site.siteurl }}"
446
- }
447
- </script>
448
-
449
- {%- if dataToShow.HOW_TO_CONTENT -%} {%- if dataToShow.HOW_TO_CONTENT.heading
450
- != '' -%} {%- assign HOW_TO_CONTENT = dataToShow.HOW_TO_CONTENT -%}
451
-
452
- <script type="application/ld+json">
453
- {
129
+
130
+ {%- endif -%} {%- if site.monumetricId -%}
131
+
132
+ <link
133
+ rel="stylesheet"
134
+ href="/assets/css/responsive.css"
135
+ {%-
136
+ if
137
+ site.crossorigin
138
+ -%}
139
+ {{
140
+ }}
141
+ crossorigin="anonymous"
142
+ {%-
143
+ endif
144
+ -%}
145
+ />
146
+
147
+ {%- endif -%} {%- if page.layout == "calculator" -%}
148
+
149
+ <link
150
+ rel="stylesheet"
151
+ href="/assets/css/calculators.css"
152
+ {%-
153
+ if
154
+ site.crossorigin
155
+ -%}
156
+ {{
157
+ }}
158
+ crossorigin="anonymous"
159
+ {%-
160
+ endif
161
+ -%}
162
+ />
163
+
164
+ {%- endif -%} {%- if page.layout == "home-1" -%}
165
+
166
+ <link
167
+ rel="stylesheet"
168
+ href="/assets/css/home-1.css"
169
+ {%-
170
+ if
171
+ site.crossorigin
172
+ -%}
173
+ {{
174
+ }}
175
+ crossorigin="anonymous"
176
+ {%-
177
+ endif
178
+ -%}
179
+ />
180
+
181
+ {%- endif -%} {%- if page.layout == "feature-1" or page.newBox or page.layout
182
+ == "feature-download" -%}
183
+
184
+ <link
185
+ rel="stylesheet"
186
+ href="/assets/css/feature-1.css"
187
+ {%-
188
+ if
189
+ site.crossorigin
190
+ -%}
191
+ {{
192
+ }}
193
+ crossorigin="anonymous"
194
+ {%-
195
+ endif
196
+ -%}
197
+ />
198
+
199
+ {%- endif -%} {%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
200
+
201
+ <link
202
+ rel="stylesheet"
203
+ href="/assets/css/common.css"
204
+ {%-
205
+ if
206
+ site.crossorigin
207
+ -%}
208
+ {{
209
+ }}
210
+ crossorigin="anonymous"
211
+ {%-
212
+ endif
213
+ -%}
214
+ />
215
+
216
+ {%- endif -%} {%- if page.layout == "appscms-home" -%}
217
+ <link rel="stylesheet" href="/assets/css/appscms-theme.css" />
218
+ <link rel="stylesheet" href="/assets/css/appscms-home.css" />
219
+ {%- endif -%} {%- if page.layout == "appscms-feature" -%}
220
+ <link rel="stylesheet" href="/assets/css/appscms-theme.css" />
221
+ <link rel="stylesheet" href="/assets/css/appscms-feature.css" />
222
+ {%- endif -%} {%- if page.layout == 'imagekit' -%}
223
+
224
+ <link
225
+ rel="stylesheet"
226
+ href="/assets/css/imagekit.css"
227
+ {%-
228
+ if
229
+ site.crossorigin
230
+ -%}
231
+ {{
232
+ }}
233
+ crossorigin="anonymous"
234
+ {%-
235
+ endif
236
+ -%}
237
+ />
238
+
239
+ {%- endif -%}
240
+ <meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
241
+ <meta property="og:title" content="{{title}}" />
242
+ <meta property="og:description" content="{{description}}" />
243
+ <meta property="og:type" content="website" />
244
+ <meta
245
+ data-rh="true"
246
+ property="og:url"
247
+ content="{{site.url | append: page.url}}"
248
+ />
249
+ <meta data-rh="true" property="og:site_name" content="{{site.name}}" />
250
+ <meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
251
+ <meta
252
+ data-rh="true"
253
+ property="twitter:url"
254
+ content="{{site.url | append: page.url}}"
255
+ />
256
+ <meta data-rh="true" name="twitter:title" content="{{title}}" />
257
+ <meta data-rh="true" name="twitter:description" content="{{description}}" />
258
+ <meta
259
+ data-rh="true"
260
+ name="twitter:image:src"
261
+ content="{{site.url}}{{favicon}}"
262
+ />
263
+ {% include adsense/adsense.html %} {%- if page.noindex -%}
264
+ <meta name="robots" content="noindex" />
265
+
266
+ {%- endif -%} {%- if site.pwa -%}
267
+
268
+ <link rel="manifest" href="/assets/js/manifest.json" />
269
+
270
+ {%- endif -%} {%- if site.internationalization -%} {%- include
271
+ alternates/alternates.html -%} {%- endif -%} {% include cssfile/links.html %}
272
+
273
+ <script type="application/ld+json">
274
+ {
454
275
  "@context": "http://schema.org",
455
- "@type": "HowTo",
456
- "name": "{{ HOW_TO_CONTENT.heading }}",
457
- {% if HOW_TO_CONTENT.YoutubeVideoUrl %}
458
- "potentialAction": {
459
- "@type": "WatchAction",
460
- "target": {
461
- "@type": "EntryPoint",
462
- "urlTemplate": "{{ HOW_TO_CONTENT.YoutubeVideoUrl }}",
463
- "actionPlatform": [
464
- "http://schema.org/DesktopWebPlatform",
465
- "http://schema.org/AndroidPlatform",
466
- "http://schema.org/IOSPlatform"
467
- ]
468
- }
469
- },
470
- {% else %}
471
- "image": {
472
- "@type": "ImageObject",
473
- "url": "{{ HOW_TO_CONTENT.logoImageUrl }}"
474
- },
475
- {% endif %}
476
- "step": [
477
- {% for step in HOW_TO_CONTENT.steps %}
478
- {
479
- "@type": "HowToStep",
480
- "text": "{{ step }}"
481
- }{% unless forloop.last %},{% endunless %}
482
- {% endfor %}
483
- ]
484
- }
485
- </script>
486
-
487
- {%- endif -%} {%- endif -%} {%- if dataToShow.infographics -%} {%- assign
488
- infographics = dataToShow.infographics -%}
489
-
490
- <script type="application/ld+json">
491
- {
276
+ "@type": "Organization",
277
+ "url": "{{ site.siteurl }}",
278
+ "logo": "{{ site.siteurl }}{{ site.logo }}"
279
+ }
280
+ </script>
281
+ <script type="application/ld+json">
282
+ {
492
283
  "@context": "http://schema.org",
493
- "@type": "ItemList",
494
- "name": "Infographics",
495
- "itemListElement": [
496
- {% assign position = 1 %}
497
- {% for infographic in infographics %}
498
- {
499
- "@type": "ListItem",
500
- "position": {{ position }},
501
- "item": {
502
- "@type": "ImageObject",
503
- "name": "Infographic {{ position }}",
504
- "description": "{{ infographic.description }}",
505
- "contentUrl": "{{ infographic.image }}"
506
- }
507
- }{% unless forloop.last %},{% endunless %}
508
- {% assign position = position | plus: 1 %}
509
- {% endfor %}
510
- ]
511
- }
512
- </script>
513
-
514
- {%- endif -%} {%- if dataToShow.author -%} {%- include authors/authors.html
515
- -%} {%- assign featureAuthor = dataToShow.author | split: " " -%} {%- assign
516
- author = featureAuthor.first | downcase -%} {%- assign collection = [author]
517
- -%} {%- for item in collection -%} {%- if forloop.index==1 -%} {%- assign
518
- featureAuthorName = item -%} {%- endif -%} {%- if forloop.index==2 -%} {%-
519
- assign featureAuthorImage = item -%} {%- endif -%} {%- if forloop.index==3 -%}
520
- {%- assign featureAuthorBio = item -%} {%- endif -%} {%- if forloop.index==4
521
- -%} {%- assign featureAuthorTwitter = item -%} {%- endif -%} {%- endfor -%}
522
-
523
- <script type="application/ld+json">
284
+ "@type": "WebSite",
285
+ "name": "{{ site.name }}",
286
+ "alternateName": "{{ site.alternateName }}",
287
+ "url": "{{ site.siteurl }}"
288
+ }
289
+ </script>
290
+
291
+ {%- if dataToShow.HOW_TO_CONTENT -%} {%- if dataToShow.HOW_TO_CONTENT.heading
292
+ != '' -%} {%- assign HOW_TO_CONTENT = dataToShow.HOW_TO_CONTENT -%}
293
+
294
+ <script type="application/ld+json">
295
+ {
296
+ "@context": "http://schema.org",
297
+ "@type": "HowTo",
298
+ "name": "{{ HOW_TO_CONTENT.heading }}",
299
+ {% if HOW_TO_CONTENT.YoutubeVideoUrl %}
300
+ "potentialAction": {
301
+ "@type": "WatchAction",
302
+ "target": {
303
+ "@type": "EntryPoint",
304
+ "urlTemplate": "{{ HOW_TO_CONTENT.YoutubeVideoUrl }}",
305
+ "actionPlatform": [
306
+ "http://schema.org/DesktopWebPlatform",
307
+ "http://schema.org/AndroidPlatform",
308
+ "http://schema.org/IOSPlatform"
309
+ ]
310
+ }
311
+ },
312
+ {% else %}
313
+ "image": {
314
+ "@type": "ImageObject",
315
+ "url": "{{ HOW_TO_CONTENT.logoImageUrl }}"
316
+ },
317
+ {% endif %}
318
+ "step": [
319
+ {% for step in HOW_TO_CONTENT.steps %}
524
320
  {
525
- "@context": "https://schema.org/",
526
- "@type": "Person",
527
- "name": "{{ featureAuthorName }}",
528
- "url": "{{ site.siteurl }}/authors/{{ featureAuthorName | downcase | replace: ' ' , '-'' }}",
529
- "image": "{{ site.siteurl }}{{ featureAuthorImage }}",
530
- "sameAs": ["{{ featureAuthorNameTwitter }}"]
531
- }
532
- </script>
533
- {%- endif -%} {%- if dataToShow.contributors -%}
534
- <script type="application/ld+json">
321
+ "@type": "HowToStep",
322
+ "text": "{{ step }}"
323
+ }{% unless forloop.last %},{% endunless %}
324
+ {% endfor %}
325
+ ]
326
+ }
327
+ </script>
328
+
329
+ {%- endif -%} {%- endif -%} {%- if dataToShow.infographics -%} {%- assign
330
+ infographics = dataToShow.infographics -%}
331
+
332
+ <script type="application/ld+json">
333
+ {
334
+ "@context": "http://schema.org",
335
+ "@type": "ItemList",
336
+ "name": "Infographics",
337
+ "itemListElement": [
338
+ {% assign position = 1 %}
339
+ {% for infographic in infographics %}
535
340
  {
536
- "@context": "https://schema.org/",
537
- "@type": "ItemList",
538
- "name": "Contributors",
539
- "itemListElement": [
540
- {%- for contributor in dataToShow.contributors -%}
541
- {%- assign contributorData = contributor | split: " " -%}
542
- {%- assign contributorName = contributorData[0] -%}
543
- {%- assign contributorImage = contributorData[1] -%}
544
- {%- assign contributorBio = contributorData[2] -%}
545
- {%- assign contributorTwitter = contributorData[3] -%}
546
- {
547
- "@type": "Person",
548
- "name": "{{ contributorName }}",
549
- "url": "{{ site.siteurl }}/authors/{{ contributorName | downcase | replace: ' ', '-' }}",
550
- "image": "{{ site.siteurl }}{{ contributorImage }}",
551
- "sameAs": ["{{ contributorTwitter }}"]
552
- }{%- unless forloop.last -%},{%- endunless -%}
553
- {%- endfor -%}
554
- ]
341
+ "@type": "ListItem",
342
+ "position": {{ position }},
343
+ "item": {
344
+ "@type": "ImageObject",
345
+ "name": "Infographic {{ position }}",
346
+ "description": "{{ infographic.description }}",
347
+ "contentUrl": "{{ infographic.image }}"
555
348
  }
556
- </script>
557
- {%- endif -%} {%- if dataToShow.FAQ -%} {%- if dataToShow.FAQ.first.question
558
- != '' -%}
559
-
560
- <script type="application/ld+json">
561
- {
562
- "@context": "http://schema.org",
563
- "@type": "FAQPage",
564
- "mainEntity": [
565
- {%- for item in dataToShow.FAQ -%}
566
-
567
- {%- if forloop.last == true -%}
568
- {"@type": "Question",
569
- "name": "{{ item.question | replace: '"', "'" }}",
570
- "acceptedAnswer": {
571
- "@type": "Answer",
572
- "text": "{{ item.answer | replace: '"', "'" }}"
573
- }
574
- }
575
- {%- else -%}
576
- {"@type": "Question",
577
- "name": "{{ item.question | replace: '"', "'" }}",
578
- "acceptedAnswer": {
579
- "@type": "Answer",
580
- "text": "{{ item.answer | replace: '"', "'" }}"
581
- }
582
- },
583
-
584
- {%- endif -%}
585
- {%- endfor -%}
349
+ }{% unless forloop.last %},{% endunless %}
350
+ {% assign position = position | plus: 1 %}
351
+ {% endfor %}
352
+ ]
353
+ }
354
+ </script>
355
+
356
+ {%- endif -%} {%- if dataToShow.author -%} {%- include authors/authors.html
357
+ -%} {%- assign featureAuthor = dataToShow.author | split: " " -%} {%- assign
358
+ author = featureAuthor.first | downcase -%} {%- assign collection = [author]
359
+ -%} {%- for item in collection -%} {%- if forloop.index==1 -%} {%- assign
360
+ featureAuthorName = item -%} {%- endif -%} {%- if forloop.index==2 -%} {%-
361
+ assign featureAuthorImage = item -%} {%- endif -%} {%- if forloop.index==3 -%}
362
+ {%- assign featureAuthorBio = item -%} {%- endif -%} {%- if forloop.index==4
363
+ -%} {%- assign featureAuthorTwitter = item -%} {%- endif -%} {%- endfor -%}
364
+
365
+ <script type="application/ld+json">
366
+ {
367
+ "@context": "https://schema.org/",
368
+ "@type": "Person",
369
+ "name": "{{ featureAuthorName }}",
370
+ "url": "{{ site.siteurl }}/authors/{{ featureAuthorName | downcase | replace: ' ' , '-'' }}",
371
+ "image": "{{ site.siteurl }}{{ featureAuthorImage }}",
372
+ "sameAs": ["{{ featureAuthorNameTwitter }}"]
373
+ }
374
+ </script>
375
+ {%- endif -%} {%- if dataToShow.contributors -%}
376
+ <script type="application/ld+json">
377
+ {
378
+ "@context": "https://schema.org/",
379
+ "@type": "ItemList",
380
+ "name": "Contributors",
381
+ "itemListElement": [
382
+ {%- for contributor in dataToShow.contributors -%}
383
+ {%- assign contributorData = contributor | split: " " -%}
384
+ {%- assign contributorName = contributorData[0] -%}
385
+ {%- assign contributorImage = contributorData[1] -%}
386
+ {%- assign contributorBio = contributorData[2] -%}
387
+ {%- assign contributorTwitter = contributorData[3] -%}
388
+ {
389
+ "@type": "Person",
390
+ "name": "{{ contributorName }}",
391
+ "url": "{{ site.siteurl }}/authors/{{ contributorName | downcase | replace: ' ', '-' }}",
392
+ "image": "{{ site.siteurl }}{{ contributorImage }}",
393
+ "sameAs": ["{{ contributorTwitter }}"]
394
+ }{%- unless forloop.last -%},{%- endunless -%}
395
+ {%- endfor -%}
586
396
  ]
587
- }
588
- </script>
589
-
590
- {%- endif -%} {%- endif -%} {%- if page.tool -%} {%- include
591
- Rating/structureddata.html -%} {%- endif -%} {%- include google-analytics.html
592
- -%} {%- if site.pwa -%}
593
-
594
- <script>
595
- if ("serviceWorker" in navigator) {
596
- window.addEventListener("load", () => {
597
- navigator.serviceWorker
598
- .register("/serviceworker.js")
599
- .then((reg) => console.log("Success: ", reg.scope))
600
- .catch((err) => console.log("Failure: ", err));
601
- });
602
- }
603
- </script>
604
-
605
- {%- endif -%} {%- if site.testmode -%} {%- if page.lang == "hi" -%} {%-
606
- include monumetric/monumetric.html -%} {%- endif -%} {%- else -%} {%- include
607
- monumetric/monumetric.html -%} {%- endif -%} {%- include monumetric/ads.html
608
- -%} {%- if page.layout == "feature" or page.layout == "home" -%} {%- include
609
- monumetric/profitablecpmgate.html -%} {%- endif -%}
610
- </head>
611
-
397
+ }
398
+ </script>
399
+ {%- endif -%} {%- if dataToShow.FAQ -%} {%- if dataToShow.FAQ.first.question
400
+ != '' -%}
401
+
402
+ <script type="application/ld+json">
403
+ {
404
+ "@context": "http://schema.org",
405
+ "@type": "FAQPage",
406
+ "mainEntity": [
407
+ {%- for item in dataToShow.FAQ -%}
408
+
409
+ {%- if forloop.last == true -%}
410
+ {"@type": "Question",
411
+ "name": "{{ item.question | replace: '"', "'" }}",
412
+ "acceptedAnswer": {
413
+ "@type": "Answer",
414
+ "text": "{{ item.answer | replace: '"', "'" }}"
415
+ }
416
+ }
417
+ {%- else -%}
418
+ {"@type": "Question",
419
+ "name": "{{ item.question | replace: '"', "'" }}",
420
+ "acceptedAnswer": {
421
+ "@type": "Answer",
422
+ "text": "{{ item.answer | replace: '"', "'" }}"
423
+ }
424
+ },
425
+
426
+ {%- endif -%}
427
+ {%- endfor -%}
428
+ ]
429
+ }
430
+ </script>
431
+
432
+ {%- endif -%} {%- endif -%} {%- if page.tool -%} {%- include
433
+ Rating/structureddata.html -%} {%- endif -%} {%- include google-analytics.html
434
+ -%} {%- if site.pwa -%}
435
+
436
+ <script>
437
+ if ("serviceWorker" in navigator) {
438
+ window.addEventListener("load", () => {
439
+ navigator.serviceWorker
440
+ .register("/serviceworker.js")
441
+ .then((reg) => console.log("Success: ", reg.scope))
442
+ .catch((err) => console.log("Failure: ", err));
443
+ });
444
+ }
445
+ </script>
446
+
447
+ {%- endif -%} {%- if site.testmode -%} {%- if page.lang == "hi" -%} {%-
448
+ include monumetric/monumetric.html -%} {%- endif -%} {%- else -%} {%- include
449
+ monumetric/monumetric.html -%} {%- endif -%} {%- include monumetric/ads.html
450
+ -%} {%- if page.layout == "feature" or page.layout == "home" -%} {%- include
451
+ monumetric/profitablecpmgate.html -%} {%- endif -%}
452
+ </head>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.7
4
+ version: 3.7.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms