appscms-tools-theme 0.8.0 → 0.8.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2388defe1413c42bcf3e10a82c71dbd3ea7d15e1713413194b70cce5e5d80972
4
- data.tar.gz: 58e08304a5f3e1695870df893c7f4a5d811b9de17800f4c38505226fdbf3a12a
3
+ metadata.gz: b139bd1d8e620e6fc3aae9c15f19527aa3a0ec9eaf2741cb823e9124b1b923df
4
+ data.tar.gz: 45329ec0c9ee294f476ea1a1f94e33097a84d45f8edb49d3eecde250b122e1f6
5
5
  SHA512:
6
- metadata.gz: c0c7b8b2543ade8394559c3c771994970708cc8ebfcacffb35b0f6b71acb7dc2217252c3edf02a6cbc504e24829cdd2c08b12a8de976af0f4c112d4e318dcbd7
7
- data.tar.gz: 0b05542aed618b726b0db0cc342e9c3fb844ef8dedaa313c8545f02c9f2f14b98a85ad41daffb177045bd5e74dcb0057986ffa6936d9dc0dc5f49ca2815b4be8
6
+ metadata.gz: dca0fc395ae735e725eb79e9768519986212b587b78e1ca1692351daa8252ff5124b1f660ed256da522713c1c875500282662bd8a67e54a73000d1c38111538a
7
+ data.tar.gz: 6615c7f673d6dee9d039e38d2988f06436891bdec8fc5ce97985b086f3e35a26911542af322d6dbe97d4e523487082949aaa7ca94f72dba5a52e2b76d222c436
@@ -6,33 +6,6 @@
6
6
  "button-background":"red",
7
7
  "socialshareheading":"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 ! ",
8
8
  "recommendedsitesheading":"Try our other sites for safe processing of you files ! ",
