appscms-tools-theme 0.6.9 → 0.7.0

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: 0e5feb1870c91fd580aefffa4abd5679cee117a4c425ab1af324d9437e502c3f
4
- data.tar.gz: 869c7cdc56c40b6479f8364f01d52331303bfb72627316cb4d5f6d65ac7ee6cc
3
+ metadata.gz: 2d9c611ab80d9f7e1ea29d55b9abc26ef2a6a6ec48288738e77ed2f8df66df9e
4
+ data.tar.gz: c3ec1c41b2e1139a502a4edf439dcd99c61e7ee4dcee24c64dd276356ec8e2e2
5
5
  SHA512:
6
- metadata.gz: 61db1943c7875c607c4816ec2a240e595e05cb631052c66c275a0845bd442590283538b5825f6749b55f0efee4476ab81eb07cc6539eba2b928b4629dbe2f914
7
- data.tar.gz: 053054f00b02b88085fea39d46d08f7aed4fca8749005a8c4a5dc9ed08b7c9d37ef8db5cd2a73ff84c38530a4550f0f909edeca3a9b478749f82b0bf2a7389cc
6
+ metadata.gz: 3df22f211c8fc8e632f3b3a9da0c51dd985511f7812e6c65b521ff357695815f8fbc1637a1f2a87bf818c7ac7f70ae8dfdef9db41f665559179057d5821f639d
7
+ data.tar.gz: 00eee2390b67cb7e45a965e179dcc63bf665c533968c3173fc3d054f13ccb8835fb0dca8c87f7a6b8730fbe90254cd453172775b8ac2003d5ad4cce339059a0e
@@ -13,17 +13,23 @@
13
13
  <script type="application/ld+json">
14
14
  {
15
15
  "@context": "http://schema.org",
16
- "@type": "Product",
17
- "brand": "{{site.name}}",
16
+ "@type": "WebApplication",
17
+ "operatingSystem":"All - Windows/Mac/iOS/Linux/Android",
18
+ "applicationCategory":"UtilitiesApplication",
18
19
  "name": "{{name}}",
19
- "description": "{{description}}",
20
- "category": "Productivity",
20
+ "url":"{{site.url | append: page.url}}",
21
+ "image":"{{site.siteurl}}{{site.logo}}",
21
22
  "aggregateRating": {
22
- "@type": "AggregateRating",
23
+ "@type": "AggregateRating",
23
24
  "worstRating":"1",
24
25
  "bestRating":"5",
25
26
  "ratingValue": "{{rating}}",
26
27
  "ratingCount": "{{votes}}"
28
+ },
29
+ "offers": {
30
+ "@type": "Offer",
31
+ "price": "0.00",
32
+ "priceCurrency": "USD"
27
33
  }
28
34
  }
29
35
  </script>
@@ -4,7 +4,7 @@
4
4
  <div class="container">
5
5
  <div class="footer-wrapper">
6
6
  {%- if dataToShow.logo -%}
7
- <div class="footer-logo-cont"><img loading="lazy" src="{{dataToShow.logo}}" height="100px" width='180px' title="logo"
7
+ <div class="footer-logo-cont"><img loading="lazy" src="{{dataToShow.logo}}" title="logo"
8
8
  class="footer-logo">
9
9
  <div class="footer-title">{{dataToShow.heading}}</div>
10
10
  </div>
@@ -1,5 +1,5 @@
1
1
  <header id="header">
2
- <nav class="navbar navbar-expand-lg navbar-dark bg-light mx-xl-4 py-3">
2
+ <nav class="navbar navbar-expand-lg navbar-dark bg-light py-3">
3
3
  {%- assign navbar = site.data.blog.nav -%}
4
4
  {% if navbar.navbarBrandText != "" %}
5
5
  <a class="navbar-brand" href="/" title="{{navbar.navbarBrandText}}">{{navbar.navbarBrandText}}</a>
@@ -9,9 +9,9 @@
9
9
  {% include header/index.html %}
10
10
  {%- include dropdown/langdropdown.html -%}
11
11
  <div class="container py-4 about_layout">
12
- <h1 class="about-h1 py-2">{{aboutData.h1}}</h1>
13
- <h2 class="about-h2">{{aboutData.h2}}</h2>
14
- <p class="about-para py-2">{{aboutData.paragraph}}</p>
12
+ <h1 class="about-h1 py-2">About us</h1>
13
+ <h2 class="about-h2"> Welcome to {{ page.companyName}}</h2>
14
+ <p class="about-para py-2">We are here to help you. Ping us your queries at care@{{ page.companyName}}.{{page.domain}}</p>
15
15
  <div>
16
16
  {{content}}
17
17
  </div>
@@ -9,39 +9,12 @@
9
9
  {% include header/index.html %}
10
10
  {%- include dropdown/langdropdown.html -%}
11
11
  <div class="container py-4 contact_layout">
12
- <h1 class="contact-h1 py-2">{{contactData.h1}}</h1>
13
- <h2 class="contact-h2">{{contactData.h2}}</h2>
12
+ <h1 class="contact-h1 py-2">Contact us</h1>
13
+ <h2 class="contact-h2">Welcome to {{page.companyName}}</h2>
14
14
  <div class="py-3">
