appscms-tools-theme 3.8.4 → 3.8.6
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/header/en/data.json +1 -1
- data/_data/home/en/en.json +54 -26
- data/_includes/appscms/extras/ratings.html +116 -24
- data/_includes/appscms/faq/faq.html +6 -10
- data/_includes/appscms/featurehighlight/featurehighlight.html +45 -45
- data/_includes/appscms/footer/footer.html +3 -22
- data/_includes/appscms/head/head.html +2 -1
- data/_includes/appscms/headings/headings.html +3 -1
- data/_includes/appscms/home/feature-boxes.html +1 -1
- data/_includes/appscms/howto/howto.html +1 -1
- data/_includes/appscms/recent-posts/recent-posts.html +8 -8
- data/_includes/appscms/scripts/script.html +11 -11
- data/_includes/appscms/searchbar/searchbar.html +20 -6
- data/_includes/appscms/uploadbutton/uploadbutton.html +15 -9
- data/_layouts/appscms-audio.html +33 -0
- data/_layouts/appscms-download.html +25 -25
- data/_layouts/appscms-feature.html +17 -3
- data/_layouts/appscms-help.html +1 -1
- data/_layouts/appscms-home.html +19 -4
- data/_layouts/appscms-terms-and-conditions.html +2 -1
- data/_layouts/appscms-video.html +33 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +90 -167
- data/assets/css/appscms-theme.css +43 -9
- data/assets/images/.DS_Store +0 -0
- data/assets/images/document.png +0 -0
- data/assets/images/video.png +0 -0
- data/assets/js/appscms-search.js +101 -0
- data/assets/js/appscms-theme.js +80 -41
- metadata +7 -3
- data/assets/images/image.webp +0 -0
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
<div class="container">
|
|
3
2
|
<div class="row justify-content-center">
|
|
4
3
|
<div class="col-lg-6 col-md-8 col-10">
|
|
@@ -6,14 +5,29 @@
|
|
|
6
5
|
<div class="input-group w-100 shadow" id="appscms-searchbar">
|
|
7
6
|
<input
|
|
8
7
|
type="text"
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
id="search-features"
|
|
9
|
+
class="form-control rounded-pill border-0 px-4"
|
|
10
|
+
id="searchbar-placeholder"
|
|
11
|
+
placeholder="Search the tool you are looking for"
|
|
11
12
|
style="width: 50%"
|
|
12
13
|
/>
|
|
13
14
|
<button type="submit" class="btn btn-link btn-search">
|
|
14
|
-
<svg
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
<svg
|
|
16
|
+
height="22px"
|
|
17
|
+
width="22px"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
width="800px"
|
|
20
|
+
height="800px"
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
fill-rule="evenodd"
|
|
26
|
+
clip-rule="evenodd"
|
|
27
|
+
d="M4 11C4 7.13401 7.13401 4 11 4C14.866 4 18 7.13401 18 11C18 14.866 14.866 18 11 18C7.13401 18 4 14.866 4 11ZM11 2C6.02944 2 2 6.02944 2 11C2 15.9706 6.02944 20 11 20C13.125 20 15.078 19.2635 16.6177 18.0319L20.2929 21.7071C20.6834 22.0976 21.3166 22.0976 21.7071 21.7071C22.0976 21.3166 22.0976 20.6834 21.7071 20.2929L18.0319 16.6177C19.2635 15.078 20 13.125 20 11C20 6.02944 15.9706 2 11 2Z"
|
|
28
|
+
fill="#000000"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
17
31
|
</button>
|
|
18
32
|
</div>
|
|
19
33
|
</form>
|
|
@@ -4,33 +4,40 @@
|
|
|
4
4
|
<div class="container appscms-upload-section-container">
|
|
5
5
|
<div class="row">
|
|
6
6
|
<div
|
|
7
|
-
class="col-xxl-4 col-lg-6 col-md-8 col-sm-10 offset-md-1 offset-sm-0 py-5 pt-md-3 pt-md pt-sm-3 mx-auto"
|
|
7
|
+
class="col-xxl-4 col-lg-6 col-md-8 col-sm-10 offset-md-1 offset-sm-0 py-md-5 pt-md-3 pt-md pt-sm-3 mx-auto"
|
|
8
8
|
>
|
|
9
9
|
<div class="appscms-upload-section">
|
|
10
10
|
<div class="appscms-upload-icon">
|
|
11
|
-
<img
|
|
11
|
+
<img
|
|
12
|
+
height="48px"
|
|
13
|
+
width="48px"
|
|
14
|
+
src="{{site.uploadButtonImage | default: '/assets/images/document.png' }}"
|
|
15
|
+
alt=""
|
|
16
|
+
/>
|
|
12
17
|
</div>
|
|
13
|
-
<span>drag and drop here</span>
|
|
18
|
+
<span class="drag-msg">drag and drop here</span>
|
|
14
19
|
<div class="or-in-upload">
|
|
15
20
|
<div class="line-in-upload"></div>
|
|
16
21
|
<span>or</span>
|
|
17
22
|
<div class="line-in-upload"></div>
|
|
18
23
|
</div>
|
|
19
24
|
|
|
20
|
-
<div for="image-upload" class="upload-btn">
|
|
25
|
+
<div for="image-upload" class="upload-btn">
|
|
26
|
+
{{site.uploadButtonText | default: "Upload Image" }}
|
|
27
|
+
</div>
|
|
21
28
|
|
|
22
29
|
<div class="upload-from-drives">
|
|
23
30
|
<img
|
|
24
31
|
id="google-drive"
|
|
25
|
-
height="
|
|
26
|
-
width="
|
|
32
|
+
height="32px"
|
|
33
|
+
width="34px"
|
|
27
34
|
src="/assets/gdrive.png"
|
|
28
35
|
alt="googledrive"
|
|
29
36
|
/>
|
|
30
37
|
<img
|
|
31
38
|
id="dropbox"
|
|
32
|
-
height="
|
|
33
|
-
width="
|
|
39
|
+
height="32px"
|
|
40
|
+
width="34px"
|
|
34
41
|
src="/assets/dropbox.png"
|
|
35
42
|
alt="dropbox"
|
|
36
43
|
/>
|
|
@@ -39,6 +46,5 @@
|
|
|
39
46
|
</div>
|
|
40
47
|
</div>
|
|
41
48
|
</div>
|
|
42
|
-
|
|
43
49
|
{%- endif -%}
|
|
44
50
|
<div id="workspace"></div>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: appscms-feature
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{%- assign fileData = site.data[page.folderName][page.lang][page.fileName] -%}
|
|
6
|
+
<div class="container pt-5 mt-5">
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="col-md-6 mb-5" id="left-section" data-format="{{page.format}}">
|
|
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>
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
</div>
|
|
29
29
|
|
|
30
30
|
</div>
|
|
31
|
-
<div class="col-lg-7 col-md-9 col-sm-
|
|
31
|
+
<div class="col-lg-7 col-md-9 col-sm-11 text-center mx-auto">
|
|
32
32
|
<img id="rating-img" loading='lazy' src="/assets/images/rating.png" alt="rating-img" {%- if
|
|
33
33
|
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
34
34
|
<div class="rating-tool" style="border: none;">
|
|
35
|
-
<div class="rating-text">{{downloadData.rateus | default: 'Rate us'}}: </div>
|
|
35
|
+
<div class="rating-text mr-2">{{downloadData.rateus | default: 'Rate us'}}: </div>
|
|
36
36
|
<div class="rating-stars">
|
|
37
37
|
<i class="fas fa-star rating-star"></i><i class="fas fa-star rating-star"></i><i
|
|
38
38
|
class="fas fa-star rating-star"></i><i class="fas fa-star rating-star"></i><i
|
|
@@ -116,15 +116,15 @@
|
|
|
116
116
|
}))
|
|
117
117
|
</script>
|
|
118
118
|
</div>
|
|
119
|
-
<div class="try-more-features ">
|
|
119
|
+
<div class="try-more-features mt-4 ">
|
|
120
120
|
<h2 class="appscms-heading"> {{downloadData.tryfeatureheading | default: 'You can also
|
|
121
121
|
try
|
|
122
122
|
These features'
|
|
123
123
|
}} </h2>
|
|
124
|
-
<div class="feature-showcase ">
|
|
124
|
+
<div class="feature-showcase row">
|
|
125
125
|
{%- if downloadData.recommendedfeatures -%}
|
|
126
126
|
{%- for item in downloadData.recommendedfeatures -%}
|
|
127
|
-
<div>
|
|
127
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
128
128
|
|
|
129
129
|
<a class="px-2 feature-showcase-div w-100 d-flex justify-content-between " href="{{item.url}}">
|
|
130
130
|
<img src="{{item.logo}}" loading="lazy" alt="feature-logo" {%- if site.crossorigin -%}
|
|
@@ -139,19 +139,17 @@
|
|
|
139
139
|
</div>
|
|
140
140
|
</div>
|
|
141
141
|
</div>
|
|
142
|
-
<div class="row w-100 px-3">
|
|
143
|
-
<div class="col-12">
|
|
144
|
-
{%- if downloadData.recommendedsitesheading -%}
|
|
145
|
-
<p class="appscms-heading my-5">{{downloadData.recommendedsitesheading}}</p>
|
|
146
|
-
{%- else -%}
|
|
147
|
-
<p class="appscms-heading my-5">Try our other sites for safe processing of you files ! </p>
|
|
148
|
-
{%- endif -%}
|
|
149
|
-
</div>
|
|
150
142
|
|
|
143
|
+
{%- if downloadData.recommendedsitesheading -%}
|
|
144
|
+
<p class="appscms-heading col-12">{{downloadData.recommendedsitesheading}}</p>
|
|
145
|
+
{%- else -%}
|
|
146
|
+
<p class="appscms-heading col-12">Try our other sites for safe processing of you files ! </p>
|
|
147
|
+
{%- endif -%}
|
|
148
|
+
<div class="row w-100 px-3 website-showcases">
|
|
151
149
|
{%- if downloadData.recommendedsites -%}
|
|
152
150
|
{%- assign recommendedsitesData = downloadData.recommendedsites -%}
|
|
153
151
|
{%- for item in recommendedsitesData -%}
|
|
154
|
-
<div class="col-md-4">
|
|
152
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
155
153
|
<div class="website-showcase">
|
|
156
154
|
<img loading='lazy' class="website-img" src="{{item.logo}}" alt="{{item.name}} logo" {%- if
|
|
157
155
|
site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a target="_blank"
|
|
@@ -159,7 +157,7 @@
|
|
|
159
157
|
</div>
|
|
160
158
|
{%- endfor -%}
|
|
161
159
|
{%- else -%}
|
|
162
|
-
<div class="col-md-4">
|
|
160
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
163
161
|
<div class="website-showcase">
|
|
164
162
|
<img loading='lazy' class="website-img"
|
|
165
163
|
src="https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
|
|
@@ -167,7 +165,7 @@
|
|
|
167
165
|
target="_blank" href="https://safepdfkit.com">Safepdfkit.com</a>
|
|
168
166
|
</div>
|
|
169
167
|
</div>
|
|
170
|
-
<div class="col-md-4">
|
|
168
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
171
169
|
<div class="website-showcase">
|
|
172
170
|
<img class="website-img" loading='lazy'
|
|
173
171
|
src="https://d33wubrfki0l68.cloudfront.net/796c1a01dae9c2d10224fd72a820156974b26ab1/3b885/assets/images/logo.png"
|
|
@@ -175,7 +173,7 @@
|
|
|
175
173
|
target="_blank" href="https://safeaudiokit.com">safeaudiokit.com</a>
|
|
176
174
|
</div>
|
|
177
175
|
</div>
|
|
178
|
-
<div class="col-md-4">
|
|
176
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
179
177
|
<div class="website-showcase">
|
|
180
178
|
<img class="website-img" loading="lazy"
|
|
181
179
|
src="https://d33wubrfki0l68.cloudfront.net/ab0207d780c019c54db62b002396bc8c3fddddaf/9abb9/assets/safevideokit.svg"
|
|
@@ -183,7 +181,7 @@
|
|
|
183
181
|
target="_blank" href="https://safevideokit.com">safevideokit.com</a>
|
|
184
182
|
</div>
|
|
185
183
|
</div>
|
|
186
|
-
<div class="col-md-4 ">
|
|
184
|
+
<div class="col-md-4 col-sm-6 col-6 ">
|
|
187
185
|
<div class="website-showcase">
|
|
188
186
|
<img loading='lazy' class="website-img"
|
|
189
187
|
src="https://d33wubrfki0l68.cloudfront.net/2e37a1020563aa528471da7425b8e58343e2baf7/a186c/picture.png"
|
|
@@ -191,7 +189,7 @@
|
|
|
191
189
|
target="_blank" href="https://safeimagekit.com/">safeimagekit.com</a>
|
|
192
190
|
</div>
|
|
193
191
|
</div>
|
|
194
|
-
<div class="col-md-4">
|
|
192
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
195
193
|
<div class="website-showcase">
|
|
196
194
|
<img loading='lazy' class="website-img"
|
|
197
195
|
src="https://d33wubrfki0l68.cloudfront.net/74bf3f3836d56b30d16137169cd4c28bf15494ed/11962/js/pt.png"
|
|
@@ -199,7 +197,7 @@
|
|
|
199
197
|
target="_blank" href="https://safezipkit.com/">safezipkit.com</a>
|
|
200
198
|
</div>
|
|
201
199
|
</div>
|
|
202
|
-
<div class="col-md-4">
|
|
200
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
203
201
|
<div class="website-showcase">
|
|
204
202
|
<img loading='lazy' class="website-img"
|
|
205
203
|
src="https://d33wubrfki0l68.cloudfront.net/325cdfad7de6cae4a03aecfadc70b38af754cbd0/d87f9/assets/images/logo.png"
|
|
@@ -210,14 +208,14 @@
|
|
|
210
208
|
</a>
|
|
211
209
|
</div>
|
|
212
210
|
</div>
|
|
213
|
-
<div class="col-md-4">
|
|
211
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
214
212
|
<div class="website-showcase">
|
|
215
213
|
<img loading='lazy' class="website-img" src="/assets//images/safevideoconverter.svg"
|
|
216
214
|
alt="safevideoconverter logo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
217
215
|
target="_blank" href="https://safevideoconverter.com/">safevideoconverter.com</a>
|
|
218
216
|
</div>
|
|
219
217
|
</div>
|
|
220
|
-
<div class="col-md-4">
|
|
218
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
221
219
|
<div class="website-showcase">
|
|
222
220
|
<img loading='lazy' class="website-img"
|
|
223
221
|
src="https://d33wubrfki0l68.cloudfront.net/c8fef6be5192b9fa57b8503c6ad93befa361926d/a66d0/picture.svg"
|
|
@@ -243,8 +241,9 @@
|
|
|
243
241
|
|
|
244
242
|
|
|
245
243
|
<div class="download-social-share">
|
|
244
|
+
<div class="container">
|
|
246
245
|
<div class="row">
|
|
247
|
-
<div class="col-md-
|
|
246
|
+
<div class="col-md-12 mx-auto">
|
|
248
247
|
<div class="row">
|
|
249
248
|
<div class="col-md-8">
|
|
250
249
|
<p class=" share-heading mb-0 " >
|
|
@@ -267,7 +266,7 @@
|
|
|
267
266
|
<a id=" {{share.type}}" href="{{ link }}" data-toggle="tooltip"
|
|
268
267
|
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
|
269
268
|
data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
|
|
270
|
-
<i class="fa-fw {{ share.icon }} mb-0
|
|
269
|
+
<i class="fa-fw {{ share.icon }} mb-0"></i>
|
|
271
270
|
</a>
|
|
272
271
|
{% endfor %}
|
|
273
272
|
</div>
|
|
@@ -280,9 +279,10 @@
|
|
|
280
279
|
</div>
|
|
281
280
|
</div>
|
|
282
281
|
</div>
|
|
282
|
+
</div>
|
|
283
283
|
|
|
284
284
|
{% include appscms/footer/footer.html %}
|
|
285
|
-
{% include script.html %}
|
|
285
|
+
{% include appscms/scripts/script.html %}
|
|
286
286
|
|
|
287
287
|
</body>
|
|
288
288
|
|
|
@@ -7,12 +7,26 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
7
7
|
{%- include appscms/head/head.html -%}
|
|
8
8
|
<body>
|
|
9
9
|
{%- include appscms/navbars/navbar.html -%} {%- include
|
|
10
|
-
appscms/navbars/toolbar.html -%} {%- include
|
|
11
|
-
|
|
10
|
+
appscms/navbars/toolbar.html -%} {%- include bookmark.html -%} {%- if
|
|
11
|
+
site.safeui -%}
|
|
12
|
+
<div
|
|
13
|
+
class="alert alert-{{featureData.variant | default: 'primary'}} fade show text-center"
|
|
14
|
+
role="alert"
|
|
15
|
+
id="safeui-alert"
|
|
16
|
+
>
|
|
17
|
+
<div class="container">
|
|
18
|
+
{%- if featureData.alertmsg -%} {{featureData.alertmsg}} {%- else -%} We
|
|
19
|
+
do not upload any files to server, hence your data is 100% secure. {%-
|
|
20
|
+
endif -%}
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
{%- endif -%} {%- include appscms/headings/headings.html -%} {%- include
|
|
24
|
+
appscms/uploadbutton/uploadbutton.html -%} {%- include
|
|
12
25
|
appscms/featurehighlight/featurehighlight.html -%} {%- include
|
|
13
26
|
appscms/howto/howto.html -%} {%- include appscms/faq/faq.html -%} {%-
|
|
14
27
|
include appscms/recent-posts/recent-posts.html -%}
|
|
15
|
-
<!-- {%- include
|
|
28
|
+
<!-- {%- include
|
|
29
|
+
appscms/extras/traffic-count.html -%} -->
|
|
16
30
|
{%- include appscms/extras/ratings.html -%} {%- include
|
|
17
31
|
appscms/footer/products.html -%} {%- include appscms/footer/footer.html -%}
|
|
18
32
|
{%- include appscms/scripts/script.html -%}
|
data/_layouts/appscms-help.html
CHANGED
data/_layouts/appscms-home.html
CHANGED
|
@@ -6,15 +6,30 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
6
6
|
{%- include appscms/head/head.html -%}
|
|
7
7
|
<body>
|
|
8
8
|
{%- include appscms/navbars/navbar.html -%} {%- include
|
|
9
|
-
appscms/navbars/toolbar.html -%} {%-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
appscms/navbars/toolbar.html -%} {%- if homeData.nofileupload -%}
|
|
10
|
+
<div
|
|
11
|
+
id="safeui-alert"
|
|
12
|
+
class="alert alert-{{homeData.variant | default: 'primary'}} fade show text-center"
|
|
13
|
+
role="alert"
|
|
14
|
+
>
|
|
15
|
+
<div class="container">
|
|
16
|
+
{%- if homeData.alertmsg -%} {{homeData.alertmsg}} {%- else -%} We do
|
|
17
|
+
not upload any files to server, hence your data is 100% secure. {%-
|
|
18
|
+
endif -%}
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
{%- endif -%} {%- include appscms/headings/headings.html -%} {%- include
|
|
22
|
+
appscms/searchbar/searchbar.html -%}
|
|
23
|
+
<!-- {%- include
|
|
24
|
+
appscms/category-tabs/category-tabs.html -%} -->
|
|
12
25
|
{%- include appscms/home/feature-boxes.html -%}
|
|
13
26
|
<div class="appcms-home-content-box" id="appcms-home-content-box">
|
|
14
27
|
{{ content }}
|
|
15
28
|
</div>
|
|
16
29
|
{%- include appscms/recent-posts/recent-posts.html -%}
|
|
17
|
-
<!--
|
|
30
|
+
<!--
|
|
31
|
+
{%- include
|
|
32
|
+
appscms/extras/traffic-count.html -%} -->
|
|
18
33
|
{%- include appscms/footer/products.html -%} {%- include
|
|
19
34
|
appscms/footer/footer.html -%} {%- include appscms/scripts/script.html -%}
|
|
20
35
|
</body>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: appscms-feature
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{%- assign fileData = site.data[page.folderName][page.lang][page.fileName] -%}
|
|
6
|
+
<div class="container mt-4 pt-5 mt-5">
|
|
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="video-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="video-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 Video</button>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-md-6">
|
|
28
|
+
<div class="right-section mb-5">
|
|
29
|
+
<img src="/assets/images/video.png" alt="alt" />
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
data/assets/.DS_Store
CHANGED
|
Binary file
|