9
- "recommendedsites":[
10
- {
11
- "name":"Safepdfkit.com",
12
- "url":"https://safepdfkit.com",
13
- "logo":"https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
14
- },
15
- {
16
- "name":"Safepdfkit.com",
17
- "url":"https://safepdfkit.com",
18
- "logo":"https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
19
- },
20
- {
21
- "name":"Safepdfkit.com",
22
- "url":"https://safepdfkit.com",
23
- "logo":"https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
24
- },
25
- {
26
- "name":"Safepdfkit.com",
27
- "url":"https://safepdfkit.com",
28
- "logo":"https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
29
- },
30
- {
31
- "name":"Safepdfkit.com",
32
- "url":"https://safepdfkit.com",
33
- "logo":"https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
34
- }
35
- ],
36
9
  "recommendedfeatures":[
37
10
  {
38
11
  "name":"Split pdf",
@@ -88,7 +88,7 @@
88
88
  ],
89
89
  "HOW_TO_CONTENT": {
90
90
  "logoImageUrl": "/assets/pdf.svg",
91
- "heading": "How to set alarm for $variable minutes:",
91
+ "heading": "",
92
92
  "steps": [
93
93
  "Click on set alarm",
94
94
  "Set $variable minutes for alarm.",
@@ -1 +1 @@
1
- {"tools":[{"name":"split-pdf","rating":"4.14","votes":7},{"name":"compress-pdf","rating":"4.86","votes":7}]}
1
+ {"tools":[{"name":"split-pdf-rating-check","rating":"5.00","votes":2},{"name":"compress-pdf","rating":"4.81","votes":26}]}
@@ -23,8 +23,26 @@
23
23
  "@type": "AggregateRating",
24
24
  "worstRating":"1",
25
25
  "bestRating":"5",
26
- "ratingValue": "{{rating}}",
27
- "ratingCount": "{{votes}}"
26
+ "ratingValue":
27
+ {%- if rating -%}
28
+ {%- if rating=='NaN' -%}
29
+ "5"
30
+ {%- else -%}
31
+ "{{rating}}"
32
+ {%- endif -%}
33
+ {%- else -%}
34
+ "5"
35
+ {%- endif -%},
36
+ "ratingCount": {%- if votes -%}
37
+ {%- if votes== 0 -%}
38
+ "1"
39
+ {%- else -%}
40
+ "{{votes}}"
41
+ {%- endif -%}
42
+ {%- else -%}
43
+ "1"
44
+ {%- endif -%}
45
+
28
46
  },
29
47
  "offers": {
30
48
  "@type": "Offer",
@@ -34,7 +34,9 @@
34
34
  <meta data-rh="true" name="twitter:title" content="{{title}}">
35
35
  <meta data-rh="true" name="twitter:description" content="{{description}}">
36
36
  <meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}">
37
+ {%- if site.pwa -%}
37
38
  <link rel="manifest" href="./manifest.json">
39
+ {%- endif -%}
38
40
  {%- for item in variable.langsupport -%}
39
41
  <link data-rh="true" rel="alternate" href="{{site.url | append: item.permalink}}" hreflang="{{item.hreflang}}">
40
42
  {%- endfor -%}
@@ -55,8 +57,8 @@
55
57
  "alternateName": "{{site.alternateName}}",
56
58
  "url": "{{site.siteurl}}"}
57
59
  </script>
58
- {%- if dataToShow.HOW_TO_CONTENT.size>0 -%}
59
-
60
+ {%- if dataToShow.HOW_TO_CONTENT -%}
61
+ {%- if dataToShow.HOW_TO_CONTENT.heading != '' -%}
60
62
  <script type="application/ld+json">
61
63
  {
62
64
  "@context": "http://schema.org",
@@ -83,43 +85,47 @@
83
85
  }
84
86
  </script>
85
87
  {%- endif -%}
86
-
87
- {%- if dataToShow.FAQ.size>0 -%}
88
-
89
- <script type="application/ld+json">
90
- {
91
- "@context": "http://schema.org",
92
- "@type": "FAQPage",
93
- "mainEntity": [
94
- {%- for item in dataToShow.FAQ-%}
95
- {%- if forloop.last == true -%}
96
- {"@type": "Question",
97
- "name": "{{item.question | replace:'"', "'" }}",
98
- "acceptedAnswer": {
99
- "@type": "Answer",
100
- "text": "{{item.answer | replace:'"', "'" }}"
101
- }
102
- }
103
- {%- else -%}
104
- {"@type": "Question",
105
- "name": "{{item.question | replace:'"', "'" }}",
106
- "acceptedAnswer": {
107
- "@type": "Answer",
108
- "text": "{{item.answer | replace:'"', "'" }}"
109
- }
110
- },
111
- {%- endif -%}
112
- {%- endfor -%}
113
- ]
114
- }
115
- </script>
116
88
  {%- endif -%}
89
+
90
+ {%- if dataToShow.FAQ -%}
91
+ {%- if dataToShow.FAQ.first.question !='' -%}
92
+ <script type="application/ld+json">
93
+ {
94
+ "@context": "http://schema.org",
95
+ "@type": "FAQPage",
96
+ "mainEntity": [
97
+ {%- for item in dataToShow.FAQ-%}
98
+ {%- if forloop.last == true -%}
99
+ {"@type": "Question",
100
+ "name": "{{item.question | replace:'"', "'" }}",
101
+ "acceptedAnswer": {
102
+ "@type": "Answer",
103
+ "text": "{{item.answer | replace:'"', "'" }}"
104
+ }
105
+ }
106
+ {%- else -%}
107
+ {"@type": "Question",
108
+ "name": "{{item.question | replace:'"', "'" }}",
109
+ "acceptedAnswer": {
110
+ "@type": "Answer",
111
+ "text": "{{item.answer | replace:'"', "'" }}"
112
+ }
113
+ },
114
+ {%- endif -%}
115
+ {%- endfor -%}
116
+ ]
117
+ }
118
+ </script>
119
+ {%- endif -%}
120
+ {%- endif -%}
121
+
117
122
 
118
123
  {%- if page.tool -%}
119
124
  {%- include Rating/structureddata.html -%}
120
125
  {%- endif -%}
121
126
  <!-- GA -->
122
127
  {%- include google-analytics.html -%}
128
+ {%- if site.pwa -%}
123
129
  <script>
124
130
  if ('serviceWorker' in navigator) {
125
131
  window.addEventListener('load', () => {
@@ -129,5 +135,7 @@
129
135
  })
130
136
  }
131
137
  </script>
138
+ {%- endif -%}
139
+
132
140
  </head>
133
141
 
@@ -12,7 +12,7 @@
12
12
  <h1 class="contact-h1 py-2">Contact us</h1>
13
13
  <h2 class="contact-h2">Welcome to {{page.companyName}}</h2>
14
14
  <div class="py-3">
15
- <div class="py-3"><p>We, <b>{{page.companyName}}</b> LLP, registered under the provisions of the Limited Liability Partnership Act 2008, having its registered office at “493 Saket, Pilkhuwa, Ghaziabad, Uttar Pradesh – 245 304, INDIA represented by its Directors, hereinafter referred to as the “FIRM” (where such expression shall, unless repugnant to the context thereof, be deemed to include its respective legal heirs, representatives, administrators, permitted successors and assigns).</p><p>The Firm will not be responsible for any damage suffered by users from use of the Platform. This includes but is not limited to, loss of revenue/data resulting from delays, non-deliveries, missed deliveries, or service interruptions as may occur because of any act/omission of parties. This disclaimer of liability also applies to any damages or injury caused by any failure of performance, error, omission, interruption, deletion, defect, delay in operation or transmission, computer virus, communication line failure, theft or destruction or unauthorized access to, alteration of, or use of record, whether for breach of contract, tortuous behaviour, negligence, or under any other cause of action.</p><p>The Firm also makes it clear that it shall not be held liable for any damage/hurt/inconvenience caused to the User through the course of the provision of Services or as a result of the Users’ actions. The Firm makes no representations or warranties as to the conduct of the Users. The Firm takes no responsibility for any content that Users send or receive from other Users or Third-Party posts through the Website or Platform. Any material downloaded or otherwise obtained through use of the service is accessed at the Users own discretion and risk.</p><p>The services on the Platform are intended to be subject to availability, without any promises or guarantees on the same by the Firm, and while certain information available on the Platform is the property of the Firm and the Firm endeavours to keep the said information updated and accurate, the Firm shall not make any representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the Platform or the information, services, or related graphics contained on the Platform for any purpose. Any reliance you place on such information is therefore strictly at your own risk.</p><p>The Firm bears no responsibility whatsoever for any consequences arising from the use of the said Services by Users. The use of the Services in the Platform is the sole responsibility of the User (or legally authorised person on behalf of the User), and in case of any negligence on the part of the User is acting on the same shall not be construed as imposing any liability, direct or indirect, on the Firm /Platform.</p><p>The Firm shall disclaim all responsibility and owns no liability to Users for any outcome (incidental, direct, indirect or otherwise) from the use of the Platform or any such services under the platform. In no event will the Firm be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of the Platform.</p><p>Through this Platform, You may be able to access the link of other Platforms which are not under the control of the Firm or the Platform. We have no control over the nature, content and availability of those sites. The inclusion of any links does not necessarily imply a recommendation or endorse the views expressed within them. Every effort is made to keep the Platform up and running smoothly. However, the Firm takes no responsibility for, and will not be liable for, the Platform being temporarily unavailable due to technical issues beyond our control.</p><p>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE WILL HAVE NO LIABILITY RELATED TO USER CONTENT ARISING UNDER INTELLECTUAL PROPERTY RIGHTS, LIBEL, PRIVACY, PUBLICITY, OBSCENITY OR OTHER LAWS. WEBSITE ALSO DISCLAIMS ALL LIABILITY WITH RESPECT TO THE MISUSE, LOSS, MODIFICATION OR UNAVAILABILITY OF ANY USER CONTENT.</p><p>THE USER UNDERSTANDS AND AGREES THAT ANY MATERIAL OR DATA DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE PLATFORM IS DONE ENTIRELY AT HIS/HER OWN DISCRETION AND RISK AND HE/SHE WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO HIS/HER COMPUTER SYSTEMS OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF SUCH MATERIAL OR DATA. WE ARE NOT RESPONSIBLE FOR ANY TYPOGRAPHICAL ERROR LEADING. PLATFORM ACCEPTS NO LIABILITY FOR ANY ERRORS OR OMISSIONS, WITH RESPECT TO ANY INFORMATION PROVIDED TO YOU WHETHER ON BEHALF OF ITSELF OR THIRD PARTIES.</p><p>THE ADVERTISEMENT THAT MAY BE AVAILABLE ON E-MAIL OR WEBSITE WITH RESPECT TO THE THIRD-PARTY WEBSITE AND SERVICES ARE FOR INFORMATION PURPOSE ONLY.</p></div>
15
+ <div class="py-3"><p>We, <b>{{page.companyName}}</b> LLP, registered under the provisions of the Limited Liability Partnership Act 2008, having its registered office at "Ghaziabad, Uttar Pradesh – 245304, INDIA" represented by its Directors, hereinafter referred to as the “FIRM” (where such expression shall, unless repugnant to the context thereof, be deemed to include its respective legal heirs, representatives, administrators, permitted successors and assigns).</p><p>The Firm will not be responsible for any damage suffered by users from use of the Platform. This includes but is not limited to, loss of revenue/data resulting from delays, non-deliveries, missed deliveries, or service interruptions as may occur because of any act/omission of parties. This disclaimer of liability also applies to any damages or injury caused by any failure of performance, error, omission, interruption, deletion, defect, delay in operation or transmission, computer virus, communication line failure, theft or destruction or unauthorized access to, alteration of, or use of record, whether for breach of contract, tortuous behaviour, negligence, or under any other cause of action.</p><p>The Firm also makes it clear that it shall not be held liable for any damage/hurt/inconvenience caused to the User through the course of the provision of Services or as a result of the Users’ actions. The Firm makes no representations or warranties as to the conduct of the Users. The Firm takes no responsibility for any content that Users send or receive from other Users or Third-Party posts through the Website or Platform. Any material downloaded or otherwise obtained through use of the service is accessed at the Users own discretion and risk.</p><p>The services on the Platform are intended to be subject to availability, without any promises or guarantees on the same by the Firm, and while certain information available on the Platform is the property of the Firm and the Firm endeavours to keep the said information updated and accurate, the Firm shall not make any representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the Platform or the information, services, or related graphics contained on the Platform for any purpose. Any reliance you place on such information is therefore strictly at your own risk.</p><p>The Firm bears no responsibility whatsoever for any consequences arising from the use of the said Services by Users. The use of the Services in the Platform is the sole responsibility of the User (or legally authorised person on behalf of the User), and in case of any negligence on the part of the User is acting on the same shall not be construed as imposing any liability, direct or indirect, on the Firm /Platform.</p><p>The Firm shall disclaim all responsibility and owns no liability to Users for any outcome (incidental, direct, indirect or otherwise) from the use of the Platform or any such services under the platform. In no event will the Firm be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of the Platform.</p><p>Through this Platform, You may be able to access the link of other Platforms which are not under the control of the Firm or the Platform. We have no control over the nature, content and availability of those sites. The inclusion of any links does not necessarily imply a recommendation or endorse the views expressed within them. Every effort is made to keep the Platform up and running smoothly. However, the Firm takes no responsibility for, and will not be liable for, the Platform being temporarily unavailable due to technical issues beyond our control.</p><p>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE WILL HAVE NO LIABILITY RELATED TO USER CONTENT ARISING UNDER INTELLECTUAL PROPERTY RIGHTS, LIBEL, PRIVACY, PUBLICITY, OBSCENITY OR OTHER LAWS. WEBSITE ALSO DISCLAIMS ALL LIABILITY WITH RESPECT TO THE MISUSE, LOSS, MODIFICATION OR UNAVAILABILITY OF ANY USER CONTENT.</p><p>THE USER UNDERSTANDS AND AGREES THAT ANY MATERIAL OR DATA DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE PLATFORM IS DONE ENTIRELY AT HIS/HER OWN DISCRETION AND RISK AND HE/SHE WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO HIS/HER COMPUTER SYSTEMS OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF SUCH MATERIAL OR DATA. WE ARE NOT RESPONSIBLE FOR ANY TYPOGRAPHICAL ERROR LEADING. PLATFORM ACCEPTS NO LIABILITY FOR ANY ERRORS OR OMISSIONS, WITH RESPECT TO ANY INFORMATION PROVIDED TO YOU WHETHER ON BEHALF OF ITSELF OR THIRD PARTIES.</p><p>THE ADVERTISEMENT THAT MAY BE AVAILABLE ON E-MAIL OR WEBSITE WITH RESPECT TO THE THIRD-PARTY WEBSITE AND SERVICES ARE FOR INFORMATION PURPOSE ONLY.</p></div>
16
16
  <div>
17
17
  </div>
18
18
  </div>
@@ -10,8 +10,52 @@
10
10
  <div class="container">
11
11
  <div class="download-section">
12
12
  <div class="row">
13
- <div class="col-md-8 px-0">
14
- <p class="success-msg" >Hurry! your operation was completed</p>
13
+ <div class="col-md-12 px-0">
14
+ <p class="success-msg" > <?xml version="1.0" encoding="iso-8859-1"?>
15
+ <svg height='22px' width='22px' version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
16
+ viewBox="0 0 496.158 496.158" style="enable-background:new 0 0 496.158 496.158;" xml:space="preserve">
17
+ <path style="fill:#32BEA6;" d="M496.158,248.085c0-137.021-111.07-248.082-248.076-248.082C111.07,0.003,0,111.063,0,248.085
18
+ c0,137.002,111.07,248.07,248.082,248.07C385.088,496.155,496.158,385.087,496.158,248.085z"/>
19
+ <path style="fill:#FFFFFF;" d="M384.673,164.968c-5.84-15.059-17.74-12.682-30.635-10.127c-7.701,1.605-41.953,11.631-96.148,68.777
20
+ c-22.49,23.717-37.326,42.625-47.094,57.045c-5.967-7.326-12.803-15.164-19.982-22.346c-22.078-22.072-46.699-37.23-47.734-37.867
21
+ c-10.332-6.316-23.82-3.066-30.154,7.258c-6.326,10.324-3.086,23.834,7.23,30.174c0.211,0.133,21.354,13.205,39.619,31.475
22
+ c18.627,18.629,35.504,43.822,35.67,44.066c4.109,6.178,11.008,9.783,18.266,9.783c1.246,0,2.504-0.105,3.756-0.322
23
+ c8.566-1.488,15.447-7.893,17.545-16.332c0.053-0.203,8.756-24.256,54.73-72.727c37.029-39.053,61.723-51.465,70.279-54.908
24
+ c0.082-0.014,0.141-0.02,0.252-0.043c-0.041,0.01,0.277-0.137,0.793-0.369c1.469-0.551,2.256-0.762,2.301-0.773
25
+ c-0.422,0.105-0.641,0.131-0.641,0.131l-0.014-0.076c3.959-1.727,11.371-4.916,11.533-4.984
26
+ C385.405,188.218,389.034,176.214,384.673,164.968z"/>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ <g>
42
+ </g>
43
+ <g>
44
+ </g>
45
+ <g>
46
+ </g>
47
+ <g>
48
+ </g>
49
+ <g>
50
+ </g>
51
+ <g>
52
+ </g>
53
+ <g>
54
+ </g>
55
+ <g>
56
+ </g>
57
+ </svg>
58
+ Hurry! your operation was completed</p>
15
59
  <div class="try-more-features ">
16
60
  <h2 class="success-msg border-bottom-none" >Try These features</h2>
17
61
  <div class="row feature-showcase " >
@@ -27,12 +71,6 @@
27
71
  </div>
28
72
  </div>
29
73
  </div>
30
-
31
- <div class="col-md-4 download-btn-container ">
32
- <p id="filename" class="download-file-name text-left"></p>
33
- <a id="file-download-button" class="download-download-btn btn " style="background-color: {{downloadData.button-background}};" download href="#"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M18 20H5V15H6V19H17V15H18V20ZM12 4V15.19L14.3 13L15 13.6667L11.5 17L8 13.6667L8.7 13L11 15.19V4H12Z"></path></svg>DOWNLOAD</a>
34
- </div>
35
-
36
74
  <div class="col-md-12 download-page-rate-us">
37
75
  <div class="rating-tool" style="border: none;">
38
76
  <img id="rating-img" loading='lazy' src="/assets/images/rating.png" alt="rating-img">
@@ -115,7 +153,6 @@
115
153
  localStorage.setItem(`${tool}rating`,index+1)
116
154
  }}))
