appscms-tools-theme 3.8.0 → 3.8.1
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/_data/feature/en/compress-pdf.json +2 -2
- data/_data/feature/en/devtools.json +330 -1
- data/_data/home/en/en.json +7 -6
- data/_includes/infographics/infographics.html +11 -1
- data/_layouts/batch.html +48 -6
- data/_layouts/devtools.html +1 -4
- data/_layouts/feature-1.html +253 -322
- data/_layouts/feature.html +366 -380
- data/_layouts/home.html +34 -25
- data/assets/.DS_Store +0 -0
- metadata +3 -3
data/_layouts/feature-1.html
CHANGED
|
@@ -2,363 +2,294 @@
|
|
|
2
2
|
= page.folderName %} {% assign featureData= site.data[folder][lang][file] %}
|
|
3
3
|
<!DOCTYPE html>
|
|
4
4
|
<html lang="{{page.lang}}">
|
|
5
|
-
|
|
5
|
+
{% include head/index.html %}
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
<body>
|
|
8
|
+
{% include header/index.html %}
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
>
|
|
16
|
-
{%-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
{%- for word in featureh1-%} {%- if forloop.first == true -%} {{word
|
|
20
|
-
}} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
21
|
-
</h1>
|
|
22
|
-
</div>
|
|
23
|
-
{%- assign featureh2 = featureData.H2 | replace: "$variable", page.value
|
|
24
|
-
-%}
|
|
25
|
-
<h2 class="feature1-h2">
|
|
26
|
-
{%- for word in featureh2 -%} {%- if forloop.first == true -%} {{word
|
|
27
|
-
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
28
|
-
</h2>
|
|
10
|
+
<div class="flex-container feature1-flex-container">
|
|
11
|
+
<div class="flex-class py-4 mt-4 mt-md-0">
|
|
12
|
+
<div id="h1-img-wrapper" class="d-flex justify-content-center align-items-center">
|
|
13
|
+
{%- assign featureh1 = featureData.H1 | replace: "$variable",
|
|
14
|
+
page.value -%}
|
|
15
|
+
<h1 class="feature1-h1">
|
|
16
|
+
{%- for word in featureh1-%} {%- if forloop.first == true -%} {{word
|
|
17
|
+
}} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
18
|
+
</h1>
|
|
29
19
|
</div>
|
|
20
|
+
{%- assign featureh2 = featureData.H2 | replace: "$variable", page.value
|
|
21
|
+
-%}
|
|
22
|
+
<h2 class="feature1-h2">
|
|
23
|
+
{%- for word in featureh2 -%} {%- if forloop.first == true -%} {{word
|
|
24
|
+
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
25
|
+
</h2>
|
|
30
26
|
</div>
|
|
27
|
+
</div>
|
|
31
28
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
class="
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
id="Inputbox"
|
|
81
|
-
class="boxes"
|
|
82
|
-
style="background-color: {{boxColor}};"
|
|
83
|
-
>
|
|
84
|
-
<img
|
|
85
|
-
height="21px"
|
|
86
|
-
width="21px"
|
|
87
|
-
src="/assets/images/add.svg"
|
|
88
|
-
alt="add"
|
|
89
|
-
{%-
|
|
90
|
-
if
|
|
91
|
-
site.crossorigin
|
|
92
|
-
-%}
|
|
93
|
-
crossorigin
|
|
94
|
-
{%-
|
|
95
|
-
endif
|
|
96
|
-
-%}
|
|
97
|
-
/>
|
|
98
|
-
<span class="ml-3">CHOOSE FILE</span>
|
|
99
|
-
</div>
|
|
100
|
-
<div
|
|
101
|
-
class="file-pick-dropdown"
|
|
102
|
-
style="background-color:{{boxColor}}"
|
|
103
|
-
>
|
|
104
|
-
<i class="fas fa-angle-down arrow-sign"></i>
|
|
105
|
-
<div class="file-picker-dropdown" style="display: none">
|
|
106
|
-
<button id="filepicker">
|
|
107
|
-
<svg
|
|
108
|
-
class="mr-3"
|
|
109
|
-
viewBox="0 0 24 24"
|
|
110
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
111
|
-
>
|
|
112
|
-
<path
|
|
113
|
-
id="Path"
|
|
114
|
-
d="M8.33331 3H15.6666L23 15H15.6666L8.33331 3Z"
|
|
115
|
-
fill="#FFC107"
|
|
116
|
-
></path>
|
|
117
|
-
<path
|
|
118
|
-
id="Path_2"
|
|
119
|
-
d="M4.6012 21L8.30086 15H23L19.3333 21H4.6012Z"
|
|
120
|
-
fill="#1976D2"
|
|
121
|
-
></path>
|
|
122
|
-
<path
|
|
123
|
-
id="Path_3"
|
|
124
|
-
d="M1 15.0625L4.60119 21L12 9L8.33333 3L1 15.0625Z"
|
|
125
|
-
fill="#4CAF50"
|
|
126
|
-
></path>
|
|
127
|
-
</svg>
|
|
128
|
-
Google Drive
|
|
129
|
-
</button>
|
|
130
|
-
<button id="dropbox">
|
|
131
|
-
<svg
|
|
132
|
-
class="mr-3"
|
|
133
|
-
viewBox="0 0 24 24"
|
|
134
|
-
fill="#0061FF"
|
|
135
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
136
|
-
>
|
|
137
|
-
<path
|
|
138
|
-
id="icon"
|
|
139
|
-
d="M12.0146 6.57367L6.50732 10.1473L12.0146 13.721L6.50732 17.2947L1 13.6912L6.50732 10.1176L1 6.57367L6.50732 3L12.0146 6.57367ZM6.47803 18.4263L11.9854 14.8527L17.4927 18.4263L11.9854 22L6.47803 18.4263ZM12.0146 13.6912L17.522 10.1176L12.0146 6.57367L17.4927 3L23 6.57367L17.4927 10.1473L23 13.721L17.4927 17.2947L12.0146 13.6912Z"
|
|
140
|
-
></path>
|
|
141
|
-
</svg>
|
|
142
|
-
Dropbox
|
|
143
|
-
</button>
|
|
144
|
-
</div>
|
|
29
|
+
{%- if site.noFeatureBox == true -%}
|
|
30
|
+
<div class="feature-content-box" id="theme-content-box">{{content}}</div>
|
|
31
|
+
{%- else -%} {%- if page.noBox == true -%}
|
|
32
|
+
<div class="feature-content-box" id="theme-content-box">{{content}}</div>
|
|
33
|
+
{%- else -%}
|
|
34
|
+
<div class="feature-content-box" id="theme-content-box">
|
|
35
|
+
<div class="container">
|
|
36
|
+
{%- assign boxColor =
|
|
37
|
+
site.data[page.folderName][page.lang][page.fileName].color -%} {%- if
|
|
38
|
+
page.removeBox != true -%}
|
|
39
|
+
<div class="custom-box" data-color="{{boxColor}}">
|
|
40
|
+
<div style="display: none" id="file-loader">
|
|
41
|
+
<img src="/spinner.gif" alt="spinner" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
|
|
42
|
+
<p>Please Wait ,Loading Your file</p>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="saving-file-download-wrap" style="display: none">
|
|
45
|
+
<img loading="lazy" class="trust-img" src="/trust.svg" alt="trust" {%- if site.crossorigin -%} crossorigin {%-
|
|
46
|
+
endif -%} />
|
|
47
|
+
<p class="text-white my-2">Thanks for your patience</p>
|
|
48
|
+
<button class="btn" id="download-zip">Download</button>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="file-input" id="inputbox" style="color: #fff">
|
|
51
|
+
<div class="m-auto">
|
|
52
|
+
<div class="d-flex justify-content-center align-items-center">
|
|
53
|
+
<div id="Inputbox" class="boxes" style="background-color: {{boxColor}};">
|
|
54
|
+
<img height="21px" width="21px" src="/assets/images/add.svg" alt="add" {%- if site.crossorigin -%}
|
|
55
|
+
crossorigin {%- endif -%} />
|
|
56
|
+
<span class="ml-3">CHOOSE FILE</span>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="file-pick-dropdown" style="background-color:{{boxColor}}">
|
|
59
|
+
<i class="fas fa-angle-down arrow-sign"></i>
|
|
60
|
+
<div class="file-picker-dropdown" style="display: none">
|
|
61
|
+
<button id="filepicker">
|
|
62
|
+
<svg class="mr-3" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
63
|
+
<path id="Path" d="M8.33331 3H15.6666L23 15H15.6666L8.33331 3Z" fill="#FFC107"></path>
|
|
64
|
+
<path id="Path_2" d="M4.6012 21L8.30086 15H23L19.3333 21H4.6012Z" fill="#1976D2"></path>
|
|
65
|
+
<path id="Path_3" d="M1 15.0625L4.60119 21L12 9L8.33333 3L1 15.0625Z" fill="#4CAF50"></path>
|
|
66
|
+
</svg>
|
|
67
|
+
Google Drive
|
|
68
|
+
</button>
|
|
69
|
+
<button id="dropbox">
|
|
70
|
+
<svg class="mr-3" viewBox="0 0 24 24" fill="#0061FF" xmlns="http://www.w3.org/2000/svg">
|
|
71
|
+
<path id="icon"
|
|
72
|
+
d="M12.0146 6.57367L6.50732 10.1473L12.0146 13.721L6.50732 17.2947L1 13.6912L6.50732 10.1176L1 6.57367L6.50732 3L12.0146 6.57367ZM6.47803 18.4263L11.9854 14.8527L17.4927 18.4263L11.9854 22L6.47803 18.4263ZM12.0146 13.6912L17.522 10.1176L12.0146 6.57367L17.4927 3L23 6.57367L17.4927 10.1473L23 13.721L17.4927 17.2947L12.0146 13.6912Z">
|
|
73
|
+
</path>
|
|
74
|
+
</svg>
|
|
75
|
+
Dropbox
|
|
76
|
+
</button>
|
|
145
77
|
</div>
|
|
146
78
|
</div>
|
|
147
79
|
</div>
|
|
148
|
-
<p id="dropfile" class="text-dark">or drop your file here</p>
|
|
149
|
-
<p id="error" class="p-3"></p>
|
|
150
80
|
</div>
|
|
81
|
+
<p id="dropfile" class="text-dark">or drop your file here</p>
|
|
82
|
+
<p id="error" class="p-3"></p>
|
|
151
83
|
</div>
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
</div>
|
|
84
|
+
</div>
|
|
85
|
+
{%- endif -%} {%- if page.workspace -%}
|
|
86
|
+
<div class="workspace" style="display: none">
|
|
87
|
+
<div class="row mx-auto">
|
|
88
|
+
<div class="col-md-10 mx-auto">{{content}}</div>
|
|
157
89
|
</div>
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
</
|
|
90
|
+
</div>
|
|
91
|
+
{%- else -%}
|
|
92
|
+
<div class="workspace" style="display: none">
|
|
93
|
+
<div class="row">
|
|
94
|
+
<div class="col-12">
|
|
95
|
+
<div class="download-wrapper mt-3">
|
|
96
|
+
<div class="row rowclass">
|
|
97
|
+
<div class="col-7">
|
|
98
|
+
<div class="d-flex align-items-center">
|
|
99
|
+
<div class="select-format-title">image's format</div>
|
|
100
|
+
<div class="download-format">
|
|
101
|
+
<select name="image-format" id="image-format">
|
|
102
|
+
{%- if pageData.downloadFormats -%} {%- for item in
|
|
103
|
+
pageData.downloadFormats -%}
|
|
104
|
+
<option value="{{item}}">{{item}}</option>
|
|
105
|
+
{%- endfor -%} {%- else -%}
|
|
106
|
+
<option value="png">png</option>
|
|
107
|
+
<option value="jpg">jpg</option>
|
|
108
|
+
<option value="jpeg">jpeg</option>
|
|
109
|
+
<option value="webp">webp</option>
|
|
110
|
+
<option value="gif">gif</option>
|
|
111
|
+
{%- endif -%}
|
|
112
|
+
</select>
|
|
181
113
|
</div>
|
|
182
114
|
</div>
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
>
|
|
193
|
-
<path
|
|
194
|
-
d="M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 302.6l-103.1 103.1C270.7 414.6 260.9 416 256 416c-4.881 0-14.65-1.391-22.65-9.398L129.4 302.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 306.8V128c0-17.69 14.33-32 32-32s32 14.31 32 32v178.8l49.38-49.38c12.5-12.5 32.75-12.5 45.25 0S395.1 290.1 382.6 302.6z"
|
|
195
|
-
/></svg
|
|
196
|
-
>Download
|
|
197
|
-
</button>
|
|
198
|
-
</div>
|
|
115
|
+
</div>
|
|
116
|
+
<div class="col-5">
|
|
117
|
+
<div class="d-flex align-items-center">
|
|
118
|
+
<button id="download-button" style="background-color: {{pageData.color}};">
|
|
119
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
120
|
+
<path
|
|
121
|
+
d="M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 302.6l-103.1 103.1C270.7 414.6 260.9 416 256 416c-4.881 0-14.65-1.391-22.65-9.398L129.4 302.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 306.8V128c0-17.69 14.33-32 32-32s32 14.31 32 32v178.8l49.38-49.38c12.5-12.5 32.75-12.5 45.25 0S395.1 290.1 382.6 302.6z" />
|
|
122
|
+
</svg>Download
|
|
123
|
+
</button>
|
|
199
124
|
</div>
|
|
200
125
|
</div>
|
|
201
126
|
</div>
|
|
202
127
|
</div>
|
|
203
128
|
</div>
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
alt="saving"
|
|
213
|
-
/>
|
|
214
|
-
<span
|
|
215
|
-
class="ml-2"
|
|
216
|
-
{%-
|
|
217
|
-
if
|
|
218
|
-
site.crossorigin
|
|
219
|
-
-%}
|
|
220
|
-
crossorigin
|
|
221
|
-
{%-
|
|
222
|
-
endif
|
|
223
|
-
-%}
|
|
224
|
-
>Saving your images...</span
|
|
225
|
-
>
|
|
226
|
-
</div>
|
|
227
|
-
<div id="canvas-box-panel"></div>
|
|
129
|
+
</div>
|
|
130
|
+
{%- if page.commonStructure != false -%}
|
|
131
|
+
<div class="row">
|
|
132
|
+
<div class="col-md-7 mx-auto mb-2">
|
|
133
|
+
<div class="select-img-panel">
|
|
134
|
+
<div id="saving-data" style="display: none">
|
|
135
|
+
<img loading="lazy" src="/assets/images/loader.gif" alt="saving" />
|
|
136
|
+
<span class="ml-2" {%- if site.crossorigin -%} crossorigin {%- endif -%}>Saving your images...</span>
|
|
228
137
|
</div>
|
|
138
|
+
<div id="canvas-box-panel"></div>
|
|
229
139
|
</div>
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
140
|
+
</div>
|
|
141
|
+
<div class="col-md-5">
|
|
142
|
+
<div class="options-panel">
|
|
143
|
+
{%- if pageData.optionPanelTitle -%}
|
|
144
|
+
<div class="title">{{pageData.optionPanelTitle}}</div>
|
|
145
|
+
{%- endif -%} {{content}}
|
|
236
146
|
</div>
|
|
237
147
|
</div>
|
|
238
|
-
{%- else -%} {{content}} {%- endif -%}
|
|
239
148
|
</div>
|
|
240
|
-
{%- endif -%}
|
|
149
|
+
{%- else -%} {{content}} {%- endif -%}
|
|
241
150
|
</div>
|
|
151
|
+
{%- endif -%}
|
|
242
152
|
</div>
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
if
|
|
259
|
-
site.crossorigin
|
|
260
|
-
-%}
|
|
261
|
-
crossorigin
|
|
262
|
-
{%-
|
|
263
|
-
endif
|
|
264
|
-
-%}
|
|
265
|
-
/>
|
|
266
|
-
<div class="feature-card-title">
|
|
267
|
-
{{data.header | replace: "$variable", page.value}}
|
|
268
|
-
</div>
|
|
269
|
-
<div class="feature1-card-desc">
|
|
270
|
-
{{data.content | replace: "$variable", page.value}}
|
|
271
|
-
</div>
|
|
153
|
+
</div>
|
|
154
|
+
{%- endif -%} {%- endif -%} {%- if featureData.TEXTUAL_CONTENT -%}
|
|
155
|
+
<div class="container mt-4 mb-5">
|
|
156
|
+
<div class="row px-0">
|
|
157
|
+
<div class="col-md-12 mx-auto">
|
|
158
|
+
<div class="row">
|
|
159
|
+
{% for data in featureData.TEXTUAL_CONTENT %}
|
|
160
|
+
<div class="col-md-4 my-4">
|
|
161
|
+
<img class="feature-card-img" src="{{data.logoUrl}}" loading="lazy" height="48px" width="48px"
|
|
162
|
+
alt="{{data.header}}" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
|
|
163
|
+
<div class="feature-card-title">
|
|
164
|
+
{{data.header | replace: "$variable", page.value}}
|
|
165
|
+
</div>
|
|
166
|
+
<div class="feature1-card-desc">
|
|
167
|
+
{{data.content | replace: "$variable", page.value}}
|
|
272
168
|
</div>
|
|
273
|
-
{% endfor %}
|
|
274
169
|
</div>
|
|
170
|
+
{% endfor %}
|
|
275
171
|
</div>
|
|
276
172
|
</div>
|
|
277
173
|
</div>
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
<div class="container">
|
|
281
|
-
<div class="row">
|
|
282
|
-
<div class="col-md-12 mx-auto">
|
|
283
|
-
<div class="row">
|
|
284
|
-
<h4 class="feature1-how-to-heading w-100 text-center mb-5">
|
|
285
|
-
{{featureData.HOW_TO_CONTENT.mainHeading | replace: "$variable",
|
|
286
|
-
page.value}}
|
|
287
|
-
</h4>
|
|
174
|
+
</div>
|
|
175
|
+
{%- endif -%}
|
|
288
176
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
177
|
+
{%- if featureData.HOW_TO_CONTENT -%}
|
|
178
|
+
<section class="how-to-section">
|
|
179
|
+
<div class="container">
|
|
180
|
+
<div class="row">
|
|
181
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
|
182
|
+
<div class="col-md-9 mx-auto">
|
|
183
|
+
<div class="row">
|
|
184
|
+
{%- endif -%}
|
|
185
|
+
<div class="col-md-6 order-0">
|
|
186
|
+
{%- if featureData.HOW_TO_CONTENT.YoutubeVideoUrl.size > 0 -%}
|
|
187
|
+
<div class="how-to-video-wrapper">
|
|
188
|
+
{% assign video_url = featureData.HOW_TO_CONTENT.YoutubeVideoUrl %}
|
|
189
|
+
{% assign video_id = "" %}
|
|
190
|
+
{% if video_url contains "youtu.be/" %}
|
|
191
|
+
{% assign parts = video_url | split: "/" %}
|
|
192
|
+
{% assign video_id = parts[3] %}
|
|
193
|
+
{% elsif video_url contains "youtube.com/watch" %}
|
|
194
|
+
{% assign params = video_url | split: "?" | last | split: "&" %}
|
|
195
|
+
{% for param in params %}
|
|
196
|
+
{% if param contains "v=" %}
|
|
197
|
+
{% assign video_id = param | split: "=" | last %}
|
|
198
|
+
{% endif %}
|
|
199
|
+
{% endfor %}
|
|
200
|
+
{% endif %}
|
|
201
|
+
{%- if site.monumetricId -%}
|
|
202
|
+
<iframe class="youtubeVideoPlayer mb-5" width="400" height="315"
|
|
203
|
+
src="https://www.youtube.com/embed/{{video_id}}?autoplay=1&mute=1" allowfullscreen>
|
|
204
|
+
</iframe>
|
|
205
|
+
{%- else -%}
|
|
206
|
+
<iframe class="youtubeVideoPlayer mb-5" width="500" height="315"
|
|
207
|
+
src="https://www.youtube.com/embed/{{video_id}}?autoplay=1&mute=1" allowfullscreen>
|
|
208
|
+
</iframe>
|
|
209
|
+
{%- endif -%}
|
|
210
|
+
</div>
|
|
211
|
+
{%- else -%}
|
|
212
|
+
<div class="how-to-img-wrapper">
|
|
213
|
+
<img class="how-to-leftimg" height="180px" width="300px"
|
|
214
|
+
src="{{featureData.HOW_TO_CONTENT.logoImageUrl}}" loading="lazy"
|
|
215
|
+
alt="{{featureData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}" {%- if site.crossorigin
|
|
216
|
+
-%} crossorigin {%- endif -%} />
|
|
311
217
|
</div>
|
|
312
|
-
{%-
|
|
218
|
+
{%- endif -%}
|
|
313
219
|
</div>
|
|
220
|
+
<div class="col-md-6 order-1">
|
|
221
|
+
<div class="how-to-right">
|
|
222
|
+
<h3 class="how-to-title text-left">
|
|
223
|
+
{{featureData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
224
|
+
page.value}}
|
|
225
|
+
</h3>
|
|
226
|
+
<ol class="how-to-list">
|
|
227
|
+
{% for data in featureData.HOW_TO_CONTENT.steps %}
|
|
228
|
+
|
|
229
|
+
<li id="step{{forloop.index}}" class="how-to-list-item">
|
|
230
|
+
<span>{{forloop.index}}.</span>{{data | replace:
|
|
231
|
+
"$variable", page.value}}
|
|
232
|
+
</li>
|
|
233
|
+
{% endfor %}
|
|
234
|
+
</ol>
|
|
235
|
+
</div>
|
|
236
|
+
</div>
|
|
237
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en'
|
|
238
|
+
-%}
|
|
314
239
|
</div>
|
|
315
240
|
</div>
|
|
241
|
+
{%- endif -%}
|
|
316
242
|
</div>
|
|
317
|
-
</
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
243
|
+
</div>
|
|
244
|
+
</section>
|
|
245
|
+
{%- endif -%}
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
{%- assign showFaqs= true -%} {%- for item in site.noFaqsList
|
|
249
|
+
-%} {%- if item == page.lang -%} {%- assign showFaqs = false -%} {%- break
|
|
250
|
+
-%} {%- else -%} {%- assign showFaqs = true -%} {%- endif -%} {%- endfor -%}
|
|
251
|
+
{%- if showFaqs == true -%} {%- if featureData.FAQ.size>0 -%}
|
|
252
|
+
<section class="faq-section">
|
|
253
|
+
<div class="container">
|
|
254
|
+
<div class="row">
|
|
255
|
+
<div class="col-md-8 mx-auto">
|
|
256
|
+
<main class="faqs">
|
|
257
|
+
<h3 class="feature-h1 text-left mb-4" style="font-weight: 900">
|
|
258
|
+
{{featureData.faqheading | default: "FAQ's"}}
|
|
259
|
+
</h3>
|
|
260
|
+
{% for data in featureData.FAQ %}
|
|
261
|
+
<details open>
|
|
262
|
+
<summary>
|
|
263
|
+
{{data.question | replace: "$variable",page.value}}
|
|
264
|
+
</summary>
|
|
265
|
+
<div class="faq__content">
|
|
266
|
+
<p style="color: #5c5e60; font-size: 14px">
|
|
267
|
+
{{data.answer | replace: "$variable", page.value}}
|
|
268
|
+
</p>
|
|
269
|
+
</div>
|
|
270
|
+
</details>
|
|
271
|
+
{% endfor %}
|
|
272
|
+
</main>
|
|
344
273
|
</div>
|
|
345
274
|
</div>
|
|
346
|
-
</
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
</
|
|
275
|
+
</div>
|
|
276
|
+
</section>
|
|
277
|
+
{%- endif -%} {%- endif -%} {%- include share/socialshare.html -%} {%-
|
|
278
|
+
include Rating/rating.html -%} {%- if featureData.infographics.size > 0 -%}
|
|
279
|
+
{%- include infographics/infographics.html -%} {%- endif -%} {%- assign
|
|
280
|
+
langen = "en" -%} {%- if site.data[folder][langen][file].categories -%} {%
|
|
281
|
+
assign categories= site.data[folder][langen][file].categories %} {%- else
|
|
282
|
+
-%} {% assign categories= page.categories %} {%- endif -%} {%- if
|
|
283
|
+
site.data[folder][langen][file].tags -%} {% assign tags=
|
|
284
|
+
site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
|
|
285
|
+
page.tags %} {%- endif -%} {%- if featureData.posts.size > 0 -%} {%- include
|
|
286
|
+
customblog/pageRelatedPosts.html -%} {%- else -%} {%- if categories.size > 0
|
|
287
|
+
or tags.size > 0 -%} {%- include section/related_categories_post.html -%}
|
|
288
|
+
{%- else -%} {%- include section/recent_posts.html -%} {%- endif -%} {%-
|
|
289
|
+
endif -%} {%- if site.customblogdata -%} {%- if categories.size> 0 or
|
|
290
|
+
tags.size>0-%} {%- include customblog/relatedposts.html -%} {%- else -%} {%-
|
|
291
|
+
include customblog/recentposts.html -%} {% endif %} {%- endif -%} {% include
|
|
292
|
+
footer/index.html %} {% include script.html %}
|
|
293
|
+
</body>
|
|
294
|
+
|
|
295
|
+
</html>
|