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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a462d63cdd838df0bc9ea4571e56b0ef77348b3dc953aa161ada3ffafc3f164
|
|
4
|
+
data.tar.gz: ae57dfa93e4e25182edf2f377b240d8808600cb1eaa3e7ccac618a732e3635cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf804d84eb19bf2cfc4cfbd0ecbeb7f9867af6c64a17bddb3c3076d11afb45af13b25f6167ad2b889e6e2e6ca83a50cf83f77d386a41c85bf8c2e14727a24c3e
|
|
7
|
+
data.tar.gz: 1e2cd4dcbcf9bf37d7231c8e394aba0d9e3b4f7a0472d639bfb1c339c030a225edd6faee29c0ed81fcbf90373d2cdb2b0d002450124572b9c7fa78f0d6341c52
|
|
@@ -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
|
|
|
@@ -82,206 +67,101 @@
|
|
|
82
67
|
<link rel="canonical" href="{{site.url | append: page.url}}" />
|
|
83
68
|
{%- endif -%}
|
|
84
69
|
|
|
85
|
-
<link
|
|
86
|
-
|
|
87
|
-
href="/assets/css/bootstrap.min.css"
|
|
88
|
-
{%-
|
|
89
|
-
if
|
|
90
|
-
site.crossorigin
|
|
91
|
-
-%}
|
|
92
|
-
{{
|
|
93
|
-
}}
|
|
94
|
-
crossorigin="anonymous"
|
|
95
|
-
{%-
|
|
96
|
-
endif
|
|
97
|
-
-%}
|
|
98
|
-
/>
|
|
70
|
+
<link rel="stylesheet" href="/assets/css/bootstrap.min.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous"
|
|
71
|
+
{%- endif -%} />
|
|
99
72
|
|
|
100
73
|
{%- if dataToShow.css -%}
|
|
101
|
-
<link
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
if
|
|
106
|
-
site.crossorigin
|
|
107
|
-
-%}
|
|
108
|
-
{{
|
|
109
|
-
}}
|
|
110
|
-
crossorigin="anonymous"
|
|
111
|
-
{%-
|
|
112
|
-
endif
|
|
113
|
-
-%}
|
|
114
|
-
/>
|
|
115
|
-
{%- else -%}
|
|
116
|
-
{%- endif -%}
|
|
74
|
+
<link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%- endif
|
|
75
|
+
-%} />
|
|
76
|
+
{%- else -%}
|
|
77
|
+
{%- endif -%}
|
|
117
78
|
{%- if site.monumetricId -%}
|
|
118
|
-
<link
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
{%-
|
|
122
|
-
if
|
|
123
|
-
site.crossorigin
|
|
124
|
-
-%}
|
|
125
|
-
{{
|
|
126
|
-
}}
|
|
127
|
-
crossorigin="anonymous"
|
|
128
|
-
{%-
|
|
129
|
-
endif
|
|
130
|
-
-%}
|
|
131
|
-
/>
|
|
132
|
-
{%- endif -%}
|
|
79
|
+
<link rel="stylesheet" href="/assets/css/responsive.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
80
|
+
endif -%} />
|
|
81
|
+
{%- endif -%}
|
|
133
82
|
{%- if page.layout == "calculator" -%}
|
|
134
|
-
<link
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
{%-
|
|
138
|
-
if
|
|
139
|
-
site.crossorigin
|
|
140
|
-
-%}
|
|
141
|
-
{{
|
|
142
|
-
}}
|
|
143
|
-
crossorigin="anonymous"
|
|
144
|
-
{%-
|
|
145
|
-
endif
|
|
146
|
-
-%}
|
|
147
|
-
/>
|
|
148
|
-
{%- endif -%}
|
|
83
|
+
<link rel="stylesheet" href="/assets/css/calculators.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous"
|
|
84
|
+
{%- endif -%} />
|
|
85
|
+
{%- endif -%}
|
|
149
86
|
{%- if page.layout == "home-1" -%}
|
|
150
|
-
<link
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
if
|
|
155
|
-
site.crossorigin
|
|
156
|
-
-%}
|
|
157
|
-
{{
|
|
158
|
-
}}
|
|
159
|
-
crossorigin="anonymous"
|
|
160
|
-
{%-
|
|
161
|
-
endif
|
|
162
|
-
-%}
|
|
163
|
-
/>
|
|
164
|
-
{%- endif -%}
|
|
165
|
-
|
|
87
|
+
<link rel="stylesheet" href="/assets/css/home-1.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
88
|
+
endif -%} />
|
|
89
|
+
{%- endif -%}
|
|
90
|
+
|
|
166
91
|
{%- if page.layout == "feature-1" or page.newBox or page.layout == "feature-download" -%}
|
|
167
|
-
<link
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
if
|
|
172
|
-
site.crossorigin
|
|
173
|
-
-%}
|
|
174
|
-
{{
|
|
175
|
-
}}
|
|
176
|
-
crossorigin="anonymous"
|
|
177
|
-
{%-
|
|
178
|
-
endif
|
|
179
|
-
-%}
|
|
180
|
-
/>
|
|
181
|
-
{%- endif -%}
|
|
182
|
-
|
|
92
|
+
<link rel="stylesheet" href="/assets/css/feature-1.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
93
|
+
endif -%} />
|
|
94
|
+
{%- endif -%}
|
|
95
|
+
|
|
183
96
|
{%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
|
|
184
|
-
<link
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
if
|
|
189
|
-
site.crossorigin
|
|
190
|
-
-%}
|
|
191
|
-
{{
|
|
192
|
-
}}
|
|
193
|
-
crossorigin="anonymous"
|
|
194
|
-
{%-
|
|
195
|
-
endif
|
|
196
|
-
-%}
|
|
197
|
-
/>
|
|
198
|
-
{%- endif -%}
|
|
199
|
-
|
|
97
|
+
<link rel="stylesheet" href="/assets/css/common.css" {%- if site.crossorigin -%} {{ }} crossorigin="anonymous" {%-
|
|
98
|
+
endif -%} />
|
|
99
|
+
{%- endif -%}
|
|
100
|
+
|
|
200
101
|
{%- if page.layout == "contenttool-home" -%}
|
|
201
|
-
<link
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
}}
|
|
210
|
-
crossorigin="anonymous"
|
|
211
|
-
{%-
|
|
212
|
-
endif
|
|
213
|
-
-%}
|
|
214
|
-
/>
|
|
215
|
-
{%- endif -%}
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
{%- if page.layout == 'ai-image-home' or page.layout == "ai-image-generator" or page.layout == "ai-image-pricing" or page.layout == "ai-image-profile" -%}
|
|
102
|
+
<link rel="stylesheet" href="/assets/css/appscms-contenttool.css" {%- if site.crossorigin -%} {{ }}
|
|
103
|
+
crossorigin="anonymous" {%- endif -%} />
|
|
104
|
+
{%- endif -%}
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
{%- if page.layout == 'ai-image-home' or page.layout == "ai-image-generator" or page.layout == "ai-image-pricing" or
|
|
109
|
+
page.layout == "ai-image-profile" -%}
|
|
220
110
|
<link rel="stylesheet" href="/assets/css/ai-image-home.css" />
|
|
221
|
-
{%- endif -%}
|
|
111
|
+
{%- endif -%}
|
|
222
112
|
|
|
223
113
|
{%- if page.layout == 'ai-image-generator' -%}
|
|
224
114
|
<link rel="stylesheet" href="/assets/css/ai-image-generator.css" />
|
|
225
|
-
{%- endif -%}
|
|
115
|
+
{%- endif -%}
|
|
226
116
|
|
|
227
117
|
{%- if page.layout == 'content-tool-ai' -%}
|
|
228
118
|
<link rel="stylesheet" href="/assets/css/content-tool-ai.css" />
|
|
229
|
-
{%- endif -%}
|
|
230
|
-
|
|
119
|
+
{%- endif -%}
|
|
120
|
+
|
|
231
121
|
{%- if page.layout != 'contenttool-home' and page.layout != 'content-tool-ai' -%}
|
|
232
122
|
<link rel="stylesheet" href="/assets/css/appscms-variables.css" />
|
|
233
|
-
{%- endif -%}
|
|
234
|
-
|
|
235
|
-
{%- if page.layout != 'contenttool-home' and page.layout != 'content-tool-ai' and page.layout != "ai-image-home" and
|
|
236
|
-
|
|
123
|
+
{%- endif -%}
|
|
124
|
+
|
|
125
|
+
{%- if page.layout != 'contenttool-home' and page.layout != 'content-tool-ai' and page.layout != "ai-image-home" and
|
|
126
|
+
page.layout != "ai-image-generator"
|
|
127
|
+
and page.layout != "ai-image-pricing" and page.layout != "ai-image-profile" -%}
|
|
237
128
|
<link rel="stylesheet" href="/assets/css/appscms-theme.css" />
|
|
238
129
|
{%- endif -%}
|
|
239
|
-
|
|
130
|
+
|
|
240
131
|
{%- if page.layout == "appscms-calculator" -%}
|
|
241
132
|
<link rel="stylesheet" href="/assets/css/appscms-feature.css" />
|
|
242
133
|
<link rel="stylesheet" href="/assets/css/appscms-calculator.css" />
|
|
243
|
-
{%- endif -%}
|
|
244
|
-
|
|
134
|
+
{%- endif -%}
|
|
135
|
+
|
|
245
136
|
{%- if page.layout == "appscms-home" -%}
|
|
246
137
|
<link rel="stylesheet" href="/assets/css/appscms-home.css" />
|
|
247
|
-
{%- endif -%}
|
|
248
|
-
|
|
138
|
+
{%- endif -%}
|
|
139
|
+
|
|
249
140
|
{%- if page.layout == "appscms-feature" or page.layout == "contenttool-feature" -%}
|
|
250
141
|
<link rel="stylesheet" href="/assets/css/appscms-feature.css" />
|
|
251
|
-
{%- endif -%}
|
|
252
|
-
|
|
142
|
+
{%- endif -%}
|
|
143
|
+
|
|
253
144
|
{%- if page.layout == "appscms-video" -%}
|
|
254
145
|
<link rel="stylesheet" href="/assets/css/appscms-feature.css" />
|
|
255
|
-
{%- endif -%}
|
|
256
|
-
|
|
146
|
+
{%- endif -%}
|
|
147
|
+
|
|
257
148
|
{%- if page.layout == "appscms-audio" -%}
|
|
258
149
|
<link rel="stylesheet" href="/assets/css/appscms-feature.css" />
|
|
259
|
-
{%- endif -%}
|
|
260
|
-
|
|
150
|
+
{%- endif -%}
|
|
151
|
+
|
|
261
152
|
{%- if page.layout == "devtools" -%}
|
|
262
153
|
<link rel="stylesheet" href="/assets/css/appscms-feature.css" />
|
|
263
|
-
{%- endif -%}
|
|
264
|
-
|
|
265
|
-
{%- if page.layout == "devtool-home" or page.layout == "devtool-feature" or page.layout == "devtools" or page.layout
|
|
154
|
+
{%- endif -%}
|
|
155
|
+
|
|
156
|
+
{%- if page.layout == "devtool-home" or page.layout == "devtool-feature" or page.layout == "devtools" or page.layout
|
|
157
|
+
== "devtool-about" -%}
|
|
266
158
|
<link rel="stylesheet" href="/assets/css/devtool-main.css" />
|
|
267
159
|
{%- endif -%}
|
|
268
|
-
|
|
160
|
+
|
|
269
161
|
{%- if page.layout == 'appscms-imagekit' -%}
|
|
270
162
|
<link rel="stylesheet" href="/assets/css/appscms-feature.css" />
|
|
271
|
-
<link
|
|
272
|
-
|
|
273
|
-
href="/assets/css/appscms-imagekit.css"
|
|
274
|
-
{%-
|
|
275
|
-
if
|
|
276
|
-
site.crossorigin
|
|
277
|
-
-%}
|
|
278
|
-
{{
|
|
279
|
-
}}
|
|
280
|
-
crossorigin="anonymous"
|
|
281
|
-
{%-
|
|
282
|
-
endif
|
|
283
|
-
-%}
|
|
284
|
-
/>
|
|
163
|
+
<link rel="stylesheet" href="/assets/css/appscms-imagekit.css" {%- if site.crossorigin -%} {{ }}
|
|
164
|
+
crossorigin="anonymous" {%- endif -%} />
|
|
285
165
|
{%- endif -%}
|
|
286
166
|
|
|
287
167
|
<meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
|
|
@@ -289,40 +169,20 @@
|
|
|
289
169
|
<meta property="og:description" content="{{description}}" />
|
|
290
170
|
<meta property="og:type" content="website" />
|
|
291
171
|
{%- if page.customLink -%}
|
|
292
|
-
<meta
|
|
293
|
-
data-rh="true"
|
|
294
|
-
property="og:url"
|
|
295
|
-
content="{{site.url | append: page.customLink}}"
|
|
296
|
-
/>
|
|
172
|
+
<meta data-rh="true" property="og:url" content="{{site.url | append: page.customLink}}" />
|
|
297
173
|
{%- else -%}
|
|
298
|
-
<meta
|
|
299
|
-
data-rh="true"
|
|
300
|
-
property="og:url"
|
|
301
|
-
content="{{site.url | append: page.url}}"
|
|
302
|
-
/>
|
|
174
|
+
<meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}" />
|
|
303
175
|
{%- endif -%}
|
|
304
176
|
<meta data-rh="true" property="og:site_name" content="{{site.name}}" />
|
|
305
177
|
<meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
|
|
306
178
|
{%- if page.customLink -%}
|
|
307
|
-
<meta
|
|
308
|
-
data-rh="true"
|
|
309
|
-
property="twitter:url"
|
|
310
|
-
content="{{site.url | append: page.customLink}}"
|
|
311
|
-
/>
|
|
179
|
+
<meta data-rh="true" property="twitter:url" content="{{site.url | append: page.customLink}}" />
|
|
312
180
|
{%- else -%}
|
|
313
|
-
<meta
|
|
314
|
-
data-rh="true"
|
|
315
|
-
property="twitter:url"
|
|
316
|
-
content="{{site.url | append: page.url}}"
|
|
317
|
-
/>
|
|
181
|
+
<meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}" />
|
|
318
182
|
{%- endif -%}
|
|
319
183
|
<meta data-rh="true" name="twitter:title" content="{{title}}" />
|
|
320
184
|
<meta data-rh="true" name="twitter:description" content="{{description}}" />
|
|
321
|
-
<meta
|
|
322
|
-
data-rh="true"
|
|
323
|
-
name="twitter:image:src"
|
|
324
|
-
content="{{site.url}}{{favicon}}"
|
|
325
|
-
/>
|
|
185
|
+
<meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}" />
|
|
326
186
|
{% include adsense/adsense.html %} {%- if page.noindex -%}
|
|
327
187
|
<meta name="robots" content="noindex" />
|
|
328
188
|
{%- endif -%} {% assign whitelist_urls =
|
|
@@ -513,4 +373,20 @@
|
|
|
513
373
|
monumetric/monumetric.html -%} {%- endif -%} {%- include monumetric/ads.html
|
|
514
374
|
-%} {%- if page.layout == "feature" or page.layout == "home" -%} {%- include
|
|
515
375
|
monumetric/profitablecpmgate.html -%} {%- endif -%}
|
|
516
|
-
|
|
376
|
+
|
|
377
|
+
{% if jekyll.environment == 'production' and site.propeller_enabled %}
|
|
378
|
+
<script src="https://quge5.com/88/tag.min.js" data-zone="229053" async data-cfasync="false"></script>
|
|
379
|
+
{%- endif -%}
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
{% if jekyll.environment == 'production' and site.monetag_enabled %}
|
|
383
|
+
<script src="https://quge5.com/88/tag.min.js" data-zone="229067" async data-cfasync="false"></script>
|
|
384
|
+
{%- endif -%}
|
|
385
|
+
|
|
386
|
+
{% if and site.adsterra_enabled %}
|
|
387
|
+
<script src="https://pl29135408.profitablecpmratenetwork.com/d0/f8/69/d0f869f5725bd9c9a1f8a1f5c85773bc.js"></script>
|
|
388
|
+
{%- endif -%}
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
</head>
|
|
@@ -2,14 +2,19 @@
|
|
|
2
2
|
else -%}
|
|
3
3
|
<div class="container heading">
|
|
4
4
|
<div class="row">
|
|
5
|
-
<div
|
|
6
|
-
class="col-xxl-8 col-lg-9 col-md-12 col-sm-12 offset-md-1 offset-sm-0 py-3 pt-md-3 pt-sm-3 mx-auto"
|
|
7
|
-
>
|
|
5
|
+
<div class="col-xxl-8 col-lg-9 col-md-12 col-sm-12 offset-md-1 offset-sm-0 py-3 pt-md-3 pt-sm-3 mx-auto">
|
|
8
6
|
{%- if pageData.H1 -%} {%- assign h1 = pageData.H1 -%} {%- elsif
|
|
9
7
|
pageData.h1 -%} {%- assign h1 = pageData.h1 -%} {%- endif -%} {%- if
|
|
10
8
|
pageData.H2 -%} {%- assign h2 = pageData.H2 -%} {%- elsif pageData.h2 -%}
|
|
11
9
|
{%- assign h2 = pageData.h2 -%} {%- endif -%}
|
|
12
10
|
|
|
11
|
+
|
|
12
|
+
{%- if site.adsterra_enabled -%}
|
|
13
|
+
<script async="async" data-cfasync="false"
|
|
14
|
+
src="https://pl29135409.profitablecpmratenetwork.com/af8e200646b63440856d2b6560b484a7/invoke.js"></script>
|
|
15
|
+
<div id="container-af8e200646b63440856d2b6560b484a7"></div>
|
|
16
|
+
{%- endif -%}
|
|
17
|
+
|
|
13
18
|
<h1 class="text-center appscms-h1">
|
|
14
19
|
{%- for word in h1 -%} {%- if forloop.first == true -%} {{word |
|
|
15
20
|
capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
@@ -21,4 +26,4 @@ else -%}
|
|
|
21
26
|
</div>
|
|
22
27
|
</div>
|
|
23
28
|
</div>
|
|
24
|
-
{%- endif -%}
|
|
29
|
+
{%- endif -%}
|
|
@@ -3,46 +3,21 @@ site.data.[page.folderName][lang][file] %} {%- assign dataAtt =
|
|
|
3
3
|
"data-folderName='$folderName' data-lang='$lang' data-fileName='$fileName'
|
|
4
4
|
data-tool='$tool'" -%} {%- assign $folderName = '$folderName' -%} {%- if
|
|
5
5
|
site.removeJquery != true -%}
|
|
6
|
-
<script
|
|
7
|
-
|
|
8
|
-
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
|
9
|
-
{%-
|
|
10
|
-
if
|
|
11
|
-
site.crossorigin
|
|
12
|
-
-%}
|
|
13
|
-
{{
|
|
14
|
-
}}
|
|
15
|
-
crossorigin
|
|
16
|
-
{%-
|
|
17
|
-
endif
|
|
18
|
-
-%}
|
|
19
|
-
></script>
|
|
6
|
+
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" {%- if site.crossorigin -%} {{ }}
|
|
7
|
+
crossorigin {%- endif -%}></script>
|
|
20
8
|
{%- endif -%} {%- if site.search -%} {%- if page.layout == "appscms-home" or
|
|
21
9
|
page.layout == "contenttool-home" -%}
|
|
22
|
-
<script
|
|
23
|
-
defer
|
|
24
|
-
src="/assets/js/appscms-search.js"
|
|
25
|
-
crossorigin="anonymous"
|
|
26
|
-
></script>
|
|
10
|
+
<script defer src="/assets/js/appscms-search.js" crossorigin="anonymous"></script>
|
|
27
11
|
{%- endif -%} {%- if page.layout == "home-1" -%}
|
|
28
|
-
<script
|
|
29
|
-
|
|
30
|
-
src="/assets/js/appscms-search-home1.js"
|
|
31
|
-
crossorigin="anonymous"
|
|
32
|
-
></script>
|
|
33
|
-
{%- endif -%} {%- endif -%}
|
|
12
|
+
<script defer src="/assets/js/appscms-search-home1.js" crossorigin="anonymous"></script>
|
|
13
|
+
{%- endif -%} {%- endif -%}
|
|
34
14
|
{%- if page.layout != "content-tool-ai" and page.layout != "ai-image-home" and page.layout != "ai-image-generator" -%}
|
|
35
|
-
<script
|
|
36
|
-
data-lang="{{page.lang}}"
|
|
37
|
-
defer
|
|
38
|
-
src="/assets/js/appscms-theme.js"
|
|
39
|
-
crossorigin="anonymous"
|
|
40
|
-
></script>
|
|
15
|
+
<script data-lang="{{page.lang}}" defer src="/assets/js/appscms-theme.js" crossorigin="anonymous"></script>
|
|
41
16
|
{%- endif -%}
|
|
42
17
|
|
|
43
18
|
|
|
44
|
-
{%- if
|
|
45
|
-
|
|
19
|
+
{%- if page.layout != "ai-image-home" and page.layout != "ai-image-generator" -%}
|
|
20
|
+
<script defer src="/assets/js/appscms-infographics.js"></script>
|
|
46
21
|
{%- endif -%}
|
|
47
22
|
|
|
48
23
|
{%- if site.userTrackingCount -%} {%- include customScripts.html -%} {%- endif
|
|
@@ -51,87 +26,32 @@ page.layout == "contenttool-home" -%}
|
|
|
51
26
|
<script defer src="/assets/js/usageTrackingEvents.js"></script>
|
|
52
27
|
<script defer src="/assets/js/sharePage.js"></script>
|
|
53
28
|
{%- endif -%} {%- if site.removeBootstrapJs != true -%}
|
|
54
|
-
<script
|
|
55
|
-
|
|
56
|
-
src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
|
|
57
|
-
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns"
|
|
58
|
-
crossorigin="anonymous"
|
|
59
|
-
></script>
|
|
29
|
+
<script defer="defer" src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
|
|
30
|
+
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
|
|
60
31
|
{%- endif -%} {{site.data.customcdns.customcdns.jsfiles}} {%- if
|
|
61
32
|
scriptData.jsfilepaths -%} {%- for path in scriptData.jsfilepaths -%} {%- assign
|
|
62
33
|
asset_dir = path -%} {%- if site.versioning and asset_dir != "" -%} {%- if
|
|
63
34
|
asset_dir contains "https" and asset_dir contains "https://" -%}
|
|
64
|
-
<script
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
data-folderName="{{page.folderName}}"
|
|
68
|
-
data-lang="{{page.lang}}"
|
|
69
|
-
data-fileName="{{page.fileName}}"
|
|
70
|
-
data-tool="{{page.tool}}"
|
|
71
|
-
data-permalink="{{page.permalink}}"
|
|
72
|
-
{%-
|
|
73
|
-
if
|
|
74
|
-
site.crossorigin
|
|
75
|
-
-%}
|
|
76
|
-
{{
|
|
77
|
-
}}
|
|
78
|
-
crossorigin
|
|
79
|
-
{%-
|
|
80
|
-
endif
|
|
81
|
-
-%}
|
|
82
|
-
></script>
|
|
35
|
+
<script defer src="{{path}}" data-folderName="{{page.folderName}}" data-lang="{{page.lang}}"
|
|
36
|
+
data-fileName="{{page.fileName}}" data-tool="{{page.tool}}" data-permalink="{{page.permalink}}" {%- if
|
|
37
|
+
site.crossorigin -%} {{ }} crossorigin {%- endif -%}></script>
|
|
83
38
|
{%- else -%}
|
|
84
|
-
<script
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
data-lang="{{page.lang}}"
|
|
89
|
-
data-fileName="{{page.fileName}}"
|
|
90
|
-
data-tool="{{page.tool}}"
|
|
91
|
-
data-permalink="{{page.permalink}}"
|
|
92
|
-
{%-
|
|
93
|
-
if
|
|
94
|
-
site.crossorigin
|
|
95
|
-
-%}
|
|
96
|
-
{{
|
|
97
|
-
}}
|
|
98
|
-
crossorigin
|
|
99
|
-
{%-
|
|
100
|
-
endif
|
|
101
|
-
-%}
|
|
102
|
-
></script>
|
|
39
|
+
<script defer src="{% ministamp { source_path: '{{ asset_dir }}', destination_path: '{{ asset_dir }}' } %}"
|
|
40
|
+
data-folderName="{{page.folderName}}" data-lang="{{page.lang}}" data-fileName="{{page.fileName}}"
|
|
41
|
+
data-tool="{{page.tool}}" data-permalink="{{page.permalink}}" {%- if site.crossorigin -%} {{ }} crossorigin {%- endif
|
|
42
|
+
-%}></script>
|
|
103
43
|
{%- endif -%} {%- else -%}
|
|
104
|
-
<script
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
data-folderName="{{page.folderName}}"
|
|
108
|
-
data-lang="{{page.lang}}"
|
|
109
|
-
data-fileName="{{page.fileName}}"
|
|
110
|
-
data-tool="{{page.tool}}"
|
|
111
|
-
data-permalink="{{page.permalink}}"
|
|
112
|
-
{%-
|
|
113
|
-
if
|
|
114
|
-
site.crossorigin
|
|
115
|
-
-%}
|
|
116
|
-
{{
|
|
117
|
-
}}
|
|
118
|
-
crossorigin
|
|
119
|
-
{%-
|
|
120
|
-
endif
|
|
121
|
-
-%}
|
|
122
|
-
></script>
|
|
44
|
+
<script defer src="{{path}}" data-folderName="{{page.folderName}}" data-lang="{{page.lang}}"
|
|
45
|
+
data-fileName="{{page.fileName}}" data-tool="{{page.tool}}" data-permalink="{{page.permalink}}" {%- if
|
|
46
|
+
site.crossorigin -%} {{ }} crossorigin {%- endif -%}></script>
|
|
123
47
|
{%- endif -%} {%- endfor -%} {%- endif -%} {%- if scriptData.jscdns -%} {%- for
|
|
124
48
|
item in scriptData.jscdns -%} {{item | replace:"$folderName", page.folderName |
|
|
125
49
|
replace: "$fileName", page.fileName | replace: "$lang", page.lang | replace:
|
|
126
50
|
"$tool", page.tool }} {%- endfor -%} {%- endif -%} {%- assign font = "Inter" -%}
|
|
127
51
|
{%- if site.removeFontAwesome != true -%}
|
|
128
|
-
<link
|
|
129
|
-
rel="stylesheet"
|
|
130
|
-
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
|
52
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
|
131
53
|
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
|
|
132
|
-
crossorigin="anonymous"
|
|
133
|
-
referrerpolicy="no-referrer"
|
|
134
|
-
/>
|
|
54
|
+
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
135
55
|
{%- endif -%} {%- include google-analytics.html -%} {%- if site.bookmark -%} {%-
|
|
136
56
|
if page.layout == "appscms-feature" -%}
|
|
137
57
|
<script>
|
|
@@ -153,7 +73,7 @@ if page.layout == "appscms-feature" -%}
|
|
|
153
73
|
toaster.style.display = "none";
|
|
154
74
|
}, 10000);
|
|
155
75
|
</script>
|
|
156
|
-
{%- endif -%} {%- endif -%}
|
|
76
|
+
{%- endif -%} {%- endif -%}
|
|
157
77
|
|
|
158
78
|
{%- if site.authentication -%}
|
|
159
79
|
<script src="https://www.gstatic.com/firebasejs/9.22.0/firebase-app-compat.js"></script>
|
|
@@ -164,5 +84,9 @@ if page.layout == "appscms-feature" -%}
|
|
|
164
84
|
|
|
165
85
|
|
|
166
86
|
{%- if page.layout == "ai-image-generator" -%}
|
|
167
|
-
|
|
87
|
+
<script src="/js/ai-image.generator.js"></script>
|
|
88
|
+
{%- endif -%}
|
|
89
|
+
|
|
90
|
+
{% if site.adsterra_enabled %}
|
|
91
|
+
<script src="https://pl29135432.profitablecpmratenetwork.com/cc/4b/59/cc4b598064653e5208319058f7be9a1a.js"></script>
|
|
168
92
|
{%- endif -%}
|