117
155
  </script>
118
-
119
156
  </div>
120
157
  <div class="col-12">
121
158
  <div class="download-social-share">
@@ -138,7 +175,6 @@
138
175
  data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
139
176
  <i class="fa-fw {{ share.icon }} mb-0 py-3"></i>
140
177
  </a>
141
-
142
178
  {% endfor %}
143
179
  </div>
144
180
  </ul>
@@ -158,39 +194,46 @@
158
194
 
159
195
  {%- if downloadData.recommendedsites -%}
160
196
  {%- assign recommendedsitesData = downloadData.recommendedsites -%}
161
- {%- else -%}
162
- {%- assign recommendedsitesData = downloadData.recommendedsites -%}
163
- {%- endif -%}
164
197
  {%- for item in recommendedsitesData -%}
165
198
  <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
166
- <img src="{{item.logo}}" alt=""> <a target="_blank" href="{{item.url}}">{{item.name}}</a> </div>
167
-
199
+ <img loading='lazy' src="{{item.logo}}" alt="{{item.name}} logo"> <a target="_blank" href="{{item.url}}">{{item.name}}</a>
200
+ </div>
168
201
  {%- endfor -%}
169
- </div>
170
-
202
+ {%- else -%}
203
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
204
+ <img loading='lazy' src="https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg" alt="safepdfkitlogo"> <a target="_blank" href="https://safepdfkit.com">Safepdfkit.com</a>
205
+ </div>
206
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
207
+ <img loading='lazy' src="https://d33wubrfki0l68.cloudfront.net/796c1a01dae9c2d10224fd72a820156974b26ab1/3b885/assets/images/logo.png" alt="Safeaudiokit-logo"> <a target="_blank" href="https://safeaudiokit.com">safeaudiokit.com</a>
208
+ </div>
209
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
210
+ <img src="https://d33wubrfki0l68.cloudfront.net/ab0207d780c019c54db62b002396bc8c3fddddaf/9abb9/assets/safevideokit.svg" alt="Safevideokitlogo"> <a target="_blank" href="https://safevideokit.com">safevideokit.com</a>
211
+ </div>
212
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
213
+ <img loading='lazy' src="https://d33wubrfki0l68.cloudfront.net/2e37a1020563aa528471da7425b8e58343e2baf7/a186c/picture.png" alt="Safeimagekitlogo"> <a target="_blank" href="https://safeimagekit.com/">safeimagekit.com</a>
214
+ </div>
215
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
216
+ <img loading='lazy' src="https://d33wubrfki0l68.cloudfront.net/74bf3f3836d56b30d16137169cd4c28bf15494ed/11962/js/pt.png" alt="safezipkitlogo"> <a target="_blank" href="https://safezipkit.com/">safezipkit.com</a>
217
+ </div>
218
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
219
+ <img loading='lazy' src="https://d33wubrfki0l68.cloudfront.net/325cdfad7de6cae4a03aecfadc70b38af754cbd0/d87f9/assets/images/logo.png" alt="Safeimageconverter logo"> <a target="_blank" href="https://safeaudioconverter.com/"> safeaudioconverter.com
171
220
 