15
- {%- for item in contactData.contactUs -%}
16
- {%- if item.li -%}
17
- <li> {{item.li}} </li>
18
- {%- endif -%}
19
- {%- if item.h1 -%}
20
- <h1> {{item.h1}} </h1>
21
- {%- endif -%}
22
- {%- if item.h2 -%}
23
- <h2 class="common-h2"> {{item.h2}} </h2>
24
- {%- endif -%}
25
- {%- if item.p -%}
26
- <p>{{item.p | replace:"$companyName", page.companyName | replace:"$domain", page.domain }}</p>
27
- {%- endif -%}
28
- {%- if item.h3 -%}
29
- <h3> {{item.h3}} </h3>
30
- {%- endif -%}
31
- {%- if item.h4 -%}
32
- <h4> {{item.h4}} </h4>
33
- {%- endif -%}
34
- {%- if item.h5 -%}
35
- <h5> {{item.h5}} </h5>
36
- {%- endif -%}
37
- {%- if item.h6 -%}
38
- <h6> {{item.h6}} </h6>
39
- {%- endif -%}
40
- {%- endfor -%}
41
- </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 “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>
42
16
  <div>
43
- {{content}}
44
- </div>
17
+ </div>
45
18
  </div>
46
19
  {% include footer/index.html %}
47
20
  {% include script.html %}
@@ -9,36 +9,22 @@
9
9
  {% include header/index.html %}
10
10
  {%- include dropdown/langdropdown.html -%}
11
11
  <div class="container py-4">
12
- <h1 class="about-h1 py-4">{{disclaimerData.h1}}</h1>
13
- <h2 class="about-h2">{{disclaimerData.h2}}</h2>
12
+ <h1 class="about-h1 py-4">Disclaimer</h1>
14
13
  <div class="py-3">
15
- {%- for item in disclaimerData.disclaimer -%}
16
- {%- if item.li -%}
17
- <li> {{item.li}} </li>
18
- {%- endif -%}
19
- {%- if item.h1 -%}
20
- <h1> {{item.h1}} </h1>
21
- {%- endif -%}
22
- {%- if item.h2 -%}
23
- <h2 class="common-h2"> {{item.h2}} </h2>
24
- {%- endif -%}
25
- {%- if item.p -%}
26
- <p>{{item.p | replace:"$companyName", page.companyName | replace:"$domain", page.domain }}</p>
27
- {%- endif -%}
28
- {%- if item.h3 -%}
29
- <h3> {{item.h3}} </h3>
30
- {%- endif -%}
31
- {%- if item.h4 -%}
32
- <h4> {{item.h4}} </h4>
33
- {%- endif -%}
34
- {%- if item.h5 -%}
35
- <h5> {{item.h5}} </h5>
36
- {%- endif -%}
37
- {%- if item.h6 -%}
38
- <h6> {{item.h6}} </h6>
39
- {%- endif -%}
40
- {%- endfor -%}
41
- </div>
14
+ <p>We, {{page.companyName}}, 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).
15
+ </p>
16
+ <p>
17
+ 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.
18
+ </p>
19
+ <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>
20
+ <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>
21
+ <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>
22
+ <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>
23
+ <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>
24
+ <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>
25
+ <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>
26
+ <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>
27
+ </div>
42
28
  <div>
43
29
  {{content}}
44
30
  </div>
data/_layouts/help.html CHANGED
@@ -9,9 +9,9 @@
9
9
  {% include header/index.html %}
10
10
  {%- include dropdown/langdropdown.html -%}
11
11
  <div class="container py-4">
12
- <h1 class="about-h1 py-2">{{helpData.h1}}</h1>
13
- <h2 class="about-h2">{{helpData.h2}}</h2>
14
- <p class="py-2">{{helpData.paragraph}}</p>
12
+ <h1 class="about-h1 py-2">Help</h1>
13
+ <h2 class="about-h2"> Welcome to {{page.companyName}}.{{page.domain}}</h2>
14
+ <p class="py-2">We are here to help you. Ping us your queries at care@{{ page.companyName}}.{{page.domain}}</p>
15
15
  <div>
16
16
  {{content}}
17
17
  </div>
@@ -9,35 +9,9 @@
9
9
  {% include header/index.html %}
10
10
  {%- include dropdown/langdropdown.html -%}
11
11
  <div class="container py-4">
12
- <h1 class="about-h1 py-4">{{privacyData.h1}}</h1>
13
- <h2 class="about-h2">{{privacyData.h2}}</h2>
12
+ <h1 class="about-h1 py-4">Privacy Policy</h1>
14
13
  <div class="py-3">
15
- {%- for item in privacyData.privacyPolicy -%}
16
- {%- if item.li -%}
17
- <li> {{item.li}} </li>
18
- {%- endif -%}
19
- {%- if item.h1 -%}
20
- <h1> {{item.h1}} </h1>
21
- {%- endif -%}
22
- {%- if item.h2 -%}
23
- <h2 class="common-h2"> {{item.h2}} </h2>
24
- {%- endif -%}
25
- {%- if item.p -%}
26
- <p>{{item.p | replace:"$companyName", page.companyName | replace:"$domain", page.domain }}</p>
27
- {%- endif -%}
28
- {%- if item.h3 -%}
29
- <h3> {{item.h3}} </h3>
30
- {%- endif -%}
31
- {%- if item.h4 -%}
32
- <h4> {{item.h4}} </h4>
33
- {%- endif -%}
34
- {%- if item.h5 -%}
35
- <h5> {{item.h5}} </h5>
36
- {%- endif -%}
37
- {%- if item.h6 -%}
38
- <h6> {{item.h6}} </h6>
39
- {%- endif -%}
40
- {%- endfor -%}
14
+ <p> We, <b>{{ page.companyName }}</b>, 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>
41
15
  </div>
