appscms-tools-theme 2.9.9 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/audio.html +33 -0
- data/_layouts/feature.html +284 -252
- 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: 76603d85c64e01d5e7f411d8a34564761ce68bd50828bb700a26492ff6129da4
|
4
|
+
data.tar.gz: d1ee7f13d31dfcdaf8db9300a182b8b5c261d5d525d1e62f4cd7e788589df6f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e7f620ef9592486bc86c3a368db3781934d697d4577ed8f6ade99d1c32519afc129d74f9f3ff0bfdd4b6be4fea370fbf7b411e6c678b9378c15f7ed8f461cff
|
7
|
+
data.tar.gz: 85f3ce9b510fff974ccf2521a3a7ee7baab622b725543edf01bf3563f412d8a7e1e8a4fa0f2b980ee6cf858e8fba78e51de4bffa36ba289a4c0fb4d9bead00bf
|
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,291 @@
|
|
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'}} alert-dismissible fade show text-center"
|
11
|
+
role="alert"
|
12
|
+
id="safeui-alert"
|
13
|
+
>
|
14
|
+
<div class="container">
|
15
|
+
<img
|
16
|
+
src="/assets/secure.svg"
|
17
|
+
height="23px"
|
18
|
+
width="18px"
|
19
|
+
alt="secure"
|
20
|
+
{%-
|
21
|
+
if
|
22
|
+
site.crossorigin
|
23
|
+
-%}
|
24
|
+
crossorigin
|
25
|
+
{%-
|
26
|
+
endif
|
27
|
+
-%}
|
28
|
+
/>
|
29
|
+
{%- if featureData.alertmsg -%} {{featureData.alertmsg}} {%- else
|
30
|
+
-%} We do not upload any files to server, hence your data is 100%
|
31
|
+
secure. {%- endif -%}
|
32
|
+
<img
|
33
|
+
src="/assets/noserverupload.svg"
|
34
|
+
height="23px"
|
35
|
+
width="20px"
|
36
|
+
alt="no server upload"
|
37
|
+
{%-
|
38
|
+
if
|
39
|
+
site.crossorigin
|
40
|
+
-%}
|
41
|
+
crossorigin
|
42
|
+
{%-
|
43
|
+
endif
|
44
|
+
-%}
|
45
|
+
/>
|
46
|
+
<button
|
47
|
+
type="button"
|
48
|
+
class="close"
|
49
|
+
data-dismiss="alert"
|
50
|
+
aria-label="Close"
|
51
|
+
>
|
52
|
+
<span aria-hidden="true">×</span>
|
53
|
+
</button>
|
54
|
+
</div>
|
55
|
+
</div>
|
56
|
+
{%- endif -%} {%- if page.layout != "frame" and page.layout !=
|
57
|
+
"photo-effects-home" and page.layout != "video" and page.layout != "audio"
|
58
|
+
-%}
|
59
|
+
<div class="flex-container pb-3">
|
60
|
+
<div class="flex-class py-4 mt-4 mt-md-0">
|
61
|
+
<div
|
62
|
+
id="h1-img-wrapper"
|
63
|
+
class="d-flex justify-content-center align-items-center"
|
64
|
+
>
|
65
|
+
<span id="h1-img" class="fHhdVc">
|
66
|
+
<div class="div-cont feature-img mr-2">
|
67
|
+
{%- if featureData.img -%}
|
68
|
+
<img
|
69
|
+
style="width:{{featureData.imgwidth}};height:{{featureData.imgheight}};"
|
70
|
+
src="{{featureData.img}}"
|
71
|
+
alt="{{featureData.imgalt}}"
|
72
|
+
{%-
|
73
|
+
if
|
74
|
+
site.crossorigin
|
75
|
+
-%}
|
76
|
+
crossorigin
|
77
|
+
{%-
|
78
|
+
endif
|
79
|
+
-%}
|
80
|
+
/>
|
81
|
+
{%- else -%}
|
82
|
+
<svg
|
83
|
+
xmlns="http://www.w3.org/2000/svg"
|
84
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
85
|
+
viewBox="0 0 36 36"
|
86
|
+
fill="#000"
|
87
|
+
>
|
88
|
+
<path
|
89
|
+
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"
|
90
|
+
></path>
|
91
|
+
</svg>
|
92
|
+
{%- endif -%}
|
93
|
+
</div>
|
94
|
+
</span>
|
95
|
+
{%- assign featureh1 = featureData.H1 | replace: "$variable",
|
96
|
+
page.value -%}
|
97
|
+
<h1 id="feature-h1" class="feature-h1">
|
98
|
+
{%- for word in featureh1-%} {%- if forloop.first == true -%} {{word
|
99
|
+
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
100
|
+
</h1>
|
101
|
+
</div>
|
102
|
+
{%- assign featureh2 = featureData.H2 | replace: "$variable", page.value
|
103
|
+
-%}
|
104
|
+
<h2 id="feature-h2" class="feature-h2">
|
105
|
+
{%- for word in featureh2 -%} {%- if forloop.first == true -%} {{word
|
106
|
+
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
107
|
+
</h2>
|
108
|
+
</div>
|
109
|
+
</div>
|
110
|
+
{%- endif -%} {%- if site.noFeatureBox == true -%}
|
111
|
+
<div class="feature-content-box" id="theme-content-box">{{content}}</div>
|
112
|
+
{%- else -%} {%- if page.noBox == true -%}
|
113
|
+
<div class="feature-content-box" id="theme-content-box">{{content}}</div>
|
114
|
+
{%- else -%}
|
115
|
+
<div class="box-padding" id="theme-content-box">
|
116
|
+
<div class="d-flex" id="__cond-922051">
|
117
|
+
<div class="flex-container">
|
118
|
+
<div class="flex-class">
|
119
|
+
<div class="d-flex flex-column">
|
120
|
+
<div
|
121
|
+
class="box"
|
122
|
+
style="background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}"
|
123
|
+
>
|
124
|
+
<div class="box-border"></div>
|
125
|
+
<div class="content-box">{{content}}</div>
|
126
|
+
</div>
|
127
|
+
</div>
|
128
|
+
</div>
|
129
|
+
</div>
|
130
|
+
</div>
|
131
|
+
</div>
|
132
|
+
{%- endif -%} {%- endif -%}
|
72
133
|
|
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 -%}
|
134
|
+
<div class="container mt-4 mb-5">
|
135
|
+
<div class="row px-0">
|
136
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
101
137
|
|
102
|
-
|
138
|
+
<div class="col-md-9 mx-auto">
|
139
|
+
<div class="row">
|
140
|
+
{%- endif -%} {% for data in featureData.TEXTUAL_CONTENT %}
|
141
|
+
<div
|
142
|
+
class="{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%} col-md-6 my-4 {%- else -%} col-md-4 my-4 {%- endif -%}"
|
143
|
+
>
|
144
|
+
<div>
|
145
|
+
<img
|
146
|
+
class="feature-card-img"
|
147
|
+
src="{{data.logoUrl}}"
|
148
|
+
loading="lazy"
|
149
|
+
height="48px"
|
150
|
+
width="48px"
|
151
|
+
alt="{{data.header}}"
|
152
|
+
{%-
|
153
|
+
if
|
154
|
+
site.crossorigin
|
155
|
+
-%}
|
156
|
+
crossorigin
|
157
|
+
{%-
|
158
|
+
endif
|
159
|
+
-%}
|
160
|
+
/>
|
161
|
+
<div class="feature-card-title">
|
162
|
+
{{data.header | replace: "$variable", page.value}}
|
163
|
+
</div>
|
164
|
+
<div class="feature-card-desc">
|
165
|
+
{{data.content | replace: "$variable", page.value}}
|
166
|
+
</div>
|
167
|
+
</div>
|
168
|
+
</div>
|
169
|
+
{% endfor %} {%- if site.monumetricId and page.url != '/' and
|
170
|
+
page.lang == 'en' -%}
|
171
|
+
</div>
|
172
|
+
</div>
|
173
|
+
{%- endif -%}
|
174
|
+
</div>
|
175
|
+
</div>
|
176
|
+
<section class="how-to-section">
|
177
|
+
<div class="container">
|
178
|
+
<div class="row">
|
179
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
103
180
|
|
104
|
-
|
181
|
+
<div class="col-md-9 mx-auto">
|
182
|
+
<div class="row">
|
183
|
+
{%- endif -%}
|
184
|
+
<div class="col-md-6 order-0">
|
185
|
+
{%- if featureData.HOW_TO_CONTENT.logoImageUrl -%}
|
186
|
+
<div class="how-to-img-wrapper">
|
187
|
+
<img
|
188
|
+
class="how-to-leftimg"
|
189
|
+
height="180px"
|
190
|
+
width="300px"
|
191
|
+
src="{{featureData.HOW_TO_CONTENT.logoImageUrl}}"
|
192
|
+
loading="lazy"
|
193
|
+
alt="{{featureData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}"
|
194
|
+
{%-
|
195
|
+
if
|
196
|
+
site.crossorigin
|
197
|
+
-%}
|
198
|
+
crossorigin
|
199
|
+
{%-
|
200
|
+
endif
|
201
|
+
-%}
|
202
|
+
/>
|
203
|
+
</div>
|
204
|
+
{%- endif -%}
|
205
|
+
</div>
|
206
|
+
<div class="col-md-6 order-1">
|
207
|
+
<div class="how-to-right">
|
208
|
+
<h3 class="how-to-title text-left">
|
209
|
+
{{featureData.HOW_TO_CONTENT.heading | replace: "$variable",
|
210
|
+
page.value}}
|
211
|
+
</h3>
|
212
|
+
<ol class="how-to-list">
|
213
|
+
{% for data in featureData.HOW_TO_CONTENT.steps %}
|
105
214
|
|
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>
|
215
|
+
<li id="step{{forloop.index}}" class="how-to-list-item">
|
216
|
+
<span>{{forloop.index}}.</span>{{data | replace:
|
217
|
+
"$variable", page.value}}
|
218
|
+
</li>
|
219
|
+
{% endfor %}
|
220
|
+
</ol>
|
221
|
+
</div>
|
222
|
+
</div>
|
223
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en'
|
224
|
+
-%}
|
225
|
+
</div>
|
226
|
+
</div>
|
227
|
+
{%- endif -%}
|
228
|
+
</div>
|
229
|
+
</div>
|
230
|
+
</section>
|
231
|
+
{%- assign showFaqs= true -%} {%- for item in site.noFaqsList -%} {%- if
|
232
|
+
item == page.lang -%} {%- assign showFaqs = false -%} {%- break -%} {%- else
|
233
|
+
-%} {%- assign showFaqs = true -%} {%- endif -%} {%- endfor -%} {%- if
|
234
|
+
showFaqs == true -%} {%- if featureData.FAQ.size>0 -%}
|
235
|
+
<section class="faq-section">
|
236
|
+
<div class="container">
|
237
|
+
<div class="row">
|
238
|
+
<div class="col-md-8 mx-auto">
|
239
|
+
<div class="faq">
|
240
|
+
<h3 class="feature-h1 text-center mb-4">
|
241
|
+
{{featureData.faqheading | default: 'Frequently Asked
|
242
|
+
Questions'}}
|
243
|
+
</h3>
|
244
|
+
<ul class="list-unstyled">
|
245
|
+
{% for data in featureData.FAQ %}
|
246
|
+
<li>
|
247
|
+
<h3 class="faq-question" itemprop="name">
|
248
|
+
{{data.question | replace: "$variable", page.value}}<em
|
249
|
+
style="transform: rotate(-135deg)"
|
250
|
+
>
|
251
|
+
<i></i
|
252
|
+
></em>
|
253
|
+
</h3>
|
254
|
+
<div style="display: block">
|
255
|
+
<p class="faq-answer" itemprop="text">
|
256
|
+
{{data.answer | replace: "$variable", page.value}}
|
257
|
+
</p>
|
258
|
+
</div>
|
259
|
+
</li>
|
260
|
+
{% endfor %}
|
261
|
+
</ul>
|
262
|
+
</div>
|
263
|
+
</div>
|
264
|
+
</div>
|
265
|
+
</div>
|
266
|
+
</section>
|
267
|
+
{%- endif -%} {%- endif -%} {%- include share/socialshare.html -%} {%-
|
268
|
+
include Rating/rating.html -%} {%- include /Usp/usp.html -%} {%- if
|
269
|
+
featureData.display_formats -%}
|
270
|
+
<div class="container compare-table">
|
271
|
+
{%- include fileformat/fileformatdetail.html -%}
|
272
|
+
</div>
|
273
|
+
{%- endif -%} {%- if featureData.compare_formats -%}
|
274
|
+
<div class="container file-detail-table">
|
275
|
+
{%- include fileformat/comparisonfiles.html -%}
|
276
|
+
</div>
|
277
|
+
{%- endif -%} {%- assign langen = "en" -%} {%- if
|
278
|
+
site.data[folder][langen][file].categories -%} {% assign categories=
|
279
|
+
site.data[folder][langen][file].categories %} {%- else -%} {% assign
|
280
|
+
categories= page.categories %} {%- endif -%} {%- if
|
281
|
+
site.data[folder][langen][file].tags -%} {% assign tags=
|
282
|
+
site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
|
283
|
+
page.tags %} {%- endif -%} {%- if categories.size> 0 or tags.size>0-%} {%-
|
284
|
+
include section/related_categories_post.html -%} {%- else -%} {%- include
|
285
|
+
section/recent_posts.html -%} {% endif %} {%- if site.customblogdata -%} {%-
|
286
|
+
if categories.size> 0 or tags.size>0-%} {%- include
|
287
|
+
customblog/relatedposts.html -%} {%- else -%} {%- include
|
288
|
+
customblog/recentposts.html -%} {% endif %} {%- endif -%} {% include
|
289
|
+
footer/index.html %} {% include script.html %}
|
290
|
+
</body>
|
291
|
+
</html>
|
@@ -1,192 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
<div class="container mt-4">
|
8
|
-
<div class="col-md-11 mx-auto">
|
9
|
-
<div class="row">
|
10
|
-
{%- if site.photoeffectsemd -%}
|
11
|
-
<div class="col-md-9">
|
12
|
-
<div class="row" id="upper-panel">
|
13
|
-
<div class="col-12 ">
|
14
|
-
<div>
|
15
|
-
<div>
|
16
|
-
<div>
|
17
|
-
{%- assign frameh1 = fileData.H1 | replace: "$variable", page.value -%}
|
18
|
-
<h1 class="frame-h1">{%- for word in frameh1-%}
|
19
|
-
{%- if forloop.first == true -%}
|
20
|
-
{{word | capitalize }}
|
21
|
-
{%- else -%}
|
22
|
-
{{word}}
|
23
|
-
{%- endif -%}
|
24
|
-
{%- endfor -%}</h1>
|
25
|
-
</div>
|
26
|
-
{%- assign frameh2 = fileData.H2 | replace: "$variable", page.value -%}
|
27
|
-
<h2 class="frame-h2">
|
28
|
-
{%- for word in frameh2 -%}
|
29
|
-
{%- if forloop.first == true -%}
|
30
|
-
{{word | capitalize }}
|
31
|
-
{%- else -%}
|
32
|
-
{{word}}
|
33
|
-
{%- endif -%}
|
34
|
-
{%- endfor -%}
|
35
|
-
</h2>
|
36
|
-
</div>
|
37
|
-
</div>
|
38
|
-
</div>
|
39
|
-
{%- if page.typeOfPage == "category" -%}
|
40
|
-
{%- assign photoEffectsData = site.data.photo-categories -%}
|
41
|
-
{%- for item in photoEffectsData -%}
|
42
|
-
{%- if item.category == page.category -%}
|
43
|
-
{%- for i in item.features -%}
|
44
|
-
<div class="col-md-3 px-0 mb-0">
|
45
|
-
<a class="photo-card" href="{{i.link}}">
|
46
|
-
<div>
|
47
|
-
<img src="{{i.image}}" alt="{{i.name}}" height="320px" width="320px">
|
48
|
-
<div class="photo-effect-feature-name">
|
49
|
-
{{i.name}}
|
50
|
-
</div>
|
51
|
-
</div>
|
52
|
-
</a>
|
53
|
-
</div>
|
54
|
-
{%- endfor -%}
|
55
|
-
{%- endif -%}
|
56
|
-
{%- endfor -%}
|
57
|
-
{%- else -%}
|
58
|
-
{%- assign photoEffectsData = site.data.photoeffects -%}
|
59
|
-
{%- for item in photoEffectsData -%}
|
60
|
-
|
61
|
-
<div class="col-md-3 px-0">
|
62
|
-
<a class="photo-card" href="{{item.url}}">
|
63
|
-
<div>
|
64
|
-
<img src="{{item.image}}" alt="{{item.featureName}}" height="320px" width="320px">
|
65
|
-
<div class="photo-effect-feature-name">
|
66
|
-
{{item.featureName}}
|
67
|
-
</div>
|
68
|
-
</div>
|
69
|
-
</a>
|
70
|
-
|
71
|
-
</div>
|
72
|
-
{%- endfor -%}
|
73
|
-
{%- endif -%}
|
74
|
-
|
75
|
-
</div>
|
76
|
-
</div>
|
77
|
-
<div class="col-md-3">
|
78
|
-
<div class="categories-section">
|
79
|
-
</div>
|
80
|
-
<div class="categories-list">
|
81
|
-
<ul class="pl-0">
|
82
|
-
{%- for item in site.data.photo-categories -%}
|
83
|
-
{%- if page.category == item.category -%}
|
84
|
-
<li class="active-cat">
|
85
|
-
<a class="category-link " href="{{item.link}}">{{item.category}}</a>
|
86
|
-
</li>
|
87
|
-
{%- else -%}
|
88
|
-
<li>
|
89
|
-
<a class="category-link" href="{{item.link}}">{{item.category}}</a>
|
90
|
-
</li>
|
91
|
-
{%- endif -%}
|
92
|
-
{%- endfor -%}
|
93
|
-
</ul>
|
94
|
-
|
95
|
-
</div>
|
96
|
-
|
97
|
-
</div>
|
98
|
-
{%- else -%}
|
99
|
-
|
100
|
-
|
101
|
-
<div class="col-md-3">
|
102
|
-
|
103
|
-
<div class="categories-section">
|
104
|
-
</div>
|
105
|
-
<div class="categories-list">
|
106
|
-
<ul class="pl-0">
|
107
|
-
{%- for item in site.data.photo-categories -%}
|
108
|
-
{%- if page.category == item.category -%}
|
109
|
-
<li class="active-cat">
|
110
|
-
<a class="category-link " href="{{item.link}}">{{item.category}}</a>
|
111
|
-
</li>
|
112
|
-
{%- else -%}
|
113
|
-
<li>
|
114
|
-
<a class="category-link" href="{{item.link}}">{{item.category}}</a>
|
115
|
-
</li>
|
116
|
-
{%- endif -%}
|
117
|
-
{%- endfor -%}
|
118
|
-
</ul>
|
119
|
-
|
120
|
-
</div>
|
121
|
-
|
122
|
-
</div>
|
123
|
-
<div class="col-md-9">
|
124
|
-
<div class="row" id="upper-panel">
|
125
|
-
<div class="col-12 ">
|
126
|
-
<div>
|
127
|
-
<div>
|
128
|
-
<div>
|
129
|
-
{%- assign frameh1 = fileData.H1 | replace: "$variable", page.value -%}
|
130
|
-
<h1 class="frame-h1">{%- for word in frameh1-%}
|
131
|
-
{%- if forloop.first == true -%}
|
132
|
-
{{word | capitalize }}
|
133
|
-
{%- else -%}
|
134
|
-
{{word}}
|
135
|
-
{%- endif -%}
|
136
|
-
{%- endfor -%}</h1>
|
137
|
-
</div>
|
138
|
-
{%- assign frameh2 = fileData.H2 | replace: "$variable", page.value -%}
|
139
|
-
<h2 class="frame-h2">
|
140
|
-
{%- for word in frameh2 -%}
|
141
|
-
{%- if forloop.first == true -%}
|
142
|
-
{{word | capitalize }}
|
143
|
-
{%- else -%}
|
144
|
-
{{word}}
|
145
|
-
{%- endif -%}
|
146
|
-
{%- endfor -%}
|
147
|
-
</h2>
|
148
|
-
</div>
|
149
|
-
</div>
|
150
|
-
</div>
|
151
|
-
{%- if page.typeOfPage == "category" -%}
|
152
|
-
{%- assign photoEffectsData = site.data.photo-categories -%}
|
153
|
-
{%- for item in photoEffectsData -%}
|
154
|
-
{%- if item.category == page.category -%}
|
155
|
-
{%- for i in item.features -%}
|
156
|
-
<div class="col-md-3 px-0 mb-0">
|
157
|
-
<a class="photo-card" href="{{i.link}}">
|
158
|
-
<div>
|
159
|
-
<img src="{{i.image}}" alt="{{i.name}}" height="320px" width="320px">
|
160
|
-
<div class="photo-effect-feature-name">
|
161
|
-
{{i.name}}
|
162
|
-
</div>
|
163
|
-
</div>
|
164
|
-
</a>
|
165
|
-
</div>
|
166
|
-
{%- endfor -%}
|
167
|
-
{%- endif -%}
|
168
|
-
{%- endfor -%}
|
169
|
-
{%- else -%}
|
170
|
-
{%- assign photoEffectsData = site.data.photoeffects -%}
|
171
|
-
{%- for item in photoEffectsData -%}
|
172
|
-
<div class="col-md-3 px-0">
|
173
|
-
<a class="photo-card" href="{{item.url}}">
|
174
|
-
<div>
|
175
|
-
<img src="{{item.image}}" alt="{{item.featureName}}" height="320px" width="320px">
|
176
|
-
<div class="photo-effect-feature-name">
|
177
|
-
{{item.featureName}}
|
178
|
-
</div>
|
179
|
-
</div>
|
180
|
-
</a>
|
181
|
-
|
182
|
-
</div>
|
183
|
-
{%- endfor -%}
|
184
|
-
{%- endif -%}
|
185
|
-
|
186
|
-
</div>
|
187
|
-
</div>
|
188
|
-
{%- endif -%}
|
189
|
-
|
190
|
-
</div>
|
191
|
-
</div>
|
192
|
-
</div>
|
1
|
+
https://cssgradient.io https://cssgradient.io/color-shades/
|
2
|
+
https://cssgradient.io/shades-of-blue/ https://cssgradient.io/shades-of-red/
|
3
|
+
https://cssgradient.io/shades-of-green/
|
4
|
+
https://cssgradient.io/gradient-backgrounds/ https://cssgradient.io/swatches/
|
5
|
+
https://cssgradient.io/resources/
|
data/assets/.DS_Store
CHANGED
Binary file
|
data/assets/css/tools.css
CHANGED
@@ -1300,10 +1300,12 @@ ol li::marker {
|
|
1300
1300
|
text-align: left;
|
1301
1301
|
width: 100%;
|
1302
1302
|
}
|
1303
|
-
.video-h1
|
1303
|
+
.video-h1,
|
1304
|
+
.audio-h1 {
|
1304
1305
|
font-weight: 600;
|
1305
1306
|
font-size: 53px;
|
1306
1307
|
}
|
1307
|
-
.video-h2
|
1308
|
+
.video-h2,
|
1309
|
+
.audio-h2 {
|
1308
1310
|
font-size: 22px;
|
1309
1311
|
}
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" width="727.48999" height="721.33535" viewBox="0 0 727.48999 721.33535" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M463.813,126.50433V582.27464H758.516v-466.796A361.626,361.626,0,0,0,463.813,126.50433Z" transform="translate(-236.255 -89.33232)" fill="#fff"/><path d="M434.89974,145.4129V583.56956H535.0988l-1.79046-24.80133-9.852-271.52948h198.402l-9.852,271.52948-1.79047,24.80133H811.53713V153.3459c-1.859-1.37074-3.7266-2.72433-5.61991-4.0522-.36837-.257,1.25468-7.52257.87773-7.77957a326.27946,326.27946,0,0,0-70.19759-37.292l-7.33719,80.7015H694.881V98.87722c-2.24453-.55687-4.48907-1.07944-6.75076-1.56777v.00009a87.61413,87.61413,0,0,1-87.61412,87.61413H558.30669V95.03924c-2.25311.4112-4.50622.84812-6.74218,1.31072v88.57371h-35.5186l-5.60276-77.291A325.75,325.75,0,0,0,441.642,140.98375c-.74537.47975-1.49921.951-2.24459,1.44782Q437.13579,143.89653,434.89974,145.4129ZM694.881,191.67443h33.89085l-5.28579,73.07607H694.881Zm-136.5743,0H688.13023V264.7505H637.83365v-1.44782a5.29229,5.29229,0,0,0-5.29437-5.29436H611.65305a5.29416,5.29416,0,0,0-5.30294,5.29436v1.44782H558.30669ZM521.82,264.7505l-5.2858-73.07607h35.03028V264.7505Z" transform="translate(-236.255 -89.33232)" fill="#f2f2f2"/><path d="M283.4007,570.49317c.00852.02573.0171.04288.02567.06855.06.17993.11995.3427.1885.52257v.00858q4.382,12.31073,9.62925,24.21021l660.71743-.71965q5.3201-12.1436,9.76629-24.73278a.15842.15842,0,0,0,.01716-.05992Z" transform="translate(-236.255 -89.33232)" fill="#ccc"/><path d="M531.50311,445.48861a15.43646,15.43646,0,0,1-21.19426,10.53923L473.06939,496.307l-6.82031-27.67819,36.40881-34.00651A15.52015,15.52015,0,0,1,531.503,445.48857Z" transform="translate(-236.255 -89.33232)" fill="#ffb6b6"/><path d="M489.13229,481.19226l-50.5964,56.7903-.4112-.07713c-.17135-.02567-4.00933-.711-10.09189-1.82476-21.99992-4.02643-73.31592-13.63-86.04645-18.07625a45.49735,45.49735,0,0,1-19.13854-12.5163c1.31929-7.18768,2.73286-12.56775,4.12928-15.18924,1.01947-1.91041.831-4.40337.87379-7.2476a22.91445,22.91445,0,0,1,11.28271-3.99223,163.87217,163.87217,0,0,1,74.18119,11.89951l13.34733,5.51711.54829-.40262,45.07929-33.08555.3084-.22275,15.50615,17.27952Z" transform="translate(-236.255 -89.33232)" fill="#5c5ce0"/><path d="M594.72852,809.53772c-.67677-.0514-1.345-.11138-2.02179-.17135q-12.7348-1.06653-25.21252-3.01553l-9.1324-21.26318-4.3777-10.19469,16.52563-7.102,10.743-4.609,5.10587,17.54509,2.11606,7.29049L593.47773,805.22Z" transform="translate(-236.255 -89.33232)" fill="#ffb6b6"/><path d="M409.59927,710.59245v29.86437q7.51746,5.55139,15.33486,10.70869V710.59245Z" transform="translate(-236.255 -89.33232)" fill="#cacaca"/><path d="M355.73028,691.67661q6.46382,7.17056,13.313,13.97269a360.81213,360.81213,0,0,0,34.165,29.98433h68.36425a12.74708,12.74708,0,0,0,9.58642-4.34345l.00857-.02568a12.61646,12.61646,0,0,0,2.87854-5.65422l.00852-.01709a13.109,13.109,0,0,0,.2913-2.74144V704.45848a12.79042,12.79042,0,0,0-12.77335-12.78187Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><path d="M327.56215,619.88558l7.41043,31.74911a66.73951,66.73951,0,0,0-.71965,13.91272q5.26873,7.06773,10.87147,13.85274,5.1659,6.25824,10.60588,12.27646,6.46382,7.17056,13.313,13.97269c11.89093,3.73518,25.9065,5.26012,40.556,5.36292,5.05452.04282,10.18612-.09422,15.33486-.36837,20.87765-1.0966,9.44074-4.44625,26.73742-7.92443,4.57477-.9081,8.87535-1.83334,12.83327-2.73286,7.49608-1.68772,13.7671-3.264,18.30762-4.4634,5.11445-1.33644,23.5737-10.55744,23.5737-10.55744l14.56381,31.69772,12.85043,29.98432,16.92224,37.87746q3.26406.29553,6.53659.49689,3.46962.24417,6.94778.394c1.83334.09428,3.6581.16277,5.5.21417l.62537.19708.514-.16278,8.25855-2.63006,2.78426-.88242,10.01476-3.18688s-2.236-7.04206-6.15106-18.78731c-1.43924-4.3092-11.63393-36.16969-22.2998-63.98655-3.16115-8.25856-6.43373-16.637-9.80054-24.97268-2.75858-6.845-5.56851-13.6643-8.41275-20.38933-4.94314-11.65961-28.8278-17.94777-56.95312-21.246-1.43066-.16277-2.8699-.32555-4.31772-.47975-14.33249-1.50779-29.53883-2.28736-43.76-2.64721-7.11914-.17987,18.56461-.24842,12.17365-.257q-3.097,0-6.02259.01715h-.00852c-5.2687.02567-10.11762.1028-14.384.18844-.831.01715-1.63626.04283-2.42446.06h-.00852c-.53115.00857-1.05377.02573-1.56777.03425-9.32942.2399-15.05213.5312-15.05213.5312l-2.21887-17.40805-.454-3.51248-.42835-3.34108v-.00858l-.0514-.41977-.35127-.00857-6.16816-.12-51.8472-1.0109-22.08355-.93582Z" transform="translate(-236.255 -89.33232)" fill="#2f2e41"/><path d="M496.1058,684.109c-6.24534,10.67444-11.11131,30.90952-17.51085,40.93286-12.27645,19.24139-19.47266,29.7359-27.97963,41.57543q-13.18455-7.18343-25.67518-15.45481-6.66937-4.39482-13.13315-9.10662l5.09735-11.62536,2.89563-5.697,13.00462-25.60663,14.581-28.70785,5.07162,2.36448Z" transform="translate(-236.255 -89.33232)" fill="#2f2e41"/><path d="M934.36054,537.42539a5.45248,5.45248,0,0,0-4.17483-7.08027,5.01447,5.01447,0,0,0-.86114-.10691l-34.91076-.90149a5.60921,5.60921,0,0,0-4.17558,1.80166,7.011,7.011,0,0,0-1.48737-.15469,8.27682,8.27682,0,1,0-.41541,16.54842,8.39055,8.39055,0,0,0,3.63061-.746l3.21165,34.34251a5.42158,5.42158,0,0,0,5.12376,3.98963l22.69542.58407a5.49673,5.49673,0,0,0,5.297-3.71036Zm-45.9527,7.73807a5.92018,5.92018,0,0,1,.2772-11.83707c.11089.00029.20871.05284.3196.05314a5.574,5.574,0,0,0,.01745,2.891l2.28535,8.18378A5.573,5.573,0,0,1,888.40784,545.16346Z" transform="translate(-236.255 -89.33232)" fill="#ccc"/><path d="M930.18571,530.34512c-.74377,4.25274-9.10589,7.24239-19.16071,6.72274-9.24607-.426-16.80618-3.67268-18.19124-7.52051a5.16176,5.16176,0,0,1,1.58005-.21063l34.91076.90149A5.01447,5.01447,0,0,1,930.18571,530.34512Z" transform="translate(-236.255 -89.33232)" fill="#fff"/><path d="M711.619,485.40612v87.86264H773.1725V485.40612a2.9539,2.9539,0,0,0-2.08176-2.82708,2.71964,2.71964,0,0,0-.88237-.13705H714.59169A2.967,2.967,0,0,0,711.619,485.40612ZM735.64069,515.596a6.57114,6.57114,0,0,1,13.14173,0v10.1947a6.57094,6.57094,0,0,1-13.14173,0Z" transform="translate(-236.255 -89.33232)" fill="#ccc"/><path d="M711.43054,570.45883v8.47272a1.66732,1.66732,0,0,0,1.65341,1.662h58.62363a1.66174,1.66174,0,0,0,1.65342-1.662v-8.47272Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><path d="M614.78672,353.02965V513.45431a7.71637,7.71637,0,0,0,7.71026,7.71025H860.22984a7.71633,7.71633,0,0,0,7.71026-7.71025V353.02965a7.72008,7.72008,0,0,0-7.71026-7.70173H622.497A7.72012,7.72012,0,0,0,614.78672,353.02965Z" transform="translate(-236.255 -89.33232)" fill="#ccc"/><path d="M620.36382,355.02571V511.47534a4.12784,4.12784,0,0,0,4.1207,4.1207H858.25088a4.12781,4.12781,0,0,0,4.1207-4.1207V355.02571a4.12967,4.12967,0,0,0-4.1207-4.12928H624.48452A4.1297,4.1297,0,0,0,620.36382,355.02571Z" transform="translate(-236.255 -89.33232)" fill="#fff"/><path d="M668.74686,580.01952a2.5259,2.5259,0,0,0,1.98754.95092H809.81029a2.55916,2.55916,0,0,0,2.50154-3.08408l-2.15889-10.25462a2.56379,2.56379,0,0,0-1.59344-1.85906,2.4797,2.4797,0,0,0-.9081-.1713H672.88472a2.47947,2.47947,0,0,0-.9081.1713,2.56354,2.56354,0,0,0-1.59344,1.85906l-2.15889,10.25462A2.55719,2.55719,0,0,0,668.74686,580.01952Z" transform="translate(-236.255 -89.33232)" fill="#f2f2f2"/><path d="M850.66442,372.44808H631.93018a.87005.87005,0,0,1,0-1.73968H850.66442a.87005.87005,0,0,1,0,1.73968Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><ellipse cx="410.56469" cy="271.72352" rx="5.0977" ry="5.21131" fill="#3f3d56"/><ellipse cx="428.17493" cy="271.72352" rx="5.0977" ry="5.21131" fill="#3f3d56"/><ellipse cx="445.78517" cy="271.72352" rx="5.0977" ry="5.21131" fill="#3f3d56"/><path d="M840.06013,357.1332H827.55241a.9469.9469,0,0,0,0,1.89331h12.50772a.94674.94674,0,0,0,0-1.89331Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><path d="M840.06013,360.6885H827.55241a.94688.94688,0,0,0,0,1.89326h12.50772a.94672.94672,0,0,0,0-1.89326Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><path d="M840.06013,364.24376H827.55241a.9469.9469,0,0,0,0,1.89331h12.50772a.94674.94674,0,0,0,0-1.89331Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><rect x="490.5228" y="330.40498" width="43.45085" height="9.29145" rx="3.26417" fill="#5c5ce0"/><rect x="468.4556" y="348.98789" width="87.58526" height="9.29145" rx="3.26417" fill="#5c5ce0"/><rect x="468.4556" y="367.5708" width="87.58526" height="9.29145" rx="3.26417" fill="#5c5ce0"/><ellipse cx="361.36915" cy="490.68826" rx="20.13233" ry="6.42521" fill="#3f3d56"/><ellipse cx="361.36915" cy="486.40479" rx="20.13233" ry="6.42521" fill="#3f3d56"/><path d="M599.12416,580.04286l-3-.04492.82764-56.01856a52.25793,52.25793,0,0,0-25.36914-45.5l-57.25928-34.22607,1.53906-2.5752,57.25928,34.22705A55.26514,55.26514,0,0,1,599.9518,524.0243Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><rect x="272.27287" y="320.20596" width="14.56381" height="59.96865" rx="7.2819" fill="#5c5ce0"/><path d="M510.71352,482.01747a21.89,21.89,0,0,1-21.85743-21.61524l-.24707-23.00537,3-.03222.24707,23.00634a18.82625,18.82625,0,0,0,30.47608,14.585l20.41553-16.083,1.85644,2.35742-20.41553,16.083A21.73337,21.73337,0,0,1,510.71352,482.01747Z" transform="translate(-236.255 -89.33232)" fill="#3f3d56"/><ellipse cx="256.85236" cy="345.05011" rx="8.9953" ry="21.84572" fill="#3f3d56"/><path d="M429.67769,551.9724c-.77962-4.90032-1.30219-10.27182-1.64489-15.89173-.8053-12.859-.72817-27.03729-.8224-40.00762-.03966-5.89449-.50638-12.33124-1.11342-18.30729A34.49091,34.49091,0,0,0,409.109,451.28817a34.91683,34.91683,0,0,1-8.59328-7.00234c-1.33644-1.49064-1.49922-4.93457-1.67057-8.57553-.2056-4.42909-.41977-9.021-2.79278-11.38545l-.1028-.1028-.1371-.05145c-9.96337-3.31541-26.79739-1.1651-31.80051-.00853l-.21418.0514-.137.1713c-2.06466,2.73286-1.95329,7.102-1.84191,11.32553.09422,3.79516.18845,7.38471-1.49064,8.46416-1.3022.83954-2.55294,1.63626-3.76091,2.40731-14.81223,9.44931-22.24834,14.19544-27.697,29.62452a20.41133,20.41133,0,0,0-1.01947,6.845c-.04282,2.84423.14568,5.33719-.87379,7.2476-1.39642,2.62149-2.81,8.00156-4.12928,15.18924-6.91353,37.77166-11.01708,125.6,5.87692,127.65613,1.31929.16278-1.37069,2.80993-2.29594,4.1378-1.32787,1.91047-2.46728,3.55531-1.80761,4.81462.44544.8567,1.61059,1.25937,3.64953,1.25937,7.6931,0,86.77461-11.60821,89.01915-15.78888.14568-.27415.16277.23985,0,0C454.36759,622.72681,434.74073,584.00419,429.67769,551.9724Z" transform="translate(-236.255 -89.33232)" fill="#5c5ce0"/><path d="M518.9264,589.80122a15.64019,15.64019,0,0,0-23.9241,1.67224L441.79653,575.402l8.24906,27.67927L499.306,614.09955a15.725,15.725,0,0,0,19.62031-24.29824Z" transform="translate(-236.255 -89.33232)" fill="#ffb6b6"/><path d="M454.69859,605.6509l-73.05952-13.40884c-.2959-.7643-29.6264-76.68827-33.25039-93.74317a46.16377,46.16377,0,0,1,3.66143-30.48544l.12872-.2265.23965-.10339a23.42664,23.42664,0,0,1,28.21808,7.88882,165.93665,165.93665,0,0,1,28.64761,70.52384l2.2331,14.45659,34.81551,10.11966Z" transform="translate(-236.255 -89.33232)" fill="#5c5ce0"/><path d="M430.76184,400.48473a41.39522,41.39522,0,1,1,2.10341-35.26571c.18945.47375.36005.9475.53054,1.44021A41.33879,41.33879,0,0,1,430.76184,400.48473Z" transform="translate(-236.255 -89.33232)" fill="#ffb6b6"/><path d="M436.712,366.65923c-1.78129-4.98383-1.00428-2.3877-2.80454-7.35256,1.175,4.39638-.68217,6.85985-.51168,7.35256H384.10712V338.007c14.43992-5.7229,28.55749-10.593,37.08494,0a28.65344,28.65344,0,0,1,28.65221,28.65221Z" transform="translate(-236.255 -89.33232)" fill="#2f2e41"/><path d="M396.96621,445.44883c-.03794-.53053-.09473-1.08015-.1706-1.61069a55.80278,55.80278,0,0,0-3.20254-11.36993c-1.42124-3.9984-2.86145-8.01588-4.30154-12.01428a34.39714,34.39714,0,0,1-1.61081,21.8303c-8.319-6.48082-4.32-16.23645-13.94709-21.29964-25.83606-13.588-34.77652-35.54691-27.54945-69.27322,2.57008-11.99373,17.54063-23.98746,43.69144-23.98746,26.1699,0,37.83532,13.01178,38.34688,39.16271C396.0077,374.46657,403.04905,442.79592,396.96621,445.44883Z" transform="translate(-236.255 -89.33232)" fill="#2f2e41"/><circle cx="112.53085" cy="246.52274" r="17.10231" fill="#2f2e41"/><path d="M340.78568,330.88513c-2.91663,3.39566-7.48324,4.71559-11.60272,6.48264a48.81108,48.81108,0,0,0-28.35742,35.65964c-1.13892,6.35484-.98994,12.93324-2.78889,19.12844-1.7883,6.19521-6.21645,12.27334-12.57136,13.34846-4.30042.73448-8.6115-.92608-12.65646-2.5654q-3.33714-1.34118-6.67423-2.69307,3.4808-8.734,6.95094-17.46794a88.5218,88.5218,0,0,1-12.89068,15.08354q-11.95927-4.82207-23.93986-9.64413c19.65009.07452,16.297-19.00071,20.69325-38.1398,2.41636-10.51694,22.99246-17.63823,27.02683-27.64425a30.61019,30.61019,0,0,1,55.52257-2.78889C343.532,321.25172,343.6491,327.5321,340.78568,330.88513Z" transform="translate(-236.255 -89.33232)" fill="#2f2e41"/><path d="M407.76941,326.81186h0a6.42521,6.42521,0,0,1,6.42521,6.42521v47.78668a6.4252,6.4252,0,0,1-6.4252,6.4252h0a6.42521,6.42521,0,0,1-6.42521-6.42521V333.23707a6.4252,6.4252,0,0,1,6.4252-6.4252Z" transform="translate(-102.24169 -200.04337) rotate(18.45374)" fill="#fff"/><circle cx="160.55577" cy="299.30341" r="17.1339" fill="#fff"/><circle cx="160.55577" cy="299.30341" r="4.28347" fill="#5c5ce0"/><path d="M644.33247,803.19771c.92,2.23,1.93,4.46,2.9,6.7l-.45.03c-.15,0-.29.02-.44.03q-10.605.66-21.4.7c-.33.01-.65.01-.98.01,0-.02.01-.03.01-.05a3.61393,3.61393,0,0,0,2.62-6.26c-.1-.37-.16-.63-.25-.99a2.43872,2.43872,0,0,1,.1-.24A9.6981,9.6981,0,0,1,644.33247,803.19771Z" transform="translate(-236.255 -89.33232)" fill="#f2f2f2"/><path d="M710.2925,770.53767c-.01.08-.02.15-.03.23a31.31177,31.31177,0,0,0-3.69,1.78c-.69.38-1.36.79-2.01,1.22a4.90172,4.90172,0,0,0,1.98005,8.92l.1.02c.07.01.13.02.2.03a47.83017,47.83017,0,0,1-18.62,22.12c-.4.08-.79.15-1.19.22-2.02.37-4.03.71-6.05,1.02q-10.53,1.71-21.27,2.76a113.68664,113.68664,0,0,0,2.16-22.02,109.34577,109.34577,0,0,0-.68994-12.38995c-.38-3.37-.9-6.73005-1.58-10.05q-.51-2.52009-1.14-5.03a117.58472,117.58472,0,0,0-9.76-25.63,114.17807,114.17807,0,0,0-12.19-18.68,30.90744,30.90744,0,0,1-12.88-13.37,23.39212,23.39212,0,0,1-2.15-6.46c.62.09,1.26.14,1.88995.18.19.01.4.02.6.03h.07a3.57617,3.57617,0,0,0,2.94-5.83c-.27-.33-.54-.67-.81-1-.41-.51-.84-1.02-1.25-1.53a1.73506,1.73506,0,0,1-.13-.15c-.47-.59-.95-1.17-1.42005-1.75a10.22482,10.22482,0,0,1,3.39-3.28c4.74-2.78,11.28-.86005,14.71,3.43,3.43,4.29,4.08,10.31,2.89,15.66a41.50555,41.50555,0,0,1-5.74,12.8c.26.33.52.64.78.97a116.36011,116.36011,0,0,1,11.45,17.87c.27.5.53,1,.78,1.51a48.69938,48.69938,0,0,1,2.91-22.63c2.78-6.71,8-12.37,12.59-18.17,5.52-6.97,16.84-3.93,17.81,4.91.01.08.02.17.03.25-.68.39-1.35.8-2,1.23a4.90065,4.90065,0,0,0,1.97,8.92005l.1.02a49.04027,49.04027,0,0,1-26.28,38.75c-.41.21-.8.42-1.2.61a111.84566,111.84566,0,0,1,3.23005,10.76c.44,1.7.82,3.41,1.17,5.13a116.76273,116.76273,0,0,1,2.04,14.41,114.21,114.21,0,0,1-.08,18.31l.03-.21a30.01374,30.01374,0,0,1,10.23-17.31c7.87994-6.47,19-8.85,27.5-14.05A5.62028,5.62028,0,0,1,710.2925,770.53767Z" transform="translate(-236.255 -89.33232)" fill="#f2f2f2"/></svg>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appscms-tools-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vivek-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -2428,6 +2428,7 @@ files:
|
|
2428
2428
|
- _includes/share/socialshare.html
|
2429
2429
|
- _includes/staticfooter.html
|
2430
2430
|
- _layouts/aboutUs.html
|
2431
|
+
- _layouts/audio.html
|
2431
2432
|
- _layouts/batch.html
|
2432
2433
|
- _layouts/blog-1.html
|
2433
2434
|
- _layouts/blog.html
|
@@ -2590,6 +2591,7 @@ files:
|
|
2590
2591
|
- assets/fonts/Calligraphy.ttf
|
2591
2592
|
- assets/guaranty.svg
|
2592
2593
|
- assets/homeimages/3_shop_posters-main.png
|
2594
|
+
- assets/images/.DS_Store
|
2593
2595
|
- assets/images/3_shop_posters.png
|
2594
2596
|
- assets/images/Ankita.webp
|
2595
2597
|
- assets/images/Anushka.webp
|
@@ -2602,6 +2604,7 @@ files:
|
|
2602
2604
|
- assets/images/add.svg
|
2603
2605
|
- assets/images/addimg.svg
|
2604
2606
|
- assets/images/alka.webp
|
2607
|
+
- assets/images/audio-upload.svg
|
2605
2608
|
- assets/images/avatar.png
|
2606
2609
|
- assets/images/balark.jpeg
|
2607
2610
|
- assets/images/bulb.png
|