172
-
221
+ </a>
222
+ </div>
223
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
224
+ <img loading='lazy' src="https://safevideoconverter.com/assets/logo.svg" alt="https:safevideoconverter logo"> <a target="_blank" href="https://safevideoconverter.com/">safevideoconverter.com</a>
225
+ </div>
226
+ <div class="col-md-4 col-sm-6 mb-4 col-lg-3">
227
+ <img loading='lazy' src="https://d33wubrfki0l68.cloudfront.net/c8fef6be5192b9fa57b8503c6ad93befa361926d/a66d0/picture.svg" alt="safeimageconverter logo"> <a target="_blank" href="https://safeimageconverter.com/">safeimageconverter</a>
228
+ </div>
229
+ {%- endif -%}
230
+
231
+ </div>
173
232
  </div>
174
233
  </div>
175
234
 
176
235
  {% include footer/index.html %}
177
236
  {% include script.html %}
178
- <script>
179
- document.addEventListener("DOMContentLoaded", function(event) {
180
- const urlParams = new URLSearchParams(window.location.search)
181
- let file = urlParams.get('filename')
182
- let data= urlParams.get('data')
183
- // const blob = new Blob([`${data}`], { type: 'text/plain' });
184
- // const blobUrl = URL.createObjectURL(blob);
185
- // console.log(blobUrl);
186
- const fileName=document.getElementById('filename')
187
- console.log(fileName);
188
- const downloadBtn=document.getElementById('file-download-button')
189
- downloadBtn.href=data
190
- filename.innerHTML=file
191
-
192
- });
193
- </script>
194
237
  </body>