42
16
  <div>
43
17
  {{content}}
@@ -5,45 +5,398 @@
5
5
  <!DOCTYPE html>
6
6
  <html lang="{{termsData.htmlLangAtt}}">
7
7
  {% include head/index.html %}
8
+
8
9
  <body>
9
- {% include header/index.html %}
10
+ {% include header/index.html %}
10
11
  {%- include dropdown/langdropdown.html -%}
11
12
  <div class="container py-4">
12
- <h1 class="about-h1 py-4">{{termsData.h1}}</h1>
13
+ <h1 class="about-h1 py-4">Terms and condtions</h1>
13
14
  <div class="py-3">
14
- {%- for item in termsData.termsAndConditions -%}
15
- {%- if item.li -%}
16
- <li> {{item.li}} </li>
17
- {%- endif -%}
18
- {%- if item.h1 -%}
19
- <h1> {{item.h1}} </h1>
20
- {%- endif -%}
21
- {%- if item.h2 -%}
22
- <h2> {{item.h2}} </h2>
23
- {%- endif -%}
24
- {%- if item.p -%}
25
- <p>{{item.p | replace:"$companyName", page.companyName | replace:"$domain", page.domain }}</p>
26
- {%- endif -%}
27
- {%- if item.h3 -%}
28
- <h3> {{item.h3}} </h3>
29
- {%- endif -%}
30
- {%- if item.h4 -%}
31
- <h4> {{item.h4}} </h4>
32
- {%- endif -%}
33
- {%- if item.h5 -%}
34
- <h5> {{item.h5}} </h5>
35
- {%- endif -%}
36
- {%- if item.h6 -%}
37
- <h6> {{item.h6}} </h6>
38
- {%- endif -%}
39
- {%- endfor -%}
40
- </div>
41
- <div>
42
- {{content}}
15
+ <div class="py-3">
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”
18
+ represented by its Directors, hereinafter referred to as the <b>“FIRM”</b> (where such expression
19
+ shall, unless repugnant to the context thereof, be deemed to include its respective legal heirs,
20
+ representatives, administrators, permitted successors and assigns).</p>
21
+ <p>The Firm ensures steady commitment to Your usage of the Platform and privacy with regard to the
22
+ protection of Your invaluable information. This document contains information about the Website and
23
+ domain https://{{page.companyName}}.{{page.domain}} (hereinafter referred to as the “Platform” ).</p>
24
+ <p>For the purpose of these Terms of Use (“Terms”), wherever the context so requires,</p>
25
+ <p>1. “We”, “Our”, and “Us” shall mean and refer to the Domain and/or the Firm, as the context so
26
+ requires.</p>
27
+ <p>2. “You”, “Your”, “Yourself”, “User”, shall mean and refer to natural and legal individuals who use
28
+ the Platform and who is competent to enter into binding contracts, as per Indian laws.</p>
29
+ <p>3. “You”, “Your”, “Yourself”, “User”, shall mean and refer to natural and legal individuals who use
30
+ the Platform and who is competent to enter into binding contracts, as per Indian laws.</p>
31
+ <p>4. “Third Parties” refer to any Application, Firm or individual apart from the User and the creator
32
+ of this Platform/Domain.</p>
33
+ <p>5. The term “User” refers to the individuals who will be using the platform to avail the features
34
+ and the services of the platform.</p>
35
+ <p>6. “ The term “User” refers to the individuals who will be using the platform to avail the features
36
+ and the services of the platform.</p>
37
+ <p>7. The headings of each section in these Terms are only for the purpose of comanizing the various
38
+ provisions under these Terms in an orderly manner and shall not be used by either Party to interpret
39
+ the provisions contained herein in any manner. Further, it is specifically agreed to by the Parties
40
+ that the headings shall have no legal or contractual value.</p>
41
+ <p>8. “The User unequivocally agrees that these Terms and the aforementioned Policy constitute a legally
42
+ binding agreement between the User and the Firm, and that the User shall be subject to the rules,
43
+ guidelines, policies, terms, and conditions applicable to any service that is provided by the
44
+ Platform, and that the same shall be deemed to be incorporated into these Terms, and shall be
45
+ treated as part and parcel of the same. The User acknowledges and agrees that no signature or
46
+ express act is required to make these Terms and the Policy binding on the User and that the User’s
47
+ act of visiting any part of the Platform constitutes the User’s full and final acceptance of these
48
+ Terms and the aforementioned Policy.</p>
49
+ <p>9. “The Firm reserves the sole and exclusive right to amend or modify these Terms without any prior
50
+ permission or intimation to the User, and the User expressly agrees that any such amendments or
51
+ modifications shall come into effect immediately. The User has a duty to periodically check the
52
+ terms and stay updated on its requirements. If the User continues to use the Platform following such
53
+ a change, the User will be deemed to have consented to any and all amendments/modifications made to
54
+ the Terms. In so far as the User complies with these Terms, it is granted a personal, non-exclusive,
55
+ non-transferable, revocable, limited privilege to access and use the Platform and the Services. If
56
+ the User does not adhere to the changes, You must stop using the Services at once. Your continued
57
+ use of the Services will signify your acceptance of the changed terms.</p>
58
+ <h3> REGISTRATION </h3>
59
+ <p>1. The Users are also provided with an option to link their Facebook/Google accounts with the
60
+ Platform at the time of their registration in order to smoothen the process of registration.</p>
61
+ <p>2. Registration for this Platform is available for all age groups, barring those “Incompetent to
62
+ Contract” which inter alia include insolvents with an exception to Minors.</p>
63
+ <p>3. Further, at any time during Your use of this Platform, including but not limited to the time of
64
+ registration, You are solely responsible for protecting the confidentiality of Your Username and
65
+ password, and any activity under the account shall be deemed to have been done by You. In the case
66
+ that you provide us with false and/or inaccurate details or we have reason to believe you have done
67
+ so, we hold the right to permanently suspend your account. You agree that you will not disclose your
68
+ password to any third party and that you will take sole responsibility for any activities or actions
69
+ under your account, whether or not you have authorized such activities or actions. You will
70
+ immediately notify us of any hereinbelow use of your account.</p>
71
+ <h3> PLATFORM OVERVIEW </h3>
72
+ <p>@{{page.companyName}}.{{page.domain}} is a platform owned and operated by @{{page.companyName}}.{{page.domain}} LLP which is a limited liability
73
+ partnership registered under the provisions of the Limited Liability Partnership Act, 2008.</p>
74
+ <p>Servers for this website are hosted on Firebase. User is not required to install any software on his
75
+ machine to use the Platform. The Platform is User-friendly and is accessible on all software and all
76
+ devices such as Mac/Windows/Linux/Android/iOS.</p>
77
+ <h3> ELIGIBILITY </h3>
78
+ <p>Servers for this website are hosted on Firebase. User is not required to install any software on his
79
+ machine to use the Platform. The Platform is User-friendly and is accessible on all software and all
80
+ devices such as Mac/Windows/Linux/Android/iOS.</p>
81
+ <p>The Users may not use the Platform if they are not competent to contract or are disqualified from
82
+ doing so by any other applicable law, rule or regulation currently in force.</p>
83
+ <h3> CONTENT </h3>
84
+ <p>All text, graphics, User interfaces, visual interfaces, photographs, trademarks, logos, brand names,
85
+ descriptions, sounds, music and artwork (collectively, ‘Content’), is generated/provided by Platform
86
+ and the Platform have control over it and assures a reasonable quality, the accuracy, integrity or
87
+ genuineness of products sold on the Platform.</p>
88
+ <p>All the Content displayed on the Platform is subject to copyright and shall not be reused by any
89
+ party (or a third party) without the prior written consent of the Firm and the copyright owner.</p>
90
+ <p>The Users are solely responsible for the integrity, authenticity, quality and genuineness of the
91
+ feedback and comments by Users can be made via the Platform, the Platform bears no liability
92
+ whatsoever for any feedback or comments made by the Users or made in respect of any of the content
93
+ on the Platform. Further, the Platform reserves its right to suspend the account of any User for an
94
+ indefinite period to be decided at the discretion of the Platform or to terminate the account of any
95
+ User who is found to have created or shared or submitted any Content or part thereof that is found
96
+ to be untrue/inaccurate/misleading or offensive/vulgar. The User shall be solely responsible for
97
+ making good any financial or legal losses incurred through the creation/sharing/submission of
98
+ Content or part thereof that is deemed to be untrue/inaccurate/misleading.</p>
99
+ <p>The Users have a personal, non-exclusive, non-transferable, revocable, limited privilege to access
100
+ the Content on the Platform. Users shall not copy, adapt, and modify any content without written
101
+ permission of the Firm.</p>
102
+ <h3> TERM </h3>
103
+ <p>1. These Terms shall continue to form a valid and binding contract between the Parties and shall
104
+ continue to be in full force and effect until the User continues to access and use the Platforms.
105
+ </p>
106
+ <p>2. The Users may terminate their use of the Platform at any time.</p>
107
+ <p>3. The Firm may terminate these Terms and close a User’s account at any time without notice and/or
108
+ suspend or terminate a User’s access to the Platform at any time and for any reason, if any
109
+ discrepancy or legal issue arises.</p>
110
+ <p>4. Such suspension or termination shall not limit our right to take any other action against you that
111
+ the Firm considers appropriate.</p>
112
+ <p>5. It is also hereby declared that the Firm may discontinue the Services and Platforms without any
113
+ prior notice.</p>
114
+ <h3> AMENDMENT AND TERMINATION </h3>
115
+ <p>1. The Firm reserves the right, in its sole discretion, to unilaterally to either amend, limit or
116
+ terminate the User’s access to the Platform, or any portion or wholly thereof, at any time, without
117
+ notice or cause.</p>
118
+ <p>2.The Platform also reserves the universal right to deny part or in entirety, the access to
119
+ particular Users or any such Users with similar IP, to any/all of are on its Platform without any
120
+ prior notice/explanation in order to protect the interests of the Platform and/or other visitors to
121
+ the Platform.</p>
122
+ <p>The Platform reserves the right to limit, deny or create different access to the Platform and its
123
+ features with respect to different Users, or to change any of the features or introduce new features
124
+ without prior notice.</p>
125
+ <p>The User shall continue to be bound by these Terms, and it is expressly agreed to by the Parties that
126
+ the User shall not have the right to terminate these Terms till the expiry of the same.</p>
127
+ <p>COMMUNICATION By using this Platform and providing his/her identity and contact information to the
128
+ Firm through the Platform, the Users hereby agree and consent to receive calls, e-mails or SMS from
129
+ the Firm and/or any of its representatives at any time. User can report to care@{{page.companyName}}.{{page.domain}} if they
130
+ find any discrepancy with regard to Platform or content-related information and the Firm will take
131
+ necessary action after an investigation. The response with resolution (if any issues found) shall be
132
+ dependent on the time is taken for investigation. The User expressly agrees that notwithstanding
133
+ anything contained hereinabove, it may be contacted by the Firm or any representatives relating to
134
+ any Product purchased by the User on the Platform or anything pursuant thereto and the Users agrees
135
+ to indemnify the Firm from any and all harassment claims. It is expressly agreed to by the Parties
136
+ that any information shared by the User with the Firm shall be governed by the Privacy Policy.</p>
137
+ <h3> USER OBLIGATIONS AND FORMAL UNDERTAKINGS AS TO CONDUCT </h3>
138
+ <p>The Client agrees and acknowledges that they are a restricted user of this Platform and that they:
139
+ </p>
140
+ <p>1. Agree to provide genuine credentials during the process of registration on the Platform. You shall
141
+ not use a fictitious identity to register. The Firm is not liable if the User has provided incorrect
142
+ information.</p>
143
+ <p>2.Agree to ensure the Name, Email address, Address, Mobile number and any such other information
144
+ provided during account registration is valid at all times and shall keep your information accurate
145
+ and up-to-date. The User can update their details anytime through accessing their profile on the
146
+ platform.</p>
147
+ <p>3.Agree that they are solely responsible for maintaining the confidentiality of your account
148
+ password. You agree to notify us immediately of any unauthorized use of your account. Firm reserves
149
+ the right to close your account at any time for any or no reason.</p>
150
+ <p>4. Understand and acknowledge that the data submitted is manually entered into the database of the
151
+ Platform. The User also acknowledges the fact that data so entered into the database is for the
152
+ purpose of easy and ready reference for the User, and to streamline the Services through the
153
+ Platform.</p>
154
+ <p>5. Authorize the Platform to use, store or otherwise process certain personal information and all
155
+ published Content, Client responses, Client locations, User comments, reviews and ratings for
156
+ personalization of Services, marketing and promotional purposes and for optimisation of User-related
157
+ options and Services</p>
158
+ <p>6. Understand and agree that, to the fullest extent permissible by law, the Platform/Firm and their
159
+ successors and assigns, or any of their affiliates or their respective officers, directors,
160
+ employees, agents, licensors, representatives, operational service providers, advertisers or
161
+ suppliers shall not be liable for any loss or damage, of any kind, direct or indirect, in connection
162
+ with or arising from use of the Platform or from this terms of use, including, but not limited to,
163
+ compensatory, consequential, incidental, indirect, special or punitive damages.</p>
164
+ <p>7. Are bound not to cut, copy, modify, recreate, reverse engineer, distribute, disseminate, post,
165
+ publish or create derivative works from, transfer, or sell any information or obtained from the
166
+ Platform. Any such use/limited use of the Platform will only be allowed with the prior express
167
+ written permission of the Firm.</p>
168
+ <p>Agree not to access (or attempt to access) the Platform and/or the materials or Services by any means
169
+ other than through the interface provided by the Platform. The use of deep-link, robot, spider or
170
+ other automatic devices, program, algorithm or methodology, or any similar or equivalent manual
171
+ process, to access, acquire, copy or monitor any portion of the Platform or its content, or in any
172
+ way reproduce or circumvent the navigational structure or presentation of the Platform, materials or
173
+ any content, or to obtain or attempt to obtain any materials, documents or information through any
174
+ means not specifically made available through the Platform will lead to suspension or termination of
175
+ the User’s access to the Platform. The User acknowledges and agrees that by accessing or using the
176
+ Platform or any of the Services provided therein, it may be exposed to content that it may consider
177
+ offensive, indecent or otherwise objectionable. The Firm disclaims any and all liabilities arising
178
+ in relation to such offensive content on the Platform.</p>
179
+ <p>Expressly agree and acknowledge that the Content generated by the User and displayed on the Platform
180
+ is not owned by the Firm and that the Firm is in no way responsible for the content of the same. The
181
+ User may, however, report any offensive or objectionable content, which the Firm may then remove
182
+ from the Platform, at its sole discretion</p>
183
+ <p>Expressly consents to follow the terms and conditions, and policies of the Vendor affiliated with the
184
+ Firm from whom the Users are utilizing services.</p>
185
+ <h3> The User further undertakes not to: </h3>
186
+ <p>1. Engage in any activity that interferes with or disrupts access to the Platform or the Services
187
+ provided therein (or the servers and networks which are connected to the Platform).</p>
188
+ <p>2. Impersonate any person or entity, or falsely state or otherwise misrepresent his/her affiliation
189
+ with a person or entity.</p>
190
+ <p>3. Probe, scan or test the vulnerability of the Platform or any network connected to the Platform,
191
+ nor breach the security or authentication measures on the Platform or any network connected to the
192
+ Platform. The User may not reverse look-up, trace or seek to trace any information relating to any
193
+ other User of, or visitor to, the Platform, or any other viewer of the Platform, including any User
194
+ account maintained on the Platform not operated/managed by the User, or exploit the Platform or
195
+ information made available or offered by or through the Platform, in any manner.</p>
196
+ <p>4. Disrupt or interfere with the security of, or otherwise cause harm to, the Platform, systems
197
+ resources, accounts, passwords, servers or networks connected to or accessible through the Platform
198
+ or any affiliated or linked Platforms.</p>
199
+ <p>5. Use the Platform or any material or content therein for any purpose that is unlawful or prohibited
200
+ by these Terms, or to solicit the performance of any illegal activity or other activity which
201
+ infringes the rights of this Platform or any other third party (s).</p>
202
+ <p>6. Violate any code of conduct or guideline which may be applicable for or to any particular service
203
+ offered on the Platform.</p>
204
+ <p>7. Violate any applicable laws, rules or regulations currently in force within or outside India.</p>
205
+ <p>8. Violate any portion of these Terms or the Privacy Policy, including but not limited to any
206
+ applicable additional terms of the Platform contained herein or elsewhere, whether made by
207
+ amendment, modification, or otherwise.</p>
208
+ <p>9. Commit any act that causes the Firm to lose (in whole or in part) the Services of its Internet
209
+ Establishment (ISP) or in any manner disrupts the Services of any other supplier/service provider of
210
+ the Firm/Platform.</p>
211
+ <p>10. Further:The User hereby expressly authorizes the Firm/Platform to disclose any and all
212
+ information relating to the User in the possession of the Firm/Platform to law enforcement or other
213
+ government officials, as the Firm may in its sole discretion, believe necessary or appropriate in
214
+ connection with the investigation and/or resolution of possible crimes, especially those involve
215
+ personal injury and theft/infringement of intellectual property. The User further understands that
216
+ the Firm/Platform might be directed to disclose any information (including the identity of persons
217
+ providing information or materials on the Platform) as necessary to satisfy any judicial Order, law,
218
+ regulation or valid governmental request.</p>
219
+ <p>11. By indicating User's acceptance to purchase any product or service offered on the site, the user
220
+ is obligated to complete such transactions after making payment. Users shall prohibit from
221
+ indicating their acceptance to avail services where the transactions have remained incomplete.</p>
222
+ <p>12. The User agrees to use the services provided by the Firm, its affiliates, consultants and
223
+ contracted companies, for lawful purposes only.</p>
224
+ <p>13. The User agrees not to make any bulk purchase to indulge in any resale activities. In case of any
225
+ such instances, the Firm reserves all rights to cancel the current and future orders and block the
226
+ concerned User account.</p>
227
+ <p>14. The User agrees to provide authentic and true information. The Firm reserves the right to
228
+ validate the information and other details provided by the User at any point of time. If upon such
229
+ User details are found to be false, not to be true (wholly or partly), the Firm shall in its sole
230
+ discretion reject the registration and debar the User from using the Services available on its
231
+ Website, and/or other affiliated websites without prior intimation whatsoever.</p>
232
+ <p>15. The User agrees not to post any material on the website that is defamatory, offensive, obscene,
233
+ indecent, abusive, or needlessly distressful, or advertising any goods or services. More
234
+ specifically, the User agrees not to host, display, upload, update, publish, modify, transmit, or in
235
+ any manner share any information that:</p>
236
+ <p>1. belongs to another person and to which the User has no right to.</p>
237
+ <p>2. is grossly harmful, harassing, blasphemous, defamatory, obscene, pornographic, paedophilic,
238
+ libellous, invasive of another's privacy, hateful, or racially, ethnically objectionable,
239
+ disparaging, relating or encouraging money laundering or gambling, or otherwise unlawful in any
240
+ manner whatever.</p>
241
+ <p>3.is in any way harmful to minors.</p>
242
+ <p>4.infringes any patent, trademark, copyright or other proprietary rights.</p>
243
+ <p>5.violates any law for the time being in force.</p>
244
+ <p>6.deceives or misleads the addressee about the origin of such messages or communicates any
245
+ information which is grossly offensive or menacing in nature.</p>
246
+ <p>7. Abuse, harass, threaten, defame, disillusion, erode, abrogate, demean or otherwise violate the
247
+ legal rights of others.</p>
248
+ <p>8. Impersonate any person or entity, or falsely state or otherwise misrepresent Your affiliation with
249
+ a person or entity.</p>
250
+ <p>9. Publish, post, disseminate, any information which is grossly harmful, harassing, blasphemous,
251
+ defamatory, obscene, pornographic, paedophilic, libellous, invasive of another's privacy, hateful,
252
+ or racially, ethnically objectionable, disparaging, relating or encouraging money laundering or
253
+ gambling, or otherwise unlawful in any manner whatever or unlawfully threatening or unlawfully
254
+ harassing including but not limited to indecent 'representation of women' within the meaning of the
255
+ Indecent Representation of Women (Prohibition) Act, 1986;</p>
256
+ <p>10. Threatens the unity, integrity, defence, security or sovereignty of India, friendly relations
257
+ with foreign states, or public order or causes incitement to the commission of any cognizable
258
+ offence or prevents investigation of any offence or is insulting any other nation.</p>
259
+ <h3> SUSPENSION OF USER ACCESS AND ACTIVITY </h3>
260
+ <p>Notwithstanding other legal remedies that may be available, the Firm may in its sole discretion,
261
+ limit the User’s access and/or activity by immediately removing the User’s access credentials either
262
+ temporarily or indefinitely, or suspend/terminate the User’s association with the Platform, and/or
263
+ refuse to usage of the Platform to the User, without being required to provide the User with notice
264
+ or cause:</p>
265
+ <p>1. If the User is in breach any of these Terms or the Policy.</p>
266
+ <p>2. If the User has provided wrong, inaccurate, incomplete or incorrect information.</p>
267
+ <h3> If the User’s actions may cause any harm, damage or loss to the other Users or to the Firm, at the
268
+ sole discretion of the Firm. </h3>
269
+ <h3> INDEMNITY </h3>
270
+ <p>The Users of this Platform agree to indemnify, defend and hold harmless the Firm/Platform, and their
271
+ respective directors, officers, employees and agents (collectively, 'Parties'), from and against any
272
+ and all losses, liabilities, claims, damages, demands, costs and expenses (including legal fees and
273
+ disbursements in connection therewith and interest chargeable thereon) asserted against or incurred
274
+ by us that arise out of, result from, or maybe payable by virtue of, any breach or non-performance
275
+ of any representation, warranty, covenant or agreement made or obligation to be performed pursuant
276
+ to these terms of use. Further, the User agrees to hold the Firm/Platform harmless against any
277
+ claims made by any third party due to, or arising out of, or in connection with:</p>
278
+ <p>1. User’s use of the Platform.</p>
279
+ <p>2. User’s violation of these Terms and Conditions.</p>
280
+ <p>3. User’s violation of any rights of another.</p>
281
+ <p>4. User’s alleged improper conduct pursuant to these Services.</p>
282
+ <p>5. User’s conduct in connection with the Platform.</p>
283
+ <p>User agrees to fully cooperate in indemnifying the Firm and the Platform at the user’s expense. The
284
+ user also agrees not to reach a settlement with any party without the consent of the Firm.</p>
285
+ <p>In no event shall the Firm/Platform be liable to compensate the User or any third party for any
286
+ special, incidental, indirect, consequential or punitive damages whatsoever, including those
287
+ resulting from loss of use, data or profits, whether or not foreseeable, and whether or not the
288
+ Firm/ Platform had been advised of the possibility of such damages, or based on any theory of
289
+ liability, including breach of contract or warranty, negligence or other tortuous action, or any
290
+ other claim arising out of or in connection with the User’s use of or access to the Platform and/or
291
+ the Services or materials contained therein.</p>
292
+ <h3> LIMITATION OF LIABILITY </h3>
293
+ <p>1. The Founders/ Promoters/ Partners/ Associated people of the Firm/Platform are not responsible for
294
+ any consequences arising out of the following events:</p>
295
+ <p>. If the Platform is inoperative/non-responsive due to any connectivity errors associated with the
296
+ internet connection such as but not limited to slow connectivity, no connectivity, server failure.
297
+ </p>
298
+ <p>. If the User has fed incorrect information or data or for any deletion of data.</p>
299
+ <p>. If there is any deficiency or defect in the Services managed by Us.</p>
300
+ <p>. If there is a failure in the functioning of any other service provided by the Platform.</p>
301
+ <p>2. The Platform accepts no liability for any errors or omissions, on behalf of itself, or for any
302
+ damage caused to the User, the User’s belongings, or to any third party, resulting from the use or
303
+ misuse of the Platform or any service availed of by the User through the Platform. The service and
304
+ any Content or material displayed on the service is provided without any guarantees, conditions or
305
+ warranties as to its accuracy, suitability, completeness or reliability. The Platform will not be
306
+ liable to you for the unavailability or failure of the Platform.</p>
307
+ <p>3. Users are to comply with all laws applicable to them or to their activities, and with all
308
+ Policies, which are hereby incorporated into this Agreement by reference.</p>
309
+ <p>4.The Platform expressly excludes any liability for any loss or damage that was not reasonably
310
+ foreseeable by the Platform and which is incurred by you in connection with the Platform, including
311
+ loss of profits; and any loss or damage incurred by you as a result of your breach of these terms.
312
+ </p>
313
+ <p>5. To the fullest extent permitted by law, the Platform shall not be liable to you or any other party
314
+ for any loss or damage, regardless of the form of action or basis of any claim. You acknowledge and
315
+ agree that your sole and exclusive remedy for any dispute with us is to terminate your use of the
316
+ Platform</p>
317
+ <p>Unless expressly agreed to in writing, nothing contained herein shall give the User a right to use
318
+ any of the Platform’s, trademarks, service marks, logos, domain names, information, questions,
319
+ answers, solutions, reports and other distinctive brand features, save according to the provisions
320
+ of these Terms. All logos, trademarks, brand names, service marks, domain names, including material,
321
+ designs, and graphics created by and developed by the Platform and other distinctive brand features
322
+ of the Platform are the property of the Firm or the respective copyright or trademark owner.
323
+ Furthermore, with respect to the Platform created by the Firm, the Firm shall be the exclusive owner
324
+ of all the designs, graphics and the like, related to the Platform.</p>
325
+ <h3> INTELLECTUAL PROPERTY RIGHTS </h3>
326
+ <p>The User may not use any of the intellectual property displayed on the Platform in any manner that is
327
+ likely to cause confusion among existing or prospective Users of the Platform, or that in any manner
328
+ disparages or discredits the Firm/Platform, to be determined in the sole discretion of the Firm.</p>
329
+ <p>1. The User agrees and undertakes that they are accessing the Platform at their sole risk and are
330
+ that they are using their best and prudent judgment before availing any service listed on the
331
+ Platform or accessing/using any information displayed thereon.</p>
332
+ <h3> DISCLAIMER OF WARRANTIES AND LIABILITIES </h3>
333
+ <p>2. The User agrees that any kind of information, resources, activities, recommendations
334
+ obtained/availed from Platform, written or oral, will not create any warranty and the Platform
335
+ disclaims all liabilities resulting from these.</p>
336
+ <p>3. The Firm/Platform does not guarantee that the Services contained in the Platform will be
337
+ uninterrupted or error-free, or that the Platform or its server will be free of viruses or other
338
+ harmful components, and the User hereby expressly accepts any and all associated risks involved with
339
+ the User’s use of the Platform.</p>
340
+ <p>It is further agreed to by the Parties that the contents of this Section shall survive even after the
341
+ termination or expiry of the Terms and/or Policy.</p>
342
+ <p>Neither the Firm nor the Platform shall be liable for damages for any delay or failure to perform its
343
+ obligations hereunder if such delay or failure is due to cause beyond its control or without its
344
+ fault or negligence, due to Force Majeure events including but not limited to acts of war, acts of
345
+ God, earthquake, riot, fire, festive activities sabotage, labour shortage or dispute, internet
346
+ interruption, technical failure, breakage of sea cable, hacking, piracy, cheating, illegal or
347
+ unauthorized.</p>
348
+ <h3> FORCE MAJEURE </h3>
349
+ <p>It is expressly agreed to by the Parties hereto that the formation, interpretation and performance of
350
+ these Terms and any disputes arising therefrom will be resolved through a two-step Alternate Dispute
351
+ Resolution (“ADR”) mechanism. It is further agreed to by the Parties that the contents of this
352
+ Section shall survive even after the termination or expiry of the Terms and/or Policy.</p>
353
+ <h3> DISPUTE RESOLUTION AND JURISDICTION </h3>
354
+ <p>1. <b>Mediation:</b>In case of any dispute between the parties, the Parties will attempt to resolve
355
+ the same amicably amongst themselves, to the mutual satisfaction of all Parties. In the event that
356
+ the Parties are unable to reach such an amicable solution within thirty (30) days of one Party
357
+ communicating the existence of a dispute to any other Party, the dispute will be resolved by
358
+ arbitration, as detailed hereinbelow;</p>
359
+ <p>1. <b>Arbitration::</b>In the event that the Parties are unable to amicably resolve a dispute by
360
+ mediation, said dispute will be referred to arbitration by a sole arbitrator to be appointed by the
361
+ Firm, and the award passed by such sole arbitrator will be valid and binding on all Parties. The
362
+ Parties shall bear their own costs for the proceedings, although the sole arbitrator may, in his/her
363
+ sole discretion, direct either Party to bear the entire cost of the proceedings. The arbitration
364
+ shall be conducted in English, and the seat of Arbitration shall be Delhi, India.</p>
365
+ <p>The Parties expressly agree that the Terms of Use, Privacy Policy and any other agreements entered
366
+ into between the Parties are governed by the laws, rules and regulations of India</p>
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@{{page.companyName}}.{{page.domain}}.</p>
369
+ <h3> NOTICES </h3>
370
+ <h3> MISCELLANEOUS PROVISIONS </h3>
371
+ <p>1. <b>Entire Agreement:</b> These Terms, read with the Policy, form the complete and final contract
372
+ between the User and the Firm with respect to the subject matter hereof and supersedes all other
373
+ communications, representations and agreements (whether oral, written or otherwise) relating
374
+ thereto.</p>
375
+ <p>2. <b>Waiver:</b>The failure of either Party at any time to require performance of any provision of
376
+ these Terms shall in no manner affect such Party's right at a later time to enforce the same. No
377
+ waiver by either party of any breach of these Terms, whether by conduct or otherwise, in any one or
378
+ more instances, shall be deemed to be or construed as a further or continuing waiver of any such
379
+ breach, or a waiver of any other breach of these Terms.</b> </p>
380
+ <p>3. <b>Severability:</b> If any provision/clause of these Terms is held to be invalid, illegal or
381
+ unenforceable by any court or authority of competent jurisdiction, the validity, legality and
382
+ enforceability of the remaining provisions/clauses of these Terms shall in no way be affected or
383
+ impaired thereby, and each such provision/clause of these Terms shall be valid and enforceable to
384
+ the fullest extent permitted by law. In such case, these Terms shall be reformed to the minimum
385
+ extent necessary to correct any invalidity, illegality or unenforceability, while preserving to the
386
+ maximum extent the original rights, intentions and commercial expectations of the Parties hereto, as
387
+ expressed herein.</p>
388
+ <p>4.<b> Contact Us</b>: If you have any questions about this Policy, the practices of the Platform, or
389
+ your experience with the Service provided by the Platform, you can contact us at care@{{page.companyName}}.{{page.domain}}.
390
+ </p>
391
+ </div>
392
+ <div>
393
+ </div>
394
+ <div>
395
+ {{content}}
396
+ </div>
43
397
  </div>
44
- </div>
45
- {% include footer/index.html %}
46
- {% include script.html %}
398
+ {% include footer/index.html %}
399
+ {% include script.html %}
47
400
  </body>
48
401
 
49
402
  </html>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.9
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms