appscms-tools-theme 2.9.5 → 2.9.7
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/footer/en/data.json +2 -0
- data/_includes/footer/index.html +13 -8
- data/_includes/staticfooter.html +4 -2
- data/_layouts/batch.html +1 -5
- data/_layouts/feature-1.html +7 -5
- data/_layouts/frame.html +1 -213
- data/_layouts/photo-effects-home.html +4 -6
- data/assets/css/frame.css +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11bfc220fd31107ebc6a458b521a82ce4421ee8bd9212b86466a2e4dac1b9f20
|
|
4
|
+
data.tar.gz: 44c0b69043da898afcdb6f07d9bd307e2e0221c34a2c454bed7bf37e23942432
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a31dab6031ccadf7ee986da1385f89a5e33e91a2cf8686a067c75356040dada152bfdf5aba6778c3f655eb9076e7fdd7e2fa9177200de093166ded2305f1574
|
|
7
|
+
data.tar.gz: 3f2fba6436367b17a5f30fc002d6dd7676f23474804b5c220ff233ec42d084fe4dc8f1ace6455a15d407a9909485d5229642506617265a76fe8bf266b394907f
|
data/_data/footer/en/data.json
CHANGED
data/_includes/footer/index.html
CHANGED
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
<ul class="footer-ul">
|
|
15
15
|
{% for data in dataToShow.footer1 %}
|
|
16
16
|
<div class="footer1-options d-flex align-items-center footer_hvr px-3" style="gap: 10px">
|
|
17
|
-
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px"
|
|
17
|
+
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px" {%- if
|
|
18
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
18
19
|
<a class="footer-link" href="{{data.url}}">{{data.name}}</a>
|
|
19
20
|
</div>
|
|
20
21
|
{% endfor %}
|
|
@@ -22,7 +23,8 @@
|
|
|
22
23
|
<ul class="footer-ul">
|
|
23
24
|
{% for data in dataToShow.footer2 %}
|
|
24
25
|
<div class="footer1-options d-flex align-items-center footer_hvr px-3" style="gap: 10px">
|
|
25
|
-
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px"
|
|
26
|
+
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px" {%- if
|
|
27
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
26
28
|
<a class="footer-link" href="{{data.url}}">{{data.name}}</a>
|
|
27
29
|
</div>
|
|
28
30
|
{% endfor %}
|
|
@@ -30,7 +32,8 @@
|
|
|
30
32
|
<ul class="footer-ul">
|
|
31
33
|
{% for data in dataToShow.footer3 %}
|
|
32
34
|
<div class="footer1-options d-flex align-items-center footer_hvr px-3" style="gap: 10px">
|
|
33
|
-
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px"
|
|
35
|
+
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px" {%- if
|
|
36
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
34
37
|
<a class="footer-link" href="{{data.url}}">{{data.name}}</a>
|
|
35
38
|
</div>
|
|
36
39
|
{% endfor %}
|
|
@@ -38,7 +41,8 @@
|
|
|
38
41
|
<ul class="footer-ul">
|
|
39
42
|
{% for data in dataToShow.footer4 %}
|
|
40
43
|
<div class="footer1-options d-flex align-items-center footer_hvr px-3" style="gap: 10px">
|
|
41
|
-
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px"
|
|
44
|
+
<img src="{{data.logo}}" alt="footer-feature-logo" width="20px" height="20px" {%- if
|
|
45
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
42
46
|
<a class="footer-link" href="{{data.url}}">{{data.name}}</a>
|
|
43
47
|
</div>
|
|
44
48
|
{% endfor %}
|
|
@@ -266,9 +270,10 @@
|
|
|
266
270
|
{%- endif -%}
|
|
267
271
|
<div class="footer-wrapper">
|
|
268
272
|
{%- if dataToShow.logo -%}
|
|
269
|
-
<div class="footer-logo-cont"
|
|
270
|
-
|
|
271
|
-
{
|
|
273
|
+
<div class="footer-logo-cont">
|
|
274
|
+
<img loading="lazy" src="{{dataToShow.logo}}" width="{{dataToShow.width | default: logovalue}}"
|
|
275
|
+
height="{{dataToShow.height | default: logovalue}}" title="logo" class="footer-logo" {%- if
|
|
276
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
272
277
|
<div class="footer-title">{{dataToShow.heading}}</div>
|
|
273
278
|
</div>
|
|
274
279
|
{%- endif -%}
|
|
@@ -531,4 +536,4 @@
|
|
|
531
536
|
</div>
|
|
532
537
|
{%- endif -%}
|
|
533
538
|
</footer>
|
|
534
|
-
{%- endif -%}
|
|
539
|
+
{%- endif -%}
|
data/_includes/staticfooter.html
CHANGED
|
@@ -12,8 +12,10 @@
|
|
|
12
12
|
{%- endif -%}
|
|
13
13
|
<div class="footer-wrapper">
|
|
14
14
|
{%- if dataToShow.logo -%}
|
|
15
|
-
<div class="footer-logo-cont"
|
|
16
|
-
|
|
15
|
+
<div class="footer-logo-cont">
|
|
16
|
+
<img width="{{dataToShow.width | default: logovalue}}"
|
|
17
|
+
height="{{dataToShow.height | default: logovalue}}" loading="lazy" src="{{dataToShow.logo}}"
|
|
18
|
+
title="logo" class="footer-logo" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
17
19
|
<div class="footer-title">{{dataToShow.heading}}</div>
|
|
18
20
|
</div>
|
|
19
21
|
{%- endif -%}
|
data/_layouts/batch.html
CHANGED
|
@@ -9,11 +9,7 @@ layout: feature
|
|
|
9
9
|
<img src="/assets/images/spinner.gif" alt="loading...">
|
|
10
10
|
<p>Please Wait ,Loading Your file </p>
|
|
11
11
|
</div>
|
|
12
|
-
|
|
13
|
-
<img loading="lazy" class="trust-img" src="/assets/images/together_forever.png" alt="trust">
|
|
14
|
-
<p class="text-white my-2">Thanks for your patience</p>
|
|
15
|
-
<button class="btn" id="download-zip">Download</button>
|
|
16
|
-
</div> -->
|
|
12
|
+
|
|
17
13
|
<div class="file-input">
|
|
18
14
|
<div class="mb-4 d-flex justify-content-center">
|
|
19
15
|
<svg xmlns="http://www.w3.org/2000/svg" id="img-svg" viewBox="0 0 96 60">
|
data/_layouts/feature-1.html
CHANGED
|
@@ -50,11 +50,12 @@
|
|
|
50
50
|
{%- if page.removeBox != true -%}
|
|
51
51
|
<div class="custom-box" data-color="{{boxColor}}">
|
|
52
52
|
<div style="display: none;" id="file-loader">
|
|
53
|
-
<img src="/spinner.gif" alt="">
|
|
53
|
+
<img src="/spinner.gif" alt="spinner" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
54
54
|
<p>Please Wait ,Loading Your file </p>
|
|
55
55
|
</div>
|
|
56
56
|
<div class="saving-file-download-wrap" style="display: none;">
|
|
57
|
-
<img loading="lazy" class="trust-img" src="/trust.svg" alt="trust"
|
|
57
|
+
<img loading="lazy" class="trust-img" src="/trust.svg" alt="trust" {%- if site.crossorigin -%}
|
|
58
|
+
crossorigin {%- endif -%}>
|
|
58
59
|
<p class="text-white my-2">Thanks for your patience</p>
|
|
59
60
|
<button class="btn" id="download-zip">Download</button>
|
|
60
61
|
</div>
|
|
@@ -62,7 +63,8 @@
|
|
|
62
63
|
<div class="m-auto">
|
|
63
64
|
<div class="d-flex justify-content-center align-items-center">
|
|
64
65
|
<div id="Inputbox" class="boxes" style="background-color: {{boxColor}};">
|
|
65
|
-
<img height="21px" width="21px" src="/assets/images/add.svg" alt="add
|
|
66
|
+
<img height="21px" width="21px" src="/assets/images/add.svg" alt="add" {%- if
|
|
67
|
+
site.crossorigin -%} crossorigin {%- endif -%} />
|
|
66
68
|
<span class="ml-3">CHOOSE FILE</span>
|
|
67
69
|
</div>
|
|
68
70
|
<div class="file-pick-dropdown" style="background-color:{{boxColor}}">
|
|
@@ -154,8 +156,8 @@
|
|
|
154
156
|
<div class="col-md-7 mx-auto mb-2">
|
|
155
157
|
<div class="select-img-panel">
|
|
156
158
|
<div id="saving-data" style="display: none;">
|
|
157
|
-
<img loading="lazy" src="/assets/images/loader.gif" alt="saving"> <span
|
|
158
|
-
|
|
159
|
+
<img loading="lazy" src="/assets/images/loader.gif" alt="saving"> <span class="ml-2" {%-
|
|
160
|
+
if site.crossorigin -%} crossorigin {%- endif -%}>Saving your
|
|
159
161
|
images...</span>
|
|
160
162
|
</div>
|
|
161
163
|
<div id="canvas-box-panel">
|
data/_layouts/frame.html
CHANGED
|
@@ -112,219 +112,7 @@ layout: feature
|
|
|
112
112
|
</div>
|
|
113
113
|
{%- else -%}
|
|
114
114
|
|
|
115
|
-
|
|
116
|
-
<div class="categories-section">
|
|
117
|
-
</div>
|
|
118
|
-
<div class="categories-list">
|
|
119
|
-
<ul>
|
|
120
|
-
<li>
|
|
121
|
-
<a class="category-link" href="/">All effects</a>
|
|
122
|
-
</li>
|
|
123
|
-
<li>
|
|
124
|
-
<a class="category-link" href="/fun-photo-effects/christmas">christmas</a>
|
|
125
|
-
</li>
|
|
126
|
-
<li>
|
|
127
|
-
<a class="category-link" href="/fun-photo-effects/valentines_day">Valentine's
|
|
128
|
-
day</a>
|
|
129
|
-
</li>
|
|
130
|
-
<li>
|
|
131
|
-
<a class="category-link" href="/fun-photo-effects/easter">Easter</a>
|
|
132
|
-
</li>
|
|
133
|
-
<li>
|
|
134
|
-
<a class="category-link" href="/fun-photo-effects/cards">cards</a>
|
|
135
|
-
</li>
|
|
136
|
-
<li>
|
|
137
|
-
<a class="category-link" href="/fun-photo-effects/galleries">Galleries</a>
|
|
138
|
-
</li>
|
|
139
|
-
<li>
|
|
140
|
-
<a class="category-link" href="/fun-photo-effects/frames">Frames</a>
|
|
141
|
-
</li>
|
|
142
|
-
<li>
|
|
143
|
-
<a class="category-link" href="/fun-photo-effects/tv">TV</a>
|
|
144
|
-
</li>
|
|
145
|
-
<li>
|
|
146
|
-
<a class="category-link" href="/fun-photo-effects/magazines">Magazines</a>
|
|
147
|
-
</li>
|
|
148
|
-
<li>
|
|
149
|
-
<a class="category-link" href="/fun-photo-effects/movies">Movies</a>
|
|
150
|
-
</li>
|
|
151
|
-
<li>
|
|
152
|
-
<a class="category-link" href="/fun-photo-effects/photography">Photography</a>
|
|
153
|
-
</li>
|
|
154
|
-
<li>
|
|
155
|
-
<a class="category-link" href="/fun-photo-effects/posters">Posters</a>
|
|
156
|
-
</li>
|
|
157
|
-
<li>
|
|
158
|
-
<a class="category-link" href="/fun-photo-effects/misc">Misc</a>
|
|
159
|
-
</li>
|
|
160
|
-
<li>
|
|
161
|
-
<a class="category-link" href="/fun-photo-effects/celebrities">Celebrities</a>
|
|
162
|
-
</li>
|
|
163
|
-
<li>
|
|
164
|
-
<a class="category-link" href="/fun-photo-effects/vintage">Vintage</a>
|
|
165
|
-
</li>
|
|
166
|
-
</ul>
|
|
167
|
-
|
|
168
|
-
</div>
|
|
169
|
-
|
|
170
|
-
</div>
|
|
171
|
-
<div class="col-md-9">
|
|
172
|
-
<div class="row" id="upper-panel">
|
|
173
|
-
<div class="col-md-8">
|
|
174
|
-
<div>
|
|
175
|
-
<div>
|
|
176
|
-
<div>
|
|
177
|
-
<h1 class="frame-h1">Create your own personalized festive message with
|
|
178
|
-
filter snow sign</h1>
|
|
179
|
-
</div>
|
|
180
|
-
<h2 class="frame-h2">Type your text for the effect of snow sign and create
|
|
181
|
-
stunning postcard.</h2>
|
|
182
|
-
</div>
|
|
183
|
-
</div>
|
|
184
|
-
<div class="preview-section">
|
|
185
|
-
<img src="https://d33wubrfki0l68.cloudfront.net/d90f2e076e41e31601d00e53274fd82fdb1e385d/c7fa1/assets/images/snow-sign-main.png"
|
|
186
|
-
alt="">
|
|
187
|
-
</div>
|
|
188
|
-
<h3 id="example-h3">Examples</h3>
|
|
189
|
-
<div class="image-samples" onclick="openExamplesModal()"><img
|
|
190
|
-
src="https://d33wubrfki0l68.cloudfront.net/addd58e5ff7678f3b78c48cb4402f223b86842b4/8a9ad/assets/images/snow-sign1.png"
|
|
191
|
-
alt="sample"><img
|
|
192
|
-
src="https://d33wubrfki0l68.cloudfront.net/caa79e544fb9c16a5375c2450604287aa21b93ce/693ab/assets/images/snow-sign2.png"
|
|
193
|
-
alt="sample"><img
|
|
194
|
-
src="https://d33wubrfki0l68.cloudfront.net/c74fc74ac5b2ac2c84ddc7098a606d668a897ec2/07305/assets/images/snow-sign3.png"
|
|
195
|
-
alt="sample"><img
|
|
196
|
-
src="https://d33wubrfki0l68.cloudfront.net/645c7c7f1099c97ab4b82faac94e5ac71749d222/93692/assets/images/snow-sign4.png"
|
|
197
|
-
alt="sample"></div>
|
|
198
|
-
|
|
199
|
-
</div>
|
|
200
|
-
<div class="col-md-4">
|
|
201
|
-
<form id="effect-form" data-feature-name="snow-sign"><label for="text-1"></label>
|
|
202
|
-
<input class="mb-15" type="text" placeholder="Your Text" id="text-1">
|
|
203
|
-
<div class="d-flex">
|
|
204
|
-
<button class="submit-btn" type="submit">Go</button>
|
|
205
|
-
</div>
|
|
206
|
-
</form>
|
|
207
|
-
</div>
|
|
208
|
-
</div>
|
|
209
|
-
<div class="row">
|
|
210
|
-
<div id="workspace" data-name="together_forever" style="display: none;">
|
|
211
|
-
<div class="row">
|
|
212
|
-
<div class="col-12 mb-4">
|
|
213
|
-
<div class="d-flex justify-content-between">
|
|
214
|
-
<div class="result-info">
|
|
215
|
-
<a href="/fun-photo-effects/christmas-snow-sign"
|
|
216
|
-
target="_blank">snow-sign</a>
|
|
217
|
-
<i class="fas fa-chevron-right"></i>
|
|
218
|
-
<div>result</div>
|
|
219
|
-
</div>
|
|
220
|
-
<button id="download-button" style="background-color: #FF5554;"><svg
|
|
221
|
-
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
222
|
-
<path
|
|
223
|
-
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">
|
|
224
|
-
</path>
|
|
225
|
-
</svg>Download</button>
|
|
226
|
-
</div>
|
|
227
|
-
|
|
228
|
-
</div>
|
|
229
|
-
<div class="col-md-12 mx-auto">
|
|
230
|
-
<div class="select-img-panel">
|
|
231
|
-
<div id="saving-data" style="display: block;">
|
|
232
|
-
<img loading="lazy"
|
|
233
|
-
src="https://d33wubrfki0l68.cloudfront.net/5ffee5c33dad367f7441ca96caa793eff6a95e3e/1975e/assets/images/loader.gif"
|
|
234
|
-
alt="saving"> <span class="ml-2">Saving
|
|
235
|
-
your
|
|
236
|
-
images...</span>
|
|
237
|
-
</div>
|
|
238
|
-
<div id="canvas-panel">
|
|
239
|
-
</div>
|
|
240
|
-
</div>
|
|
241
|
-
</div>
|
|
242
|
-
|
|
243
|
-
</div>
|
|
244
|
-
</div>
|
|
245
|
-
</div>
|
|
246
|
-
|
|
247
|
-
<div class="crop-image-modal-container">
|
|
248
|
-
<div class="row w-100">
|
|
249
|
-
<div class="crop-image-modal col-lg-6 col-md-8 mx-auto">
|
|
250
|
-
<div class="crop-image-modal-header" style="background-color:#FF5554 ;">
|
|
251
|
-
<div>Select an area you would like to use</div>
|
|
252
|
-
<div>
|
|
253
|
-
<button onclick="closeModal()">
|
|
254
|
-
<i class="fas fa-times"></i>
|
|
255
|
-
</button>
|
|
256
|
-
</div>
|
|
257
|
-
</div>
|
|
258
|
-
<div class="crop-image-modal-body">
|
|
259
|
-
|
|
260
|
-
</div>
|
|
261
|
-
<div class="crop-btn-section">
|
|
262
|
-
<button id="crop" class="mx-auto my-3"
|
|
263
|
-
style="background-color: #FF5554;">crop</button>
|
|
264
|
-
</div>
|
|
265
|
-
</div>
|
|
266
|
-
</div>
|
|
267
|
-
</div>
|
|
268
|
-
<div class="example-images-modal-container">
|
|
269
|
-
<div class="row w-100">
|
|
270
|
-
<div class="example-images-modal col-lg-6 col-md-8 mx-auto">
|
|
271
|
-
<div class="crop-image-modal-header" style="background-color:#FF5554 ;">
|
|
272
|
-
<div>Examples</div>
|
|
273
|
-
<div>
|
|
274
|
-
<button onclick="closeExamplesModal()">
|
|
275
|
-
<i class="fas fa-times"></i>
|
|
276
|
-
</button>
|
|
277
|
-
</div>
|
|
278
|
-
</div>
|
|
279
|
-
<div class="example-images-modal-body">
|
|
280
|
-
<div id="carouselExampleFade" class="carousel slide carousel-fade"
|
|
281
|
-
data-ride="carousel">
|
|
282
|
-
<div class="carousel-inner w-75 mx-auto">
|
|
283
|
-
<div class="carousel-item active">
|
|
284
|
-
<img src="https://d33wubrfki0l68.cloudfront.net/addd58e5ff7678f3b78c48cb4402f223b86842b4/8a9ad/assets/images/snow-sign1.png"
|
|
285
|
-
class="d-block w-100"
|
|
286
|
-
alt="https://d33wubrfki0l68.cloudfront.net/addd58e5ff7678f3b78c48cb4402f223b86842b4/8a9ad/assets/images/snow-sign1.png">
|
|
287
|
-
</div>
|
|
288
|
-
<div class="carousel-item">
|
|
289
|
-
<img src="https://d33wubrfki0l68.cloudfront.net/addd58e5ff7678f3b78c48cb4402f223b86842b4/8a9ad/assets/images/snow-sign1.png"
|
|
290
|
-
class="d-block w-100"
|
|
291
|
-
alt="https://d33wubrfki0l68.cloudfront.net/addd58e5ff7678f3b78c48cb4402f223b86842b4/8a9ad/assets/images/snow-sign1.png">
|
|
292
|
-
</div>
|
|
293
|
-
<div class="carousel-item">
|
|
294
|
-
<img src="https://d33wubrfki0l68.cloudfront.net/caa79e544fb9c16a5375c2450604287aa21b93ce/693ab/assets/images/snow-sign2.png"
|
|
295
|
-
class="d-block w-100"
|
|
296
|
-
alt="https://d33wubrfki0l68.cloudfront.net/caa79e544fb9c16a5375c2450604287aa21b93ce/693ab/assets/images/snow-sign2.png">
|
|
297
|
-
</div>
|
|
298
|
-
<div class="carousel-item">
|
|
299
|
-
<img src="https://d33wubrfki0l68.cloudfront.net/c74fc74ac5b2ac2c84ddc7098a606d668a897ec2/07305/assets/images/snow-sign3.png"
|
|
300
|
-
class="d-block w-100"
|
|
301
|
-
alt="https://d33wubrfki0l68.cloudfront.net/c74fc74ac5b2ac2c84ddc7098a606d668a897ec2/07305/assets/images/snow-sign3.png">
|
|
302
|
-
</div>
|
|
303
|
-
<div class="carousel-item">
|
|
304
|
-
<img src="https://d33wubrfki0l68.cloudfront.net/645c7c7f1099c97ab4b82faac94e5ac71749d222/93692/assets/images/snow-sign4.png"
|
|
305
|
-
class="d-block w-100"
|
|
306
|
-
alt="https://d33wubrfki0l68.cloudfront.net/645c7c7f1099c97ab4b82faac94e5ac71749d222/93692/assets/images/snow-sign4.png">
|
|
307
|
-
</div>
|
|
308
|
-
</div>
|
|
309
|
-
<button class="carousel-control-prev" type="button"
|
|
310
|
-
data-target="#carouselExampleFade" data-slide="prev">
|
|
311
|
-
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
312
|
-
<span class="sr-only">Previous</span>
|
|
313
|
-
</button>
|
|
314
|
-
<button class="carousel-control-next" type="button"
|
|
315
|
-
data-target="#carouselExampleFade" data-slide="next">
|
|
316
|
-
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
317
|
-
<span class="sr-only">Next</span>
|
|
318
|
-
</button>
|
|
319
|
-
</div>
|
|
320
|
-
</div>
|
|
321
|
-
|
|
322
|
-
</div>
|
|
323
|
-
</div>
|
|
324
|
-
</div>
|
|
325
|
-
|
|
326
|
-
</div>
|
|
327
|
-
|
|
115
|
+
|
|
328
116
|
|
|
329
117
|
{%- endif -%}
|
|
330
118
|
|
|
@@ -44,7 +44,7 @@ layout: feature
|
|
|
44
44
|
<div class="col-md-3 px-0 mb-0">
|
|
45
45
|
<a class="photo-card" href="{{i.link}}">
|
|
46
46
|
<div>
|
|
47
|
-
<img
|
|
47
|
+
<img src="{{i.image}}" alt="{{i.name}}" height="320px" width="320px">
|
|
48
48
|
<div class="photo-effect-feature-name">
|
|
49
49
|
{{i.name}}
|
|
50
50
|
</div>
|
|
@@ -61,8 +61,7 @@ layout: feature
|
|
|
61
61
|
<div class="col-md-3 px-0">
|
|
62
62
|
<a class="photo-card" href="{{item.url}}">
|
|
63
63
|
<div>
|
|
64
|
-
<img
|
|
65
|
-
width="320">
|
|
64
|
+
<img src="{{item.image}}" alt="{{item.featureName}}" height="320px" width="320px">
|
|
66
65
|
<div class="photo-effect-feature-name">
|
|
67
66
|
{{item.featureName}}
|
|
68
67
|
</div>
|
|
@@ -157,7 +156,7 @@ layout: feature
|
|
|
157
156
|
<div class="col-md-3 px-0 mb-0">
|
|
158
157
|
<a class="photo-card" href="{{i.link}}">
|
|
159
158
|
<div>
|
|
160
|
-
<img
|
|
159
|
+
<img src="{{i.image}}" alt="{{i.name}}" height="320px" width="320px">
|
|
161
160
|
<div class="photo-effect-feature-name">
|
|
162
161
|
{{i.name}}
|
|
163
162
|
</div>
|
|
@@ -173,8 +172,7 @@ layout: feature
|
|
|
173
172
|
<div class="col-md-3 px-0">
|
|
174
173
|
<a class="photo-card" href="{{item.url}}">
|
|
175
174
|
<div>
|
|
176
|
-
<img
|
|
177
|
-
width="320">
|
|
175
|
+
<img src="{{item.image}}" alt="{{item.featureName}}" height="320px" width="320px">
|
|
178
176
|
<div class="photo-effect-feature-name">
|
|
179
177
|
{{item.featureName}}
|
|
180
178
|
</div>
|
data/assets/css/frame.css
CHANGED
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: 2.9.
|
|
4
|
+
version: 2.9.7
|
|
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-
|
|
11
|
+
date: 2022-12-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|