195
238
 
196
239
  </html>
@@ -18,7 +18,7 @@
18
18
  <div class="py-3">
19
19
  <p>The Firm ensures steady commitment to Your usage of the Platform and privacy with regard to the
20
20
  protection of Your invaluable information. This document contains information about the Website and
21
- domain https://alarmsetter.com (hereinafter referred to as the “Platform” ).</p>
21
+ domain https://{{ page.companyName }} (hereinafter referred to as the “Platform” ).</p>
22
22
  <p>For the purpose of these Terms of Use (“Terms”), wherever the context so requires,</p>
23
23
  <p>1. “We”, “Our”, and “Us” shall mean and refer to the Domain and/or the Firm, as the context so
24
24
  requires.</p>
@@ -67,7 +67,7 @@
67
67
  under your account, whether or not you have authorized such activities or actions. You will
68
68
  immediately notify us of any hereinbelow use of your account.</p>
69
69
  <h3> PLATFORM OVERVIEW </h3>
70
- <p>@alarmsetter.com is a platform owned and operated by @alarmsetter.com LLP which is a limited
70
+ <p>@{{ page.companyName }} is a platform owned and operated by @{{ page.companyName }} LLP which is a limited
71
71
  liability partnership registered under the provisions of the Limited Liability Partnership Act,
72
72
  2008.</p>
73
73
  <p>Servers for this website are hosted on Firebase. User is not required to install any software on his
@@ -125,7 +125,7 @@
125
125
  the User shall not have the right to terminate these Terms till the expiry of the same.</p>
126
126
  <p>COMMUNICATION By using this Platform and providing his/her identity and contact information to the
127
127
  Firm through the Platform, the Users hereby agree and consent to receive calls, e-mails or SMS from
128
- the Firm and/or any of its representatives at any time. User can report to care@alarmsetter.com if
128
+ the Firm and/or any of its representatives at any time. User can report to care@{{ page.companyName }} if
129
129
  they find any discrepancy with regard to Platform or content-related information and the Firm will
130
130
  take necessary action after an investigation. The response with resolution (if any issues found)
131
131
  shall be dependent on the time is taken for investigation. The User expressly agrees that
@@ -365,7 +365,7 @@
365
365
  <p>The Parties expressly agree that the Terms of Use, Privacy Policy and any other agreements entered
366
366
  into between the Parties are governed by the laws, rules and regulations of India</p>
367
367
  <p>Any and all communication relating to any dispute or grievance experienced by the User may be
368
- communicated to the Firm by the User by emailing to care@alarmsetter.com.</p>
368
+ communicated to the Firm by the User by emailing to care@{{ page.companyName }}.</p>
369
369
  <h3> NOTICES </h3>
