appscms-tools-theme 3.8.3 → 3.8.4
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 +166 -166
- data/_data/home/en/en.json +353 -1
- data/_includes/appscms/footer/static-footer.html +86 -0
- data/_includes/appscms/head/head.html +2 -3
- data/_includes/appscms/headings/headings.html +9 -4
- data/_includes/appscms/home/feature-boxes.html +1 -1
- data/_layouts/appscms-about.html +163 -0
- data/_layouts/appscms-contact.html +132 -0
- data/_layouts/appscms-disclaimer.html +124 -0
- data/_layouts/appscms-download.html +289 -0
- data/_layouts/appscms-help.html +26 -0
- data/_layouts/appscms-privacy-policy.html +781 -0
- data/_layouts/appscms-terms-and-conditions.html +646 -0
- data/_layouts/feature-1.html +364 -250
- data/_layouts/feature.html +383 -366
- data/_layouts/imagekit.html +175 -43
- data/assets/.DS_Store +0 -0
- data/assets/app.js +75 -0
- data/assets/css/appscms-theme.css +125 -2
- data/assets/images/.DS_Store +0 -0
- data/assets/images/bgimg1.png +0 -0
- data/assets/images/digiball.jpg +0 -0
- data/assets/images/digipaint.jpg +0 -0
- data/assets/images/image.png +0 -0
- data/assets/images/manthink.svg +3552 -0
- data/assets/images/mega.png +0 -0
- data/assets/images/spinner.gif +0 -0
- metadata +17 -2
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign lang = page.lang %}
|
|
3
|
+
{% assign folder = page.folderName %}
|
|
4
|
+
{% assign downloadData= site.data[folder][lang][file] %}
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{homeData.htmlLangAtt}}">
|
|
7
|
+
{%- include appscms/head/head.html -%}
|
|
8
|
+
<body>
|
|
9
|
+
{%- include appscms/navbars/navbar.html -%} {%- include
|
|
10
|
+
appscms/navbars/toolbar.html -%}
|
|
11
|
+
<div class="container">
|
|
12
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
13
|
+
<div class="row">
|
|
14
|
+
<div class="col-md-9 mx-auto">
|
|
15
|
+
{%- endif -%}
|
|
16
|
+
<div class="appscms-download-section">
|
|
17
|
+
<div class="row">
|
|
18
|
+
<div class="col-md-12 px-0">
|
|
19
|
+
<div class="success-msg-cont mb-0 ">
|
|
20
|
+
<div class="success-greeting">
|
|
21
|
+
<p class="success-msg"> {{downloadData.successmessage | default: 'Hurray! your operation was
|
|
22
|
+
completed'
|
|
23
|
+
}}
|
|
24
|
+
</p>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="go-back-block">
|
|
27
|
+
<button onclick="history.back()"> <i class="fas fa-redo"></i> Try processing another file</button>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
</div>
|
|
31
|
+
<div class="col-lg-7 col-md-9 col-sm-10 col-10 py-4 text-center mx-auto">
|
|
32
|
+
<img id="rating-img" loading='lazy' src="/assets/images/rating.png" alt="rating-img" {%- if
|
|
33
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
34
|
+
<div class="rating-tool" style="border: none;">
|
|
35
|
+
<div class="rating-text">{{downloadData.rateus | default: 'Rate us'}}: </div>
|
|
36
|
+
<div class="rating-stars">
|
|
37
|
+
<i class="fas fa-star rating-star"></i><i class="fas fa-star rating-star"></i><i
|
|
38
|
+
class="fas fa-star rating-star"></i><i class="fas fa-star rating-star"></i><i
|
|
39
|
+
class="fas fa-star rating-star"></i>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="rating-value ml-2">
|
|
42
|
+
{%- for item in data -%}
|
|
43
|
+
{%- if item.name ==tool -%}
|
|
44
|
+
{%- assign rating = item.rating -%}
|
|
45
|
+
{%- assign votes = item.votes -%}
|
|
46
|
+
{%- endif -%}
|
|
47
|
+
{%- endfor -%}
|
|
48
|
+
<span class="rating"> <span id='rating'>0</span><span>/5</span> </span>
|
|
49
|
+
<span class="total-ratings" id='count'>0 </span>{{downloadData.votes | default: 'votes'}}
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
<script>
|
|
53
|
+
const ratingValue = document.getElementById('rating')
|
|
54
|
+
const count = document.getElementById('count')
|
|
55
|
+
const setRating = async (rating) => {
|
|
56
|
+
const name = '{{site.name}}'
|
|
57
|
+
const urlParams = new URLSearchParams(window.location.search)
|
|
58
|
+
let tool = urlParams.get('tool')
|
|
59
|
+
const data = { website: name, feature: tool, rating: rating };
|
|
60
|
+
fetch('https://ratingapi-main.netlify.app/.netlify/functions/api/v1/rating/add', {
|
|
61
|
+
method: 'POST',
|
|
62
|
+
headers: {
|
|
63
|
+
'Content-Type': 'application/json',
|
|
64
|
+
},
|
|
65
|
+
body: JSON.stringify(data),
|
|
66
|
+
})
|
|
67
|
+
.then(response => response.json())
|
|
68
|
+
.then(data => {
|
|
69
|
+
ratingValue.innerText = data.rating
|
|
70
|
+
count.innerText = data.count
|
|
71
|
+
})
|
|
72
|
+
.catch((error) => {
|
|
73
|
+
console.error('Error:', error);
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
const urlParams = new URLSearchParams(window.location.search)
|
|
77
|
+
let tool = urlParams.get('tool')
|
|
78
|
+
const fetchRating = async () => {
|
|
79
|
+
const data = await fetch(`https://ratingapi-main.netlify.app/.netlify/functions/api/v1/${tool}/rating`).then(res => res.json())
|
|
80
|
+
ratingValue.innerText = data.rating
|
|
81
|
+
count.innerText = data.votes
|
|
82
|
+
}
|
|
83
|
+
let ratingImg = document.querySelector('#rating-img');
|
|
84
|
+
ratingImg.addEventListener('load', (event) => {
|
|
85
|
+
fetchRating()
|
|
86
|
+
});
|
|
87
|
+
const ratingNode = document.getElementsByClassName('rating-star')
|
|
88
|
+
let ratedValue = localStorage.getItem(`${tool}rating`)
|
|
89
|
+
if (ratedValue) {
|
|
90
|
+
Array.from(ratingNode).slice(0, ratedValue).map(item => {
|
|
91
|
+
item.style.color = '#FF8A1F'
|
|
92
|
+
})
|
|
93
|
+
}
|
|
94
|
+
Array.from(ratingNode).map(item => item.addEventListener('click', () => {
|
|
95
|
+
const urlParams = new URLSearchParams(window.location.search)
|
|
96
|
+
let tool = urlParams.get('tool')
|
|
97
|
+
if (!localStorage.getItem(`${tool}rating`)) {
|
|
98
|
+
function indexInClass(node) {
|
|
99
|
+
var className = node.className;
|
|
100
|
+
var num = 0;
|
|
101
|
+
for (var i = 0; i < ratingNode.length; i++) {
|
|
102
|
+
if (ratingNode[i] === node) {
|
|
103
|
+
return num;
|
|
104
|
+
}
|
|
105
|
+
num++;
|
|
106
|
+
}
|
|
107
|
+
return -1;
|
|
108
|
+
}
|
|
109
|
+
const index = indexInClass(item)
|
|
110
|
+
Array.from(ratingNode).slice(0, index + 1).map(item => {
|
|
111
|
+
item.style.color = '#FF8A1F'
|
|
112
|
+
})
|
|
113
|
+
setRating(index + 1)
|
|
114
|
+
localStorage.setItem(`${tool}rating`, index + 1)
|
|
115
|
+
}
|
|
116
|
+
}))
|
|
117
|
+
</script>
|
|
118
|
+
</div>
|
|
119
|
+
<div class="try-more-features ">
|
|
120
|
+
<h2 class="appscms-heading"> {{downloadData.tryfeatureheading | default: 'You can also
|
|
121
|
+
try
|
|
122
|
+
These features'
|
|
123
|
+
}} </h2>
|
|
124
|
+
<div class="feature-showcase ">
|
|
125
|
+
{%- if downloadData.recommendedfeatures -%}
|
|
126
|
+
{%- for item in downloadData.recommendedfeatures -%}
|
|
127
|
+
<div>
|
|
128
|
+
|
|
129
|
+
<a class="px-2 feature-showcase-div w-100 d-flex justify-content-between " href="{{item.url}}">
|
|
130
|
+
<img src="{{item.logo}}" loading="lazy" alt="feature-logo" {%- if site.crossorigin -%}
|
|
131
|
+
crossorigin="anonymous" {%- endif -%}> <span class="ml-3 ">
|
|
132
|
+
{{item.name}}</span> </a>
|
|
133
|
+
</div>
|
|
134
|
+
{%- endfor -%}
|
|
135
|
+
{%- else -%}
|
|
136
|
+
code2
|
|
137
|
+
{%- endif -%}
|
|
138
|
+
|
|
139
|
+
</div>
|
|
140
|
+
</div>
|
|
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
|
+
|
|
151
|
+
{%- if downloadData.recommendedsites -%}
|
|
152
|
+
{%- assign recommendedsitesData = downloadData.recommendedsites -%}
|
|
153
|
+
{%- for item in recommendedsitesData -%}
|
|
154
|
+
<div class="col-md-4">
|
|
155
|
+
<div class="website-showcase">
|
|
156
|
+
<img loading='lazy' class="website-img" src="{{item.logo}}" alt="{{item.name}} logo" {%- if
|
|
157
|
+
site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a target="_blank"
|
|
158
|
+
href="{{item.url}}">{{item.name}}</a>
|
|
159
|
+
</div>
|
|
160
|
+
{%- endfor -%}
|
|
161
|
+
{%- else -%}
|
|
162
|
+
<div class="col-md-4">
|
|
163
|
+
<div class="website-showcase">
|
|
164
|
+
<img loading='lazy' class="website-img"
|
|
165
|
+
src="https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
|
|
166
|
+
alt="safepdfkitlogo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
167
|
+
target="_blank" href="https://safepdfkit.com">Safepdfkit.com</a>
|
|
168
|
+
</div>
|
|
169
|
+
</div>
|
|
170
|
+
<div class="col-md-4">
|
|
171
|
+
<div class="website-showcase">
|
|
172
|
+
<img class="website-img" loading='lazy'
|
|
173
|
+
src="https://d33wubrfki0l68.cloudfront.net/796c1a01dae9c2d10224fd72a820156974b26ab1/3b885/assets/images/logo.png"
|
|
174
|
+
alt="Safeaudiokit-logo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
175
|
+
target="_blank" href="https://safeaudiokit.com">safeaudiokit.com</a>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
<div class="col-md-4">
|
|
179
|
+
<div class="website-showcase">
|
|
180
|
+
<img class="website-img" loading="lazy"
|
|
181
|
+
src="https://d33wubrfki0l68.cloudfront.net/ab0207d780c019c54db62b002396bc8c3fddddaf/9abb9/assets/safevideokit.svg"
|
|
182
|
+
alt="Safevideokitlogo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
183
|
+
target="_blank" href="https://safevideokit.com">safevideokit.com</a>
|
|
184
|
+
</div>
|
|
185
|
+
</div>
|
|
186
|
+
<div class="col-md-4 ">
|
|
187
|
+
<div class="website-showcase">
|
|
188
|
+
<img loading='lazy' class="website-img"
|
|
189
|
+
src="https://d33wubrfki0l68.cloudfront.net/2e37a1020563aa528471da7425b8e58343e2baf7/a186c/picture.png"
|
|
190
|
+
alt="Safeimagekitlogo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
191
|
+
target="_blank" href="https://safeimagekit.com/">safeimagekit.com</a>
|
|
192
|
+
</div>
|
|
193
|
+
</div>
|
|
194
|
+
<div class="col-md-4">
|
|
195
|
+
<div class="website-showcase">
|
|
196
|
+
<img loading='lazy' class="website-img"
|
|
197
|
+
src="https://d33wubrfki0l68.cloudfront.net/74bf3f3836d56b30d16137169cd4c28bf15494ed/11962/js/pt.png"
|
|
198
|
+
alt="safezipkitlogo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
199
|
+
target="_blank" href="https://safezipkit.com/">safezipkit.com</a>
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
<div class="col-md-4">
|
|
203
|
+
<div class="website-showcase">
|
|
204
|
+
<img loading='lazy' class="website-img"
|
|
205
|
+
src="https://d33wubrfki0l68.cloudfront.net/325cdfad7de6cae4a03aecfadc70b38af754cbd0/d87f9/assets/images/logo.png"
|
|
206
|
+
alt="Safeimageconverter logo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
207
|
+
target="_blank" href="https://safeaudioconverter.com/">
|
|
208
|
+
safeaudioconverter.com
|
|
209
|
+
|
|
210
|
+
</a>
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
<div class="col-md-4">
|
|
214
|
+
<div class="website-showcase">
|
|
215
|
+
<img loading='lazy' class="website-img" src="/assets//images/safevideoconverter.svg"
|
|
216
|
+
alt="safevideoconverter logo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
217
|
+
target="_blank" href="https://safevideoconverter.com/">safevideoconverter.com</a>
|
|
218
|
+
</div>
|
|
219
|
+
</div>
|
|
220
|
+
<div class="col-md-4">
|
|
221
|
+
<div class="website-showcase">
|
|
222
|
+
<img loading='lazy' class="website-img"
|
|
223
|
+
src="https://d33wubrfki0l68.cloudfront.net/c8fef6be5192b9fa57b8503c6ad93befa361926d/a66d0/picture.svg"
|
|
224
|
+
alt="safeimageconverter logo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
225
|
+
target="_blank" href="https://safeimageconverter.com/">safeimageconverter</a>
|
|
226
|
+
</div>
|
|
227
|
+
</div>
|
|
228
|
+
{%- endif -%}
|
|
229
|
+
|
|
230
|
+
</div>
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
</div>
|
|
234
|
+
</div>
|
|
235
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
236
|
+
|
|
237
|
+
</div>
|
|
238
|
+
</div>
|
|
239
|
+
</div>
|
|
240
|
+
{%- endif -%}
|
|
241
|
+
|
|
242
|
+
</div>
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
<div class="download-social-share">
|
|
246
|
+
<div class="row">
|
|
247
|
+
<div class="col-md-9 mx-auto">
|
|
248
|
+
<div class="row">
|
|
249
|
+
<div class="col-md-8">
|
|
250
|
+
<p class=" share-heading mb-0 " >
|
|
251
|
+
{%- if downloadData.socialshareheading -%}
|
|
252
|
+
{{downloadData.socialshareheading}}
|
|
253
|
+
{%- else -%}
|
|
254
|
+
we are a free to use platform for safe processing of your files. We need to your support to grow. Help us by sharing us on social media. Thanks !
|
|
255
|
+
{%- endif -%}
|
|
256
|
+
</p>
|
|
257
|
+
</div>
|
|
258
|
+
<div class="col-md-4">
|
|
259
|
+
{%- if site.data.blog.share.platforms -%}
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
<div class="share-icons">
|
|
263
|
+
{% assign url = site.url %}
|
|
264
|
+
{% for share in site.data.blog.share.platforms %}
|
|
265
|
+
{% assign link = share.link | replace: 'URL', url %}
|
|
266
|
+
{{page.title}}
|
|
267
|
+
<a id=" {{share.type}}" href="{{ link }}" data-toggle="tooltip"
|
|
268
|
+
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
|
269
|
+
data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
|
|
270
|
+
<i class="fa-fw {{ share.icon }} mb-0 py-3"></i>
|
|
271
|
+
</a>
|
|
272
|
+
{% endfor %}
|
|
273
|
+
</div>
|
|
274
|
+
</ul>
|
|
275
|
+
|
|
276
|
+
{%- endif -%}
|
|
277
|
+
</div>
|
|
278
|
+
|
|
279
|
+
</div>
|
|
280
|
+
</div>
|
|
281
|
+
</div>
|
|
282
|
+
</div>
|
|
283
|
+
|
|
284
|
+
{% include appscms/footer/footer.html %}
|
|
285
|
+
{% include script.html %}
|
|
286
|
+
|
|
287
|
+
</body>
|
|
288
|
+
|
|
289
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign folder = page.folderName %}
|
|
3
|
+
{% assign lang = page.lang %}
|
|
4
|
+
{% assign helpData = site.data[folder][lang][file] %}
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{helpData.htmlLangAtt}}">
|
|
7
|
+
{% include head/index.html %}
|
|
8
|
+
|
|
9
|
+
<body>
|
|
10
|
+
{%- include appscms/head/head.html -%}
|
|
11
|
+
<body>
|
|
12
|
+
{%- include appscms/navbars/navbar.html -%} {%- include
|
|
13
|
+
appscms/navbars/toolbar.html -%}
|
|
14
|
+
<div class="container py-4">
|
|
15
|
+
<h1 class="about-h1 py-2">Help</h1>
|
|
16
|
+
<h2 class="about-h2"> Welcome to {{page.companyName}}.{{page.domain}}</h2>
|
|
17
|
+
<p class="py-2">We are here to help you. Ping us your queries at care@{{ page.companyName}}.{{page.domain}}</p>
|
|
18
|
+
<div>
|
|
19
|
+
{{content}}
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
{% include appcms/footer/staticfooter.html %}
|
|
23
|
+
{% include script.html %}
|
|
24
|
+
</body>
|
|
25
|
+
|
|
26
|
+
</html>
|