appscms-tools-theme 3.7.6 → 3.7.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/feature/en/3_shop_posters.json +8 -8
- data/_data/feature/en/allele-frequency.json +1 -1
- data/_data/feature/en/batch-conversion.json +1 -1
- data/_data/feature/en/compress-pdf.json +1 -1
- data/_data/feature/en/devtools.json +1 -1
- data/_data/feature/en/face-detection.json +1 -1
- data/_data/feature/en/split-pdf.json +1 -1
- data/_data/feature/en/theframe.json +1 -1
- data/_data/feature/hi/compress-pdf.json +1 -1
- data/_data/feature/tr/compress-pdf.json +1 -1
- data/_data/header/en/data.json +2 -2
- data/_data/home/en/en.json +1 -1
- data/_data/home/en/photoeffects.json +1 -1
- data/_data/home-1/en/en.json +1 -1
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/category-tabs/category-tabs.html +17 -0
- data/_includes/appscms/extras/ratings.html +33 -0
- data/_includes/appscms/extras/recent-posts.html +1 -0
- data/_includes/appscms/extras/traffic-count.html +21 -0
- data/_includes/appscms/faq/faq.html +46 -0
- data/_includes/appscms/featurehighlight/featurehighlight.html +56 -0
- data/_includes/appscms/footer/footer.html +283 -0
- data/_includes/appscms/footer/products.html +40 -0
- data/_includes/appscms/head/head.html +611 -0
- data/_includes/appscms/headings/headings.html +19 -0
- data/_includes/appscms/home/feature-boxes.html +21 -0
- data/_includes/appscms/howto/howto.html +74 -0
- data/_includes/appscms/navbars/navbar.html +50 -0
- data/_includes/appscms/navbars/toolbar.html +49 -0
- data/_includes/appscms/recent-posts/recent-posts.html +90 -0
- data/_includes/appscms/scripts/script.html +135 -0
- data/_includes/appscms/searchbar/searchbar.html +22 -0
- data/_includes/appscms/uploadbutton/uploadbutton.html +44 -0
- data/_layouts/appscms-blog.html +31 -0
- data/_layouts/appscms-feature.html +32 -0
- data/_layouts/appscms-home.html +27 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +362 -0
- data/assets/css/appscms-home.css +0 -0
- data/assets/css/appscms-theme.css +780 -0
- data/assets/document.png +0 -0
- data/assets/dropbox.png +0 -0
- data/assets/gdrive.png +0 -0
- data/assets/js/appscms-theme.js +62 -0
- metadata +31 -2
@@ -0,0 +1,611 @@
|
|
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
|
279
|
+
rel="stylesheet"
|
280
|
+
href="/assets/css/tools.css"
|
281
|
+
{%-
|
282
|
+
if
|
283
|
+
site.crossorigin
|
284
|
+
-%}
|
285
|
+
{{
|
286
|
+
}}
|
287
|
+
crossorigin="anonymous"
|
288
|
+
{%-
|
289
|
+
endif
|
290
|
+
-%}
|
291
|
+
/> -->
|
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
|
+
{
|
454
|
+
"@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
|
+
{
|
492
|
+
"@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">
|
524
|
+
{
|
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">
|
535
|
+
{
|
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
|
+
]
|
555
|
+
}
|
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 -%}
|
586
|
+
]
|
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
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
<div class="container heading">
|
3
|
+
<div class="row">
|
4
|
+
<div
|
5
|
+
class="col-xxl-8 col-lg-9 col-md-12 col-sm-12 offset-md-1 offset-sm-0 py-5 pt-md-5 pt-sm-3 mx-auto"
|
6
|
+
>
|
7
|
+
<h1 class="text-center appscms-h1">
|
8
|
+
{%- for word in pageData.h1 -%} {%- if forloop.first == true -%}
|
9
|
+
{{word | capitalize }} {%- else -%} {{word}} {%- endif -%} {%-
|
10
|
+
endfor -%}
|
11
|
+
</h1>
|
12
|
+
<h2 class="text-center appscms-h2">
|
13
|
+
{%- for word in pageData.h2 -%} {%- if forloop.first == true -%}
|
14
|
+
{{word | capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor
|
15
|
+
-%}
|
16
|
+
</h2>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<div class="container" id="appscms-tools-section">
|
2
|
+
<div class="row">
|
3
|
+
<div class="col-md-10 mx-auto">
|
4
|
+
<div class="row">
|
5
|
+
{% for item in pageData.features %}
|
6
|
+
<div class="col-xl-4 col-lg-6 col-md-6 appscms-tool-container">
|
7
|
+
<div class="appscms-tool">
|
8
|
+
<div class="tool-top">
|
9
|
+
<div class="tool-img">
|
10
|
+
<img crossorigin="anonymous" src="{{item.icon}}" alt="img" />
|
11
|
+
</div>
|
12
|
+
<div class="tool-text">{{item.description}}</div>
|
13
|
+
</div>
|
14
|
+
<div class="tool-heading">{{item.name}}</div>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
{% endfor %}
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
</div>
|