370
370
  <h3> MISCELLANEOUS PROVISIONS </h3>
371
371
  <p>1. <b>Entire Agreement:</b> These Terms, read with the Policy, form the complete and final contract
@@ -387,7 +387,7 @@
387
387
  expressed herein.</p>
388
388
  <p>4.<b> Contact Us</b>: If you have any questions about this Policy, the practices of the Platform, or
389
389
  your experience with the Service provided by the Platform, you can contact us at
390
- care@alarmsetter.com.</p>
390
+ care@{{ page.companyName }}.</p>
391
391
  </div>
392
392
  </div>
393
393
  <div>
@@ -11,10 +11,10 @@
11
11
  {%- include dropdown/langdropdown.html -%}
12
12
  <div class="container py-4">
13
13
  <h1 class="about-h1 py-4">Terms and condtions</h1>
14
- <div class="py-3">
14
+ <div class="py-3">
15
15
  <div class="py-3">
16
16
  <p>We,<b>{{page.companyName}}</b>, registered under the provisions of the Limited Liability Partnership Act 2008,
17
- having its registered office at “493 Saket, Pilkhuwa, Ghaziabad, Uttar Pradesh – 245 304, INDIA
17
+ having its registered office at "Ghaziabad, Uttar Pradesh – 245304, INDIA"
18
18
  represented by its Directors, hereinafter referred to as the <b>“FIRM”</b> (where such expression
19
19
  shall, unless repugnant to the context thereof, be deemed to include its respective legal heirs,
20
20
  representatives, administrators, permitted successors and assigns).</p>
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: 0.8.0
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-10 00:00:00.000000000 Z
11
+ date: 2021-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -57,11 +57,8 @@ email:
57
57
  - vivek@appscms.com
58
58
  executables: []
59
59
  extensions: []
60
- extra_rdoc_files:
61
- - serviceworker.js
62
- - "./serviceworker.js"
60
+ extra_rdoc_files: []
63
61
  files:
64
- - "./serviceworker.js"
65
62
  - LICENSE.txt
66
63
  - README.md
67
64
  - _data/about/en/about.json
@@ -141,8 +138,6 @@ files:
141
138
  - assets/css/tools.css
142
139
  - assets/easy.svg
143
140
  - assets/facebook.svg
144
- - assets/files/en/jpg.json
145
- - assets/files/en/png.json
146
141
  - assets/guaranty.svg
147
142
  - assets/images/Ankita.webp
148
143
  - assets/images/Anushka.webp
@@ -165,7 +160,6 @@ files:
165
160
  - assets/support.svg
166
161
  - assets/twitter.svg
167
162
  - assets/youtube.svg
168
- - serviceworker.js
169
163
  homepage: https://github.com/Appscms-com/appscms-tools-theme
170
164
  licenses:
171
165
  - MIT
@@ -173,7 +167,7 @@ metadata: {}
173
167
  post_install_message:
