appscms-tools-theme 5.3.3 → 5.3.5
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.
- checksums.yaml +4 -4
- data/_includes/appscms/head/head.html +86 -210
- data/_includes/appscms/headings/headings.html +9 -4
- data/_includes/appscms/scripts/script.html +28 -104
- data/_includes/head/index.html +63 -298
- data/_layouts/feature-1.html +275 -263
- data/_layouts/home-1.html +13 -1
- metadata +2 -2
data/_includes/head/index.html
CHANGED
|
@@ -49,30 +49,15 @@
|
|
|
49
49
|
|
|
50
50
|
{%- endif -%} {%- if page.layout == "aboutUs" -%}
|
|
51
51
|
|
|
52
|
-
<meta
|
|
53
|
-
name="description"
|
|
54
|
-
content="{{site.name}} - About us | {{description}}"
|
|
55
|
-
/>
|
|
52
|
+
<meta name="description" content="{{site.name}} - About us | {{description}}" />
|
|
56
53
|
{% elsif page.layout == "termAndCondition" %}
|
|
57
|
-
<meta
|
|
58
|
-
name="description"
|
|
59
|
-
content="{{site.name}} - Terms and conditions | {{description}}"
|
|
60
|
-
/>
|
|
54
|
+
<meta name="description" content="{{site.name}} - Terms and conditions | {{description}}" />
|
|
61
55
|
{% elsif page.layout == "disclaimer" %}
|
|
62
|
-
<meta
|
|
63
|
-
name="description"
|
|
64
|
-
content="{{site.name}} - Disclaimer | {{description}}"
|
|
65
|
-
/>
|
|
56
|
+
<meta name="description" content="{{site.name}} - Disclaimer | {{description}}" />
|
|
66
57
|
{% elsif page.layout == "privacyPolicy" %}
|
|
67
|
-
<meta
|
|
68
|
-
name="description"
|
|
69
|
-
content="{{site.name}} - Privacy policy | {{description}}"
|
|
70
|
-
/>
|
|
58
|
+
<meta name="description" content="{{site.name}} - Privacy policy | {{description}}" />
|
|
71
59
|
{% elsif page.layout == "contactUs" %}
|
|
72
|
-
<meta
|
|
73
|
-
name="description"
|
|
74
|
-
content="{{site.name}} - Contact | {{description}}"
|
|
75
|
-
/>
|
|
60
|
+
<meta name="description" content="{{site.name}} - Contact | {{description}}" />
|
|
76
61
|
{%- else -%}
|
|
77
62
|
<meta name="description" content="{{description}}" />
|
|
78
63
|
|
|
@@ -86,307 +71,92 @@
|
|
|
86
71
|
|
|
87
72
|
{%- if site.versioning -%}
|
|
88
73
|
|
|
89
|
-
<link
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
{%-
|
|
93
|
-
if
|
|
94
|
-
site.crossorigin
|
|
95
|
-
-%}
|
|
96
|
-
{{
|
|
97
|
-
}}
|
|
98
|
-
crossorigin="anonymous"
|
|
99
|
-
{%-
|
|
100
|
-
endif
|
|
101
|
-
-%}
|
|
102
|
-
/>
|
|
74
|
+
<link rel="stylesheet"
|
|
75
|
+
href="{{ site.baseurl }}/{% ministamp assets/css/bootstrap.min.css assets/css/bootstrap.min.css %}" {%- if
|
|
76
|
+
site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
103
77
|
|
|
104
78
|
{%- if dataToShow.css -%}
|
|
105
79
|
|
|
106
|
-
<link
|
|
107
|
-
|
|
108
|
-
href="{{dataToShow.css}}"
|
|
109
|
-
{%-
|
|
110
|
-
if
|
|
111
|
-
site.crossorigin
|
|
112
|
-
-%}
|
|
113
|
-
{{
|
|
114
|
-
}}
|
|
115
|
-
crossorigin="anonymous"
|
|
116
|
-
{%-
|
|
117
|
-
endif
|
|
118
|
-
-%}
|
|
119
|
-
/>
|
|
80
|
+
<link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif
|
|
81
|
+
-%} />
|
|
120
82
|
{%- else -%}
|
|
121
|
-
<link
|
|
122
|
-
|
|
123
|
-
href="{{ site.baseurl }}/{% ministamp assets/css/tools.css assets/css/tools.css %}"
|
|
124
|
-
{%-
|
|
125
|
-
if
|
|
126
|
-
site.crossorigin
|
|
127
|
-
-%}
|
|
128
|
-
{{
|
|
129
|
-
}}
|
|
130
|
-
crossorigin="anonymous"
|
|
131
|
-
{%-
|
|
132
|
-
endif
|
|
133
|
-
-%}
|
|
134
|
-
/>
|
|
83
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/{% ministamp assets/css/tools.css assets/css/tools.css %}" {%- if
|
|
84
|
+
site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
135
85
|
|
|
136
86
|
{%- endif -%} {%- if site.monumetricId -%}
|
|
137
87
|
|
|
138
|
-
<link
|
|
139
|
-
|
|
140
|
-
href="{{ site.baseurl }}/{% ministamp assets/css/responsive.css assets/css/responsive.css %}"
|
|
141
|
-
{%-
|
|
142
|
-
if
|
|
143
|
-
site.crossorigin
|
|
144
|
-
-%}
|
|
145
|
-
{{
|
|
146
|
-
}}
|
|
147
|
-
crossorigin="anonymous"
|
|
148
|
-
{%-
|
|
149
|
-
endif
|
|
150
|
-
-%}
|
|
151
|
-
/>
|
|
88
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/{% ministamp assets/css/responsive.css assets/css/responsive.css %}"
|
|
89
|
+
{%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
152
90
|
|
|
153
91
|
{%- endif -%} {%- if page.layout == "calculator" -%}
|
|
154
92
|
|
|
155
|
-
<link
|
|
156
|
-
|
|
157
|
-
href="{{ site.baseurl }}/{% ministamp assets/css/calculators.css assets/css/calculators.css %}"
|
|
158
|
-
{%-
|
|
159
|
-
if
|
|
160
|
-
site.crossorigin
|
|
161
|
-
-%}
|
|
162
|
-
{{
|
|
163
|
-
}}
|
|
164
|
-
crossorigin="anonymous"
|
|
165
|
-
{%-
|
|
166
|
-
endif
|
|
167
|
-
-%}
|
|
168
|
-
/>
|
|
93
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/{% ministamp assets/css/calculators.css assets/css/calculators.css %}"
|
|
94
|
+
{%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
169
95
|
|
|
170
96
|
{%- endif -%} {%- if page.layout == "home-1" -%}
|
|
171
97
|
|
|
172
|
-
<link
|
|
173
|
-
|
|
174
|
-
href="{{ site.baseurl }}/{% ministamp assets/css/home-1.css assets/css/home-1.css %}"
|
|
175
|
-
{%-
|
|
176
|
-
if
|
|
177
|
-
site.crossorigin
|
|
178
|
-
-%}
|
|
179
|
-
{{
|
|
180
|
-
}}
|
|
181
|
-
crossorigin="anonymous"
|
|
182
|
-
{%-
|
|
183
|
-
endif
|
|
184
|
-
-%}
|
|
185
|
-
/>
|
|
98
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/{% ministamp assets/css/home-1.css assets/css/home-1.css %}" {%- if
|
|
99
|
+
site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
186
100
|
|
|
187
101
|
{%- endif -%} {%- if page.layout == "feature-1" or page.newBox or page.layout
|
|
188
102
|
== "feature-download" -%}
|
|
189
103
|
|
|
190
|
-
<link
|
|
191
|
-
|
|
192
|
-
href="{{ site.baseurl }}/{% ministamp assets/css/feature-1.css assets/css/feature-1.css %}"
|
|
193
|
-
{%-
|
|
194
|
-
if
|
|
195
|
-
site.crossorigin
|
|
196
|
-
-%}
|
|
197
|
-
{{
|
|
198
|
-
}}
|
|
199
|
-
crossorigin="anonymous"
|
|
200
|
-
{%-
|
|
201
|
-
endif
|
|
202
|
-
-%}
|
|
203
|
-
/>
|
|
104
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/{% ministamp assets/css/feature-1.css assets/css/feature-1.css %}" {%-
|
|
105
|
+
if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
204
106
|
|
|
205
107
|
{%- endif -%} {%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
|
|
206
108
|
|
|
207
|
-
<link
|
|
208
|
-
|
|
209
|
-
href="{{ site.baseurl }}/{% ministamp assets/css/common.css assets/css/common.css %}"
|
|
210
|
-
{%-
|
|
211
|
-
if
|
|
212
|
-
site.crossorigin
|
|
213
|
-
-%}
|
|
214
|
-
{{
|
|
215
|
-
}}
|
|
216
|
-
crossorigin="anonymous"
|
|
217
|
-
{%-
|
|
218
|
-
endif
|
|
219
|
-
-%}
|
|
220
|
-
/>
|
|
109
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/{% ministamp assets/css/common.css assets/css/common.css %}" {%- if
|
|
110
|
+
site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
221
111
|
|
|
222
112
|
{%- endif -%} {%- if page.layout == 'imagekit' -%}
|
|
223
113
|
|
|
224
|
-
<link
|
|
225
|
-
|
|
226
|
-
href="{{ site.baseurl }}/{% ministamp assets/css/imagekit.css assets/css/imagekit.css %}"
|
|
227
|
-
{%-
|
|
228
|
-
if
|
|
229
|
-
site.crossorigin
|
|
230
|
-
-%}
|
|
231
|
-
{{
|
|
232
|
-
}}
|
|
233
|
-
crossorigin="anonymous"
|
|
234
|
-
{%-
|
|
235
|
-
endif
|
|
236
|
-
-%}
|
|
237
|
-
/>
|
|
114
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/{% ministamp assets/css/imagekit.css assets/css/imagekit.css %}" {%-
|
|
115
|
+
if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif -%} />
|
|
238
116
|
|
|
239
117
|
{%- endif -%} {%- else -%}
|
|
240
118
|
|
|
241
|
-
<link
|
|
242
|
-
|
|
243
|
-
href="/assets/css/bootstrap.min.css"
|
|
244
|
-
{%-
|
|
245
|
-
if
|
|
246
|
-
site.crossorigin
|
|
247
|
-
-%}
|
|
248
|
-
{{
|
|
249
|
-
}}
|
|
250
|
-
crossorigin="anonymous"
|
|
251
|
-
{%-
|
|
252
|
-
endif
|
|
253
|
-
-%}
|
|
254
|
-
/>
|
|
119
|
+
<link rel="stylesheet" href="/assets/css/bootstrap.min.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous"
|
|
120
|
+
{%- endif -%} />
|
|
255
121
|
|
|
256
122
|
{%- if dataToShow.css -%}
|
|
257
123
|
|
|
258
|
-
<link
|
|
259
|
-
|
|
260
|
-
href="{{dataToShow.css}}"
|
|
261
|
-
{%-
|
|
262
|
-
if
|
|
263
|
-
site.crossorigin
|
|
264
|
-
-%}
|
|
265
|
-
{{
|
|
266
|
-
}}
|
|
267
|
-
crossorigin="anonymous"
|
|
268
|
-
{%-
|
|
269
|
-
endif
|
|
270
|
-
-%}
|
|
271
|
-
/>
|
|
124
|
+
<link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif
|
|
125
|
+
-%} />
|
|
272
126
|
{%- else -%}
|
|
273
|
-
<link
|
|
274
|
-
|
|
275
|
-
href="/assets/css/tools.css"
|
|
276
|
-
{%-
|
|
277
|
-
if
|
|
278
|
-
site.crossorigin
|
|
279
|
-
-%}
|
|
280
|
-
{{
|
|
281
|
-
}}
|
|
282
|
-
crossorigin="anonymous"
|
|
283
|
-
{%-
|
|
284
|
-
endif
|
|
285
|
-
-%}
|
|
286
|
-
/>
|
|
127
|
+
<link rel="stylesheet" href="/assets/css/tools.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
128
|
+
endif -%} />
|
|
287
129
|
|
|
288
130
|
{%- endif -%} {%- if site.monumetricId -%}
|
|
289
131
|
|
|
290
|
-
<link
|
|
291
|
-
|
|
292
|
-
href="/assets/css/responsive.css"
|
|
293
|
-
{%-
|
|
294
|
-
if
|
|
295
|
-
site.crossorigin
|
|
296
|
-
-%}
|
|
297
|
-
{{
|
|
298
|
-
}}
|
|
299
|
-
crossorigin="anonymous"
|
|
300
|
-
{%-
|
|
301
|
-
endif
|
|
302
|
-
-%}
|
|
303
|
-
/>
|
|
132
|
+
<link rel="stylesheet" href="/assets/css/responsive.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
133
|
+
endif -%} />
|
|
304
134
|
|
|
305
135
|
{%- endif -%} {%- if page.layout == "calculator" -%}
|
|
306
136
|
|
|
307
|
-
<link
|
|
308
|
-
|
|
309
|
-
href="/assets/css/calculators.css"
|
|
310
|
-
{%-
|
|
311
|
-
if
|
|
312
|
-
site.crossorigin
|
|
313
|
-
-%}
|
|
314
|
-
{{
|
|
315
|
-
}}
|
|
316
|
-
crossorigin="anonymous"
|
|
317
|
-
{%-
|
|
318
|
-
endif
|
|
319
|
-
-%}
|
|
320
|
-
/>
|
|
137
|
+
<link rel="stylesheet" href="/assets/css/calculators.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous"
|
|
138
|
+
{%- endif -%} />
|
|
321
139
|
|
|
322
140
|
{%- endif -%} {%- if page.layout == "home-1" -%}
|
|
323
141
|
|
|
324
|
-
<link
|
|
325
|
-
|
|
326
|
-
href="/assets/css/home-1.css"
|
|
327
|
-
{%-
|
|
328
|
-
if
|
|
329
|
-
site.crossorigin
|
|
330
|
-
-%}
|
|
331
|
-
{{
|
|
332
|
-
}}
|
|
333
|
-
crossorigin="anonymous"
|
|
334
|
-
{%-
|
|
335
|
-
endif
|
|
336
|
-
-%}
|
|
337
|
-
/>
|
|
142
|
+
<link rel="stylesheet" href="/assets/css/home-1.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
143
|
+
endif -%} />
|
|
338
144
|
|
|
339
145
|
{%- endif -%} {%- if page.layout == "feature-1" or page.newBox or page.layout
|
|
340
146
|
== "feature-download" -%}
|
|
341
147
|
|
|
342
|
-
<link
|
|
343
|
-
|
|
344
|
-
href="/assets/css/feature-1.css"
|
|
345
|
-
{%-
|
|
346
|
-
if
|
|
347
|
-
site.crossorigin
|
|
348
|
-
-%}
|
|
349
|
-
{{
|
|
350
|
-
}}
|
|
351
|
-
crossorigin="anonymous"
|
|
352
|
-
{%-
|
|
353
|
-
endif
|
|
354
|
-
-%}
|
|
355
|
-
/>
|
|
148
|
+
<link rel="stylesheet" href="/assets/css/feature-1.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
149
|
+
endif -%} />
|
|
356
150
|
|
|
357
151
|
{%- endif -%} {%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
|
|
358
152
|
|
|
359
|
-
<link
|
|
360
|
-
|
|
361
|
-
href="/assets/css/common.css"
|
|
362
|
-
{%-
|
|
363
|
-
if
|
|
364
|
-
site.crossorigin
|
|
365
|
-
-%}
|
|
366
|
-
{{
|
|
367
|
-
}}
|
|
368
|
-
crossorigin="anonymous"
|
|
369
|
-
{%-
|
|
370
|
-
endif
|
|
371
|
-
-%}
|
|
372
|
-
/>
|
|
153
|
+
<link rel="stylesheet" href="/assets/css/common.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
154
|
+
endif -%} />
|
|
373
155
|
|
|
374
156
|
{%- endif -%} {%- if page.layout == 'imagekit' -%}
|
|
375
157
|
|
|
376
|
-
<link
|
|
377
|
-
|
|
378
|
-
href="/assets/css/imagekit.css"
|
|
379
|
-
{%-
|
|
380
|
-
if
|
|
381
|
-
site.crossorigin
|
|
382
|
-
-%}
|
|
383
|
-
{{
|
|
384
|
-
}}
|
|
385
|
-
crossorigin="anonymous"
|
|
386
|
-
{%-
|
|
387
|
-
endif
|
|
388
|
-
-%}
|
|
389
|
-
/>
|
|
158
|
+
<link rel="stylesheet" href="/assets/css/imagekit.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
159
|
+
endif -%} />
|
|
390
160
|
|
|
391
161
|
{%- endif -%} {%- endif -%}
|
|
392
162
|
|
|
@@ -395,40 +165,20 @@
|
|
|
395
165
|
<meta property="og:description" content="{{description}}" />
|
|
396
166
|
<meta property="og:type" content="website" />
|
|
397
167
|
{%- if page.customLink -%}
|
|
398
|
-
<meta
|
|
399
|
-
data-rh="true"
|
|
400
|
-
property="og:url"
|
|
401
|
-
content="{{site.url | append: page.customLink}}"
|
|
402
|
-
/>
|
|
168
|
+
<meta data-rh="true" property="og:url" content="{{site.url | append: page.customLink}}" />
|
|
403
169
|
{%- else -%}
|
|
404
|
-
<meta
|
|
405
|
-
data-rh="true"
|
|
406
|
-
property="og:url"
|
|
407
|
-
content="{{site.url | append: page.url}}"
|
|
408
|
-
/>
|
|
170
|
+
<meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}" />
|
|
409
171
|
{%- endif -%}
|
|
410
172
|
<meta data-rh="true" property="og:site_name" content="{{site.name}}" />
|
|
411
173
|
<meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
|
|
412
174
|
{%- if page.customLink -%}
|
|
413
|
-
<meta
|
|
414
|
-
data-rh="true"
|
|
415
|
-
property="twitter:url"
|
|
416
|
-
content="{{site.url | append: page.customLink}}"
|
|
417
|
-
/>
|
|
175
|
+
<meta data-rh="true" property="twitter:url" content="{{site.url | append: page.customLink}}" />
|
|
418
176
|
{%- else -%}
|
|
419
|
-
<meta
|
|
420
|
-
data-rh="true"
|
|
421
|
-
property="twitter:url"
|
|
422
|
-
content="{{site.url | append: page.url}}"
|
|
423
|
-
/>
|
|
177
|
+
<meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}" />
|
|
424
178
|
{%- endif -%}
|
|
425
179
|
<meta data-rh="true" name="twitter:title" content="{{title}}" />
|
|
426
180
|
<meta data-rh="true" name="twitter:description" content="{{description}}" />
|
|
427
|
-
<meta
|
|
428
|
-
data-rh="true"
|
|
429
|
-
name="twitter:image:src"
|
|
430
|
-
content="{{site.url}}{{favicon}}"
|
|
431
|
-
/>
|
|
181
|
+
<meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}" />
|
|
432
182
|
{% include adsense/adsense.html %} {%- if page.noindex -%}
|
|
433
183
|
<meta name="robots" content="noindex" />
|
|
434
184
|
{%- endif -%} {%- if site.pwa -%}
|
|
@@ -639,4 +389,19 @@
|
|
|
639
389
|
monumetric/monumetric.html -%} {%- endif -%} {%- include monumetric/ads.html
|
|
640
390
|
-%} {%- if page.layout == "feature" or page.layout == "home" -%} {%- include
|
|
641
391
|
monumetric/profitablecpmgate.html -%} {%- endif -%}
|
|
642
|
-
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
{% if jekyll.environment == 'production' and site.propeller_enabled %}
|
|
395
|
+
<script src="https://quge5.com/88/tag.min.js" data-zone="229053" async data-cfasync="false"></script>
|
|
396
|
+
{%- endif -%}
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
{% if jekyll.environment == 'production' and site.monetag_enabled %}
|
|
400
|
+
<script src="https://quge5.com/88/tag.min.js" data-zone="229067" async data-cfasync="false"></script>
|
|
401
|
+
{%- endif -%}
|
|
402
|
+
|
|
403
|
+
{% if and site.adsterra_enabled %}
|
|
404
|
+
<script src="https://pl29135408.profitablecpmratenetwork.com/d0/f8/69/d0f869f5725bd9c9a1f8a1f5c85773bc.js"></script>
|
|
405
|
+
{%- endif -%}
|
|
406
|
+
|
|
407
|
+
</head>
|