appscms-tools-theme 2.9.9 → 3.0.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/_layouts/audio.html +33 -0
- data/_layouts/feature.html +256 -252
- data/_layouts/home.html +269 -246
- data/_layouts/photo-effects-home.html +5 -192
- data/assets/.DS_Store +0 -0
- data/assets/css/tools.css +4 -2
- data/assets/images/.DS_Store +0 -0
- data/assets/images/audio-upload.svg +1 -0
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5fefa89f74d27f04f584c8fceb5e063f0cf7c7a329c4ab432c91f0dbd5e4e39a
|
|
4
|
+
data.tar.gz: 712f14f3847b860c7658a23436dd679caf6b312d524048641ef0eb6f22aceef0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6a1a1351f09b1b292b1f251fd2ffd4fb0cac1214888e76e679936f8f8613c133b1f3d2f59e91acd6e3ea6e941c2e3c7dd6ac5f66b347095b1d4be7772810ae9
|
|
7
|
+
data.tar.gz: 4d642ad4e76fc760e3d4b6b4c4941e9df7c16ac891c005888a1210e2b2c5c9a9b48ca6655350c20f27711df22d78ffdea6bde20cfffff7a9159ac12a87b6dbd1
|
data/_layouts/audio.html
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: feature
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{%- assign fileData = site.data[page.folderName][page.lang][page.fileName] -%}
|
|
6
|
+
<div class="container mt-4">
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="col-md-6 mb-5" id="left-section">
|
|
9
|
+
<div>
|
|
10
|
+
{%- assign h1 = fileData.H1 | replace: "$variable", page.value -%}
|
|
11
|
+
<h1 class="audio-h1">
|
|
12
|
+
{%- for word in h1-%} {%- if forloop.first == true -%} {{word |
|
|
13
|
+
capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
14
|
+
</h1>
|
|
15
|
+
</div>
|
|
16
|
+
{%- assign h2 = fileData.H2 | replace: "$variable", page.value -%}
|
|
17
|
+
<div>
|
|
18
|
+
<h2 class="audio-h2">
|
|
19
|
+
{%- for word in h2 -%} {%- if forloop.first == true -%} {{word |
|
|
20
|
+
capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
21
|
+
</h2>
|
|
22
|
+
</div>
|
|
23
|
+
<div class="d-flex justify-content-left mt-4">
|
|
24
|
+
<button class="upload-redirect">Upload Your Audio</button>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-md-6">
|
|
28
|
+
<div class="right-section mb-5">
|
|
29
|
+
<img src="/assets/images/audio-upload.svg" alt="alt" />
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
data/_layouts/feature.html
CHANGED
|
@@ -1,259 +1,263 @@
|
|
|
1
|
-
{% assign file = page.fileName %}
|
|
2
|
-
{% assign
|
|
3
|
-
{% assign folder = page.folderName %}
|
|
4
|
-
{% assign featureData= site.data[folder][lang][file] %}
|
|
1
|
+
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
|
|
2
|
+
= page.folderName %} {% assign featureData= site.data[folder][lang][file] %}
|
|
5
3
|
<!DOCTYPE html>
|
|
6
4
|
<html lang="{{page.lang}}">
|
|
7
|
-
{% include head/index.html %}
|
|
5
|
+
{% include head/index.html %}
|
|
8
6
|
|
|
9
|
-
<body>
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
7
|
+
<body>
|
|
8
|
+
{% include header/index.html %} {%- if site.safeui -%}
|
|
9
|
+
<div
|
|
10
|
+
class="alert alert-{{featureData.variant | default: 'info'}} fade show text-center"
|
|
11
|
+
role="alert"
|
|
12
|
+
id="safeui-alert"
|
|
13
|
+
>
|
|
14
|
+
<div class="container">
|
|
15
|
+
{%- if featureData.alertmsg -%} {{featureData.alertmsg}} {%- else -%} We
|
|
16
|
+
do not upload any files to server, hence your data is 100% secure. {%-
|
|
17
|
+
endif -%}
|
|
18
|
+
<button
|
|
19
|
+
type="button"
|
|
20
|
+
class="close"
|
|
21
|
+
data-dismiss="alert"
|
|
22
|
+
aria-label="Close"
|
|
23
|
+
>
|
|
24
|
+
<span aria-hidden="true">×</span>
|
|
25
|
+
</button>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
{%- endif -%} {%- if page.layout != "frame" and page.layout !=
|
|
29
|
+
"photo-effects-home" and page.layout != "video" and page.layout != "audio"
|
|
30
|
+
-%}
|
|
31
|
+
<div class="flex-container pb-3">
|
|
32
|
+
<div class="flex-class py-4 mt-4 mt-md-0">
|
|
33
|
+
<div
|
|
34
|
+
id="h1-img-wrapper"
|
|
35
|
+
class="d-flex justify-content-center align-items-center"
|
|
36
|
+
>
|
|
37
|
+
<span id="h1-img" class="fHhdVc">
|
|
38
|
+
<div class="div-cont feature-img mr-2">
|
|
39
|
+
{%- if featureData.img -%}
|
|
40
|
+
<img
|
|
41
|
+
style="width:{{featureData.imgwidth}};height:{{featureData.imgheight}};"
|
|
42
|
+
src="{{featureData.img}}"
|
|
43
|
+
alt="{{featureData.imgalt}}"
|
|
44
|
+
{%-
|
|
45
|
+
if
|
|
46
|
+
site.crossorigin
|
|
47
|
+
-%}
|
|
48
|
+
crossorigin
|
|
49
|
+
{%-
|
|
50
|
+
endif
|
|
51
|
+
-%}
|
|
52
|
+
/>
|
|
53
|
+
{%- else -%}
|
|
54
|
+
<svg
|
|
55
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
56
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
57
|
+
viewBox="0 0 36 36"
|
|
58
|
+
fill="#000"
|
|
59
|
+
>
|
|
60
|
+
<path
|
|
61
|
+
d="M6,6 L9,18 L6,30 L18,27 L30,30 L27,18 L30,6 L18,9 L6,6 Z M3,3 L18,6.75 L33,3 L29.25,18 L33,33 L18,29.25 L3,33 L6.75,18 L3,3 Z"
|
|
62
|
+
></path>
|
|
63
|
+
</svg>
|
|
64
|
+
{%- endif -%}
|
|
65
|
+
</div>
|
|
66
|
+
</span>
|
|
67
|
+
{%- assign featureh1 = featureData.H1 | replace: "$variable",
|
|
68
|
+
page.value -%}
|
|
69
|
+
<h1 id="feature-h1" class="feature-h1">
|
|
70
|
+
{%- for word in featureh1-%} {%- if forloop.first == true -%} {{word
|
|
71
|
+
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
72
|
+
</h1>
|
|
73
|
+
</div>
|
|
74
|
+
{%- assign featureh2 = featureData.H2 | replace: "$variable", page.value
|
|
75
|
+
-%}
|
|
76
|
+
<h2 id="feature-h2" class="feature-h2">
|
|
77
|
+
{%- for word in featureh2 -%} {%- if forloop.first == true -%} {{word
|
|
78
|
+
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
79
|
+
</h2>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
{%- endif -%} {%- if site.noFeatureBox == true -%}
|
|
83
|
+
<div class="feature-content-box" id="theme-content-box">{{content}}</div>
|
|
84
|
+
{%- else -%} {%- if page.noBox == true -%}
|
|
85
|
+
<div class="feature-content-box" id="theme-content-box">{{content}}</div>
|
|
86
|
+
{%- else -%}
|
|
87
|
+
<div class="box-padding" id="theme-content-box">
|
|
88
|
+
<div class="d-flex" id="__cond-922051">
|
|
89
|
+
<div class="flex-container">
|
|
90
|
+
<div class="flex-class">
|
|
91
|
+
<div class="d-flex flex-column">
|
|
92
|
+
<div
|
|
93
|
+
class="box"
|
|
94
|
+
style="background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}"
|
|
95
|
+
>
|
|
96
|
+
<div class="box-border"></div>
|
|
97
|
+
<div class="content-box">{{content}}</div>
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
</div>
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
</div>
|
|
104
|
+
{%- endif -%} {%- endif -%}
|
|
72
105
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
</div>
|
|
77
|
-
{%- else -%}
|
|
78
|
-
{%- if page.noBox == true -%}
|
|
79
|
-
<div class="feature-content-box" id="theme-content-box">
|
|
80
|
-
{{content}}
|
|
81
|
-
</div>
|
|
82
|
-
{%- else -%}
|
|
83
|
-
<div class="box-padding" id="theme-content-box">
|
|
84
|
-
<div class="d-flex" id="__cond-922051">
|
|
85
|
-
<div class="flex-container">
|
|
86
|
-
<div class="flex-class">
|
|
87
|
-
<div class="d-flex flex-column">
|
|
88
|
-
<div class="box"
|
|
89
|
-
style=background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}>
|
|
90
|
-
<div class="box-border"></div>
|
|
91
|
-
<div class="content-box">
|
|
92
|
-
{{content}}
|
|
93
|
-
</div>
|
|
94
|
-
</div>
|
|
95
|
-
</div>
|
|
96
|
-
</div>
|
|
97
|
-
</div>
|
|
98
|
-
</div>
|
|
99
|
-
</div>
|
|
100
|
-
{%- endif -%}
|
|
106
|
+
<div class="container mt-4 mb-5">
|
|
107
|
+
<div class="row px-0">
|
|
108
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
|
101
109
|
|
|
102
|
-
|
|
110
|
+
<div class="col-md-9 mx-auto">
|
|
111
|
+
<div class="row">
|
|
112
|
+
{%- endif -%} {% for data in featureData.TEXTUAL_CONTENT %}
|
|
113
|
+
<div
|
|
114
|
+
class="{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%} col-md-6 my-4 {%- else -%} col-md-4 my-4 {%- endif -%}"
|
|
115
|
+
>
|
|
116
|
+
<div>
|
|
117
|
+
<img
|
|
118
|
+
class="feature-card-img"
|
|
119
|
+
src="{{data.logoUrl}}"
|
|
120
|
+
loading="lazy"
|
|
121
|
+
height="48px"
|
|
122
|
+
width="48px"
|
|
123
|
+
alt="{{data.header}}"
|
|
124
|
+
{%-
|
|
125
|
+
if
|
|
126
|
+
site.crossorigin
|
|
127
|
+
-%}
|
|
128
|
+
crossorigin
|
|
129
|
+
{%-
|
|
130
|
+
endif
|
|
131
|
+
-%}
|
|
132
|
+
/>
|
|
133
|
+
<div class="feature-card-title">
|
|
134
|
+
{{data.header | replace: "$variable", page.value}}
|
|
135
|
+
</div>
|
|
136
|
+
<div class="feature-card-desc">
|
|
137
|
+
{{data.content | replace: "$variable", page.value}}
|
|
138
|
+
</div>
|
|
139
|
+
</div>
|
|
140
|
+
</div>
|
|
141
|
+
{% endfor %} {%- if site.monumetricId and page.url != '/' and
|
|
142
|
+
page.lang == 'en' -%}
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
{%- endif -%}
|
|
146
|
+
</div>
|
|
147
|
+
</div>
|
|
148
|
+
<section class="how-to-section">
|
|
149
|
+
<div class="container">
|
|
150
|
+
<div class="row">
|
|
151
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
|
103
152
|
|
|
104
|
-
|
|
153
|
+
<div class="col-md-9 mx-auto">
|
|
154
|
+
<div class="row">
|
|
155
|
+
{%- endif -%}
|
|
156
|
+
<div class="col-md-6 order-0">
|
|
157
|
+
{%- if featureData.HOW_TO_CONTENT.logoImageUrl -%}
|
|
158
|
+
<div class="how-to-img-wrapper">
|
|
159
|
+
<img
|
|
160
|
+
class="how-to-leftimg"
|
|
161
|
+
height="180px"
|
|
162
|
+
width="300px"
|
|
163
|
+
src="{{featureData.HOW_TO_CONTENT.logoImageUrl}}"
|
|
164
|
+
loading="lazy"
|
|
165
|
+
alt="{{featureData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}"
|
|
166
|
+
{%-
|
|
167
|
+
if
|
|
168
|
+
site.crossorigin
|
|
169
|
+
-%}
|
|
170
|
+
crossorigin
|
|
171
|
+
{%-
|
|
172
|
+
endif
|
|
173
|
+
-%}
|
|
174
|
+
/>
|
|
175
|
+
</div>
|
|
176
|
+
{%- endif -%}
|
|
177
|
+
</div>
|
|
178
|
+
<div class="col-md-6 order-1">
|
|
179
|
+
<div class="how-to-right">
|
|
180
|
+
<h3 class="how-to-title text-left">
|
|
181
|
+
{{featureData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
182
|
+
page.value}}
|
|
183
|
+
</h3>
|
|
184
|
+
<ol class="how-to-list">
|
|
185
|
+
{% for data in featureData.HOW_TO_CONTENT.steps %}
|
|
105
186
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
{%- break -%}
|
|
184
|
-
{%- else -%}
|
|
185
|
-
{%- assign showFaqs = true -%}
|
|
186
|
-
{%- endif -%}
|
|
187
|
-
{%- endfor -%}
|
|
188
|
-
{%- if showFaqs == true -%}
|
|
189
|
-
{%- if featureData.FAQ.size>0 -%}
|
|
190
|
-
<section class="faq-section">
|
|
191
|
-
<div class="container">
|
|
192
|
-
<div class="row">
|
|
193
|
-
<div class="col-md-8 mx-auto">
|
|
194
|
-
<div class="faq">
|
|
195
|
-
<h3 class="feature-h1 text-center mb-4">{{featureData.faqheading | default: 'Frequently Asked
|
|
196
|
-
Questions'}}</h3>
|
|
197
|
-
<ul class="list-unstyled">
|
|
198
|
-
{% for data in featureData.FAQ %}
|
|
199
|
-
<li>
|
|
200
|
-
<h3 class="faq-question" itemprop="name">{{data.question | replace: "$variable",
|
|
201
|
-
page.value}}<em style="transform: rotate(-135deg);">
|
|
202
|
-
<i></i></em>
|
|
203
|
-
</h3>
|
|
204
|
-
<div style="display: block;">
|
|
205
|
-
<p class="faq-answer" itemprop="text">{{data.answer | replace: "$variable",
|
|
206
|
-
page.value}}
|
|
207
|
-
</p>
|
|
208
|
-
</div>
|
|
209
|
-
</li>
|
|
210
|
-
{% endfor %}
|
|
211
|
-
</ul>
|
|
212
|
-
</div>
|
|
213
|
-
</div>
|
|
214
|
-
</div>
|
|
215
|
-
</div>
|
|
216
|
-
</section>
|
|
217
|
-
{%- endif -%}
|
|
218
|
-
{%- endif -%}
|
|
219
|
-
{%- include share/socialshare.html -%}
|
|
220
|
-
{%- include Rating/rating.html -%}
|
|
221
|
-
{%- include /Usp/usp.html -%}
|
|
222
|
-
{%- if featureData.display_formats -%}
|
|
223
|
-
<div class="container compare-table ">
|
|
224
|
-
{%- include fileformat/fileformatdetail.html -%}
|
|
225
|
-
</div>
|
|
226
|
-
{%- endif -%}
|
|
227
|
-
{%- if featureData.compare_formats -%}
|
|
228
|
-
<div class="container file-detail-table ">
|
|
229
|
-
{%- include fileformat/comparisonfiles.html -%}
|
|
230
|
-
</div>
|
|
231
|
-
{%- endif -%}
|
|
232
|
-
{%- assign langen = "en" -%}
|
|
233
|
-
{%- if site.data[folder][langen][file].categories -%}
|
|
234
|
-
{% assign categories= site.data[folder][langen][file].categories %}
|
|
235
|
-
{%- else -%}
|
|
236
|
-
{% assign categories= page.categories %}
|
|
237
|
-
{%- endif -%}
|
|
238
|
-
{%- if site.data[folder][langen][file].tags -%}
|
|
239
|
-
{% assign tags= site.data[folder][langen][file].tags %}
|
|
240
|
-
{%- else -%}
|
|
241
|
-
{% assign tags= page.tags %}
|
|
242
|
-
{%- endif -%}
|
|
243
|
-
{%- if categories.size> 0 or tags.size>0-%}
|
|
244
|
-
{%- include section/related_categories_post.html -%}
|
|
245
|
-
{%- else -%}
|
|
246
|
-
{%- include section/recent_posts.html -%}
|
|
247
|
-
{% endif %}
|
|
248
|
-
{%- if site.customblogdata -%}
|
|
249
|
-
{%- if categories.size> 0 or tags.size>0-%}
|
|
250
|
-
{%- include customblog/relatedposts.html -%}
|
|
251
|
-
{%- else -%}
|
|
252
|
-
{%- include customblog/recentposts.html -%}
|
|
253
|
-
{% endif %}
|
|
254
|
-
{%- endif -%}
|
|
255
|
-
{% include footer/index.html %}
|
|
256
|
-
{% include script.html %}
|
|
257
|
-
</body>
|
|
258
|
-
|
|
259
|
-
</html>
|
|
187
|
+
<li id="step{{forloop.index}}" class="how-to-list-item">
|
|
188
|
+
<span>{{forloop.index}}.</span>{{data | replace:
|
|
189
|
+
"$variable", page.value}}
|
|
190
|
+
</li>
|
|
191
|
+
{% endfor %}
|
|
192
|
+
</ol>
|
|
193
|
+
</div>
|
|
194
|
+
</div>
|
|
195
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en'
|
|
196
|
+
-%}
|
|
197
|
+
</div>
|
|
198
|
+
</div>
|
|
199
|
+
{%- endif -%}
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
</section>
|
|
203
|
+
{%- assign showFaqs= true -%} {%- for item in site.noFaqsList -%} {%- if
|
|
204
|
+
item == page.lang -%} {%- assign showFaqs = false -%} {%- break -%} {%- else
|
|
205
|
+
-%} {%- assign showFaqs = true -%} {%- endif -%} {%- endfor -%} {%- if
|
|
206
|
+
showFaqs == true -%} {%- if featureData.FAQ.size>0 -%}
|
|
207
|
+
<section class="faq-section">
|
|
208
|
+
<div class="container">
|
|
209
|
+
<div class="row">
|
|
210
|
+
<div class="col-md-8 mx-auto">
|
|
211
|
+
<div class="faq">
|
|
212
|
+
<h3 class="feature-h1 text-center mb-4">
|
|
213
|
+
{{featureData.faqheading | default: 'Frequently Asked
|
|
214
|
+
Questions'}}
|
|
215
|
+
</h3>
|
|
216
|
+
<ul class="list-unstyled">
|
|
217
|
+
{% for data in featureData.FAQ %}
|
|
218
|
+
<li>
|
|
219
|
+
<h3 class="faq-question" itemprop="name">
|
|
220
|
+
{{data.question | replace: "$variable", page.value}}<em
|
|
221
|
+
style="transform: rotate(-135deg)"
|
|
222
|
+
>
|
|
223
|
+
<i></i
|
|
224
|
+
></em>
|
|
225
|
+
</h3>
|
|
226
|
+
<div style="display: block">
|
|
227
|
+
<p class="faq-answer" itemprop="text">
|
|
228
|
+
{{data.answer | replace: "$variable", page.value}}
|
|
229
|
+
</p>
|
|
230
|
+
</div>
|
|
231
|
+
</li>
|
|
232
|
+
{% endfor %}
|
|
233
|
+
</ul>
|
|
234
|
+
</div>
|
|
235
|
+
</div>
|
|
236
|
+
</div>
|
|
237
|
+
</div>
|
|
238
|
+
</section>
|
|
239
|
+
{%- endif -%} {%- endif -%} {%- include share/socialshare.html -%} {%-
|
|
240
|
+
include Rating/rating.html -%} {%- include /Usp/usp.html -%} {%- if
|
|
241
|
+
featureData.display_formats -%}
|
|
242
|
+
<div class="container compare-table">
|
|
243
|
+
{%- include fileformat/fileformatdetail.html -%}
|
|
244
|
+
</div>
|
|
245
|
+
{%- endif -%} {%- if featureData.compare_formats -%}
|
|
246
|
+
<div class="container file-detail-table">
|
|
247
|
+
{%- include fileformat/comparisonfiles.html -%}
|
|
248
|
+
</div>
|
|
249
|
+
{%- endif -%} {%- assign langen = "en" -%} {%- if
|
|
250
|
+
site.data[folder][langen][file].categories -%} {% assign categories=
|
|
251
|
+
site.data[folder][langen][file].categories %} {%- else -%} {% assign
|
|
252
|
+
categories= page.categories %} {%- endif -%} {%- if
|
|
253
|
+
site.data[folder][langen][file].tags -%} {% assign tags=
|
|
254
|
+
site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
|
|
255
|
+
page.tags %} {%- endif -%} {%- if categories.size> 0 or tags.size>0-%} {%-
|
|
256
|
+
include section/related_categories_post.html -%} {%- else -%} {%- include
|
|
257
|
+
section/recent_posts.html -%} {% endif %} {%- if site.customblogdata -%} {%-
|
|
258
|
+
if categories.size> 0 or tags.size>0-%} {%- include
|
|
259
|
+
customblog/relatedposts.html -%} {%- else -%} {%- include
|
|
260
|
+
customblog/recentposts.html -%} {% endif %} {%- endif -%} {% include
|
|
261
|
+
footer/index.html %} {% include script.html %}
|
|
262
|
+
</body>
|
|
263
|
+
</html>
|