174
168
  rdoc_options: []
175
169
  require_paths:
176
- - "."
170
+ - lib
177
171
  required_ruby_version: !ruby/object:Gem::Requirement
178
172
  requirements:
179
173
  - - ">="
@@ -1,61 +0,0 @@
1
- {
2
- "Format": "JPG",
3
- "ShortName": "jpg",
4
- "FullName": "jpg",
5
- "Category": "jpg",
6
- "Pros": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
7
- "Cons": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
8
- "CreatedbyName": "jpg",
9
- "CreatedbyLink": "jpg",
10
- "CreatedInYear": "2021",
11
- "BasicInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
12
- "DetailedInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
13
- "Softwaresused": [
14
- {
15
- "platform": "Windows",
16
- "softwares": [
17
- {
18
- "name": "Adobe Audition CC 2021",
19
- "link": "/",
20
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
21
- "type": "free"
22
- },
23
- {
24
- "name": "Adobe Audition CC 2021",
25
- "link": "/",
26
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
27
- "type": "paid"
28
- },
29
- {
30
- "name": "Adobe Audition CC 2021",
31
- "link": "/",
32
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
33
- "type": "freemium"
34
- }
35
- ]
36
- },
37
- {
38
- "platform": "Android",
39
- "softwares": [
40
- {
41
- "name": "Google",
42
- "link": "/",
43
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
44
- "type": "free"
45
- },
46
- {
47
- "name": "Apple",
48
- "link": "/",
49
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
50
- "type": "paid"
51
- },
52
- {
53
- "name": "Adobe Audition CC 2021",
54
- "link": "/",
55
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
56
- "type": "premium"
57
- }
58
- ]
59
- }
60
- ]
61
- }
@@ -1,61 +0,0 @@
1
- {
2
- "Format": "Png",
3
- "ShortName": "Png",
4
- "FullName": "Png",
5
- "Category": "Png",
6
- "Pros": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
7
- "Cons": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
8
- "CreatedbyName": "Png",
9
- "CreatedbyLink": "Png",
10
- "CreatedInYear": "2021",
11
- "BasicInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
12
- "DetailedInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
13
- "Softwaresused": [
14
- {
15
- "platform": "Windows",
16
- "softwares": [
17
- {
18
- "name": "Adobe Audition CC 2021",
19
- "link": "/",
20
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
21
- "type": "free"
22
- },
23
- {
24
- "name": "Adobe Audition CC 2021",
25
- "link": "/",
26
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
27
- "type": "paid"
28
- },
29
- {
30
- "name": "Adobe Audition CC 2021",
31
- "link": "/",
32
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
33
- "type": "freemium"
34
- }
35
- ]
36
- },
37
- {
38
- "platform": "Android",
39
- "softwares": [
40
- {
41
- "name": "Google",
42
- "link": "/",
43
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
44
- "type": "free"
45
- },
46
- {
47
- "name": "Apple",
48
- "link": "/",
49
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
50
- "type": "paid"
51
- },
52
- {
53
- "name": "Adobe Audition CC 2021",
54
- "link": "/",
55
- "image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
56
- "type": "premium"
57
- }
58
- ]
59
- }
60
- ]
61
- }
data/serviceworker.js DELETED
@@ -1,42 +0,0 @@
1
- const CACHE_NAME = 'v1'
2
- const urlsToCache = ['index.html']
3
-
4
- const self = this
5
-
6
- // Install SW
7
- self.addEventListener('install', (event) => {
8
- event.waitUntil(
9
- caches.open(CACHE_NAME).then((cache) => {
10
- console.log('Opened cache')
11
-
12
- return cache.addAll(urlsToCache)
13
- })
14
- )
15
- })
16
-
17
- // Listen for requests
18
- self.addEventListener('fetch', (event) => {
19
- event.respondWith(
20
- caches.match(event.request).then(() => {
21
- return fetch(event.request).catch(() => caches.match('index.html'))
22
- })
23
- )
24
- })
25
-
26
- // Activate the SW
27
- self.addEventListener('activate', (event) => {
28
- const cacheWhitelist = []
29
- cacheWhitelist.push(CACHE_NAME)
30
-
31
- event.waitUntil(
32
- caches.keys().then((cacheNames) =>
33
- Promise.all(
34
- cacheNames.map((cacheName) => {
35
- if (!cacheWhitelist.includes(cacheName)) {
36
- return caches.delete(cacheName)
37
- }
38
- })
39
- )
40
- )
41
- )
42
- })