appscms-tools-theme 0.6.9 → 0.7.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,20 @@
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign uspData= site.data[folder][lang][file] %}
5
+
6
+ <h2 class="feature-h1 my-4" >{{uspData.USP_Heading}}</h2>
7
+ <table class="table table-bordered table-striped table-light " >
8
+ <tbody>
9
+ {%- for item in uspData.USPS -%}
10
+ <tr>
11
+ <th scope="row">
12
+ {{item.USP_VALUE}}
13
+ </th>
14
+ <td>
15
+ {{item.USP_FACTOR}}
16
+ </td>
17
+ </tr>
18
+ {%- endfor -%}
19
+ </tbody>
20
+ </table>
@@ -1,12 +1,12 @@
1
- {% assign Ankita = "Ankita&&/assets/images/Ankita.webp&&Ankita has majored in Applied Communication studies, with over 4 years of experience content writing. She is an expert at word games and freqently shares her thoughts on word games, and many other topics.&&https://twitter.com/roy93anki" | split: '&&' %}
2
- {% assign Keshav = "Keshav Agarwal&&/assets/images/keshav.webp&&Keshav Agarwal is an aspiring Android developer with keen interest in computers, technology and development. He also has a knack of writing and loves to share his knowledge with the help of his posts.&&https://mobile.twitter.com/KeshavA76099697" | split: '&&' %}
3
- {% assign Anushka = "Anushka Guha&&/assets/images/Anushka.webp&&Anushka is an aspiring Instrumentation engineer who thrives on good music, books and travelling. She has been creating content on all of this and often shares her thoughts on the technicalities behind various file formats and their processing.
1
+ {% assign ankita = "Ankita&&/assets/images/Ankita.webp&&Ankita has majored in Applied Communication studies, with over 4 years of experience content writing. She is an expert at word games and freqently shares her thoughts on word games, and many other topics.&&https://twitter.com/roy93anki" | split: '&&' %}
2
+ {% assign keshav = "Keshav Agarwal&&/assets/images/keshav.webp&&Keshav Agarwal is an aspiring Android developer with keen interest in computers, technology and development. He also has a knack of writing and loves to share his knowledge with the help of his posts.&&https://mobile.twitter.com/KeshavA76099697" | split: '&&' %}
3
+ {% assign anushka = "Anushka Guha&&/assets/images/Anushka.webp&&Anushka is an aspiring Instrumentation engineer who thrives on good music, books and travelling. She has been creating content on all of this and often shares her thoughts on the technicalities behind various file formats and their processing.
4
4
  &&https://twitter.com/its_anushka_" | split: '&&' %}
5
- {% assign Paavan = "Thandra Paavan Kumar&&/assets/images/paavan.webp&&Paavan Kumar is an enthusiastic nanotech engineer who has a keen intererst in micro and nano science with a good sense of content creation on diverse topics and often shares his thoughts and helps those he can. He have a knack of writing essays,stories and poems.&&https://twitter.com/PaavanThandra" | split: '&&' %}
6
- {% assign Arjyahi = "Arjyahi Bhattacharya&&/assets/images/Arjyahi.webp&&Arjyahi is an aspiring Civil engineer who loves photography, music, books and philosophy. She also loves nature and animals. She enjoys reading and sharing information on various topics involving her knacks.&&https://twitter.com/arjyahi" | split: '&&' %}
7
- {% assign Nikita = "Nikita Gupta&&/assets/images/Nikita.webp&&Nikita is an aspiring MBA graduate, who loves creating content. She loves reading and watching anime. She is into other languages and currently learning Spanish, French and Japanese. Her favourite timepass is solving sudokus. &&N/A" | split: '&&' %}
8
- {% assign Alka = "Alka Bisht&&/assets/images/Alka.webp&&Alka Bisht is an experienced content writer with a penchnat for writing compellinmg content within technical and non- technical areas. As a content writer her goals include providing the best content throughout her writing journey.&&N/A" | split: '&&' %}
9
- {%- assign author = post.author -%}
5
+ {% assign paavan = "Thandra Paavan Kumar&&/assets/images/paavan.webp&&Paavan Kumar is an enthusiastic nanotech engineer who has a keen intererst in micro and nano science with a good sense of content creation on diverse topics and often shares his thoughts and helps those he can. He have a knack of writing essays,stories and poems.&&https://twitter.com/PaavanThandra" | split: '&&' %}
6
+ {% assign arjyahi = "Arjyahi Bhattacharya&&/assets/images/Arjyahi.webp&&Arjyahi is an aspiring Civil engineer who loves photography, music, books and philosophy. She also loves nature and animals. She enjoys reading and sharing information on various topics involving her knacks.&&https://twitter.com/arjyahi" | split: '&&' %}
7
+ {% assign nikita = "Nikita Gupta&&/assets/images/Nikita.webp&&Nikita is an aspiring MBA graduate, who loves creating content. She loves reading and watching anime. She is into other languages and currently learning Spanish, French and Japanese. Her favourite timepass is solving sudokus. &&N/A" | split: '&&' %}
8
+ {% assign alka = "Alka Bisht&&/assets/images/Alka.webp&&Alka Bisht is an experienced content writer with a penchnat for writing compellinmg content within technical and non- technical areas. As a content writer her goals include providing the best content throughout her writing journey.&&N/A" | split: '&&' %}
9
+ {%- assign author = post.author | downcase -%}
10
10
  {%- assign collection = [author] -%}
11
11
  {%- for item in collection -%}
12
12
  {%- if forloop.index==1 -%}
@@ -0,0 +1,153 @@
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign accessData= site.data[folder][lang][file] %}
5
+ {% assign compareFiles= accessData.compare_formats %}
6
+ {%- for i in compareFiles -%}
7
+ {%- if forloop.index ==1 -%}
8
+ {%- assign item = i | downcase -%}
9
+ {%- assign firstFile = site.data.files[accessData.filelang][item] -%}
10
+ {%- endif -%}
11
+ {%- if forloop.index ==2 -%}
12
+ {%- assign item = i | downcase -%}
13
+ {%- assign secondFile = site.data.files[accessData.filelang][item] -%}
14
+ {%- endif -%}
15
+ {%- endfor -%}
16
+ {%- if firstFile and secondFile -%}
17
+ {%- if firstFile.Format or secondFile.Format -%}
18
+ <h1 class="feature-h1 text-left my-4" >Details of {{firstFile.Format}} and {{secondFile.Format}} file format</h1>
19
+ {%- endif -%}
20
+ <table class="table table-bordered ">
21
+ <tbody>
22
+
23
+ {%- if firstFile.Format or secondFile.Format -%}
24
+ <tr>
25
+ <th scope="row">Format</th>
26
+ <td>{{firstFile.Format}}</td>
27
+ <td>{{secondFile.Format}}</td>
28
+ </tr>
29
+ {%- endif -%}
30
+ {%- if firstFile.ShortName or secondFile.ShortName -%}
31
+ <tr>
32
+ <th scope="row">Short Name</th>
33
+ <td>{{firstFile.ShortName}}</td>
34
+ <td>{{secondFile.ShortName}}</td>
35
+ </tr>
36
+ {%- endif -%}
37
+
38
+ {%- if firstFile.FullName or secondFile.FullName -%}
39
+ <tr>
40
+ <th scope="row">Full Name</th>
41
+ <td>{{firstFile.FullName}}</td>
42
+ <td>{{secondFile.FullName}}</td>
43
+ </tr>
44
+ {%- endif -%}
45
+ {%- if firstFile.Category or secondFile.Category -%}
46
+ <tr>
47
+ <th scope="row">Category</th>
48
+ <td>{{firstFile.Category}}</td>
49
+ <td>{{secondFile.Category}}</td>
50
+ </tr>
51
+ {%- endif -%}
52
+ {%- if firstFile.Pros or secondFile.Pros -%}
53
+ <tr>
54
+ <th scope="row">Pros</th>
55
+ <td>{{firstFile.Pros}}</td>
56
+ <td>{{secondFile.Pros}}</td>
57
+ </tr>
58
+ {%- endif -%}
59
+ {%- if firstFile.Cons or secondFile.Cons -%}
60
+ <tr>
61
+ <th scope="row">Cons</th>
62
+ <td>{{firstFile.Cons}}</td>
63
+ <td>{{secondFile.Cons}}</td>
64
+ </tr>
65
+ {%- endif -%}
66
+ {%- if firstFile.CreatedbyName or secondFile.CreatedbyName -%}
67
+ <tr>
68
+ <th scope="row">CreatedbyName</th>
69
+ <td>{{firstFile.CreatedbyName}}</td>
70
+ <td>{{secondFile.CreatedbyName}}</td>
71
+ </tr>
72
+ {%- endif -%}
73
+ {%- if firstFile.CreatedbyLink or secondFile.CreatedbyLink -%}
74
+ <tr>
75
+ <th scope="row">CreatedbyLink</th>
76
+ <td>{{firstFile.CreatedbyLink}}</td>
77
+ <td>{{secondFile.CreatedbyLink}}</td>
78
+ </tr>
79
+ {%- endif -%}
80
+ {%- if firstFile.CreatedInYear or secondFile.CreatedInYear -%}
81
+ <tr>
82
+ <th scope="row">CreatedInYear</th>
83
+ <td>{{firstFile.CreatedInYear}}</td>
84
+ <td>{{secondFile.CreatedInYear}}</td>
85
+ </tr>
86
+ {%- endif -%}
87
+ {%- if firstFile.BasicInformation or secondFile.BasicInformation -%}
88
+ <tr>
89
+ <th scope="row">BasicInformation</th>
90
+ <td>{{firstFile.BasicInformation}}</td>
91
+ <td>{{secondFile.BasicInformation}}</td>
92
+ </tr>
93
+ {%- endif -%}
94
+ {%- if firstFile.DetailedInformation or secondFile.DetailedInformation -%}
95
+ <tr>
96
+ <th scope="row">DetailedInformation</th>
97
+ <td>{{firstFile.DetailedInformation}}</td>
98
+ <td>{{secondFile.DetailedInformation}}</td>
99
+ </tr>
100
+ {%- endif -%}
101
+ {%- if firstFile.Softwaresused or secondFile.Softwaresused -%}
102
+ <tr>
103
+ <th scope="row">Platform Supported</th>
104
+ <td>
105
+ {%- for item in firstFile.Softwaresused -%}
106
+ <ul class="pl-0" >
107
+ <li><b>{{item.platform}}</b> </li>
108
+ <div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column " >
109
+ {%- for data in item.softwares -%}
110
+ <div class="d-flex mb-3" >
111
+ {%- if data.image -%}
112
+ <img src={{data.image}} alt="software" loading='lazy' >
113
+ {%- endif -%}
114
+ <div >
115
+ <a class="d-block software-name" href="{{data.link}}"><div>{{data.name}}</div></a>
116
+ <div class="software-value" >{{data.type}}</div>
117
+ </div>
118
+ </div>
119
+
120
+ {%- endfor -%}
121
+ </div>
122
+ </ul>
123
+ {%- endfor -%}
124
+ </td>
125
+ <td>
126
+ {%- for item in secondFile.Softwaresused -%}
127
+ <ul>
128
+ <li><b>{{item.platform}}</b> </li>
129
+ <div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column " >
130
+ {%- for data in item.softwares -%}
131
+ <div class="d-flex mb-3" >
132
+ {%- if data.image -%}
133
+ <img src={{data.image}} alt="software" loading='lazy' >
134
+ {%- endif -%}
135
+ <div >
136
+ <a class="d-block software-name" href="{{data.link}}"><div>{{data.name}}</div></a>
137
+ <div class="software-value" >{{data.type}}</div>
138
+ </div>
139
+ </div>
140
+
141
+ {%- endfor -%}
142
+ </div>
143
+ </ul>
144
+ {%- endfor -%}
145
+ </td>
146
+ </tr>
147
+ {%- endif -%}
148
+
149
+ </tbody>
150
+ </table>
151
+ {%- else -%}
152
+
153
+ {%- endif -%}
@@ -0,0 +1,104 @@
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign accessData= site.data[folder][lang][file] %}
5
+ {% assign filesData= accessData.display_formats %}
6
+ {%- for i in filesData -%}
7
+ {%- assign item = i | downcase -%}
8
+ {%- assign fileData = site.data.files[accessData.filelang][item] -%}
9
+ {%- assign static = site.static_files -%}
10
+ {%- if fileData.size>0 -%}
11
+ <div class="col-12">
12
+ <h2 class="feature-h1 text-left my-4" >{{fileData.Format}}</h2>
13
+ </div>
14
+ <table class="table table-bordered " >
15
+ <tbody>
16
+ {%- if fileData.ShortName -%}
17
+ <tr >
18
+ <th scope="row" class="pr-5">Short Name </th>
19
+ <td>{{fileData.ShortName}}</td>
20
+ </tr>
21
+ {%- endif -%}
22
+ {%- if fileData.FullName -%}
23
+ <tr >
24
+ <th scope="row" class="pr-5">Full Name </th>
25
+ <td>{{fileData.FullName}}</td>
26
+ </tr>
27
+ {%- endif -%}
28
+ {%- if fileData.Category -%}
29
+ <tr >
30
+ <th scope="row" class="pr-5">Category</th>
31
+ <td>{{fileData.Category}}</td>
32
+ </tr>
33
+ {%- endif -%}
34
+ {%- if fileData.Pros -%}
35
+ <tr >
36
+ <th scope="row" class="pr-5">Pros</th>
37
+ <td>{{fileData.Pros}}</td>
38
+ </tr>
39
+ {%- endif -%}
40
+ {%- if fileData.Cons -%}
41
+ <tr >
42
+ <th scope="row" class="pr-5">Cons</th>
43
+ <td>{{fileData.Cons}}</td>
44
+ </tr>
45
+ {%- endif -%}
46
+ {%- if fileData.BasicInformation -%}
47
+ <tr >
48
+ <th scope="row" class="pr-5">Basic Information</th>
49
+ <td>{{fileData.BasicInformation}}</td>
50
+ </tr>
51
+ {%- endif -%}
52
+ {%- if fileData.DetailedInformation -%}
53
+ <tr >
54
+ <th scope="row" class="pr-5">Detailed Information</th>
55
+ <td>{{fileData.DetailedInformation}}</td>
56
+ </tr>
57
+ {%- endif -%}
58
+ {%- if fileData.CreatedbyName -%}
59
+ <tr >
60
+ <th scope="row" class="pr-5">Created by</th>
61
+ <td>{{fileData.CreatedbyName}}</td>
62
+ </tr>
63
+ {%- endif -%}
64
+ {%- if fileData.CreatedbyLink -%}
65
+ <tr >
66
+ <th scope="row" class="pr-5">Created by Link</th>
67
+ <td>{{fileData.CreatedbyLink}}</td>
68
+ </tr>
69
+ {%- endif -%}
70
+ {%- if fileData.CreatedInYear -%}
71
+ <tr >
72
+ <th scope="row" class="pr-5">Created In Year</th>
73
+ <td>{{fileData.CreatedInYear}}</td>
74
+ </tr>
75
+ {%- if fileData.Softwaresused -%}
76
+ <tr>
77
+ <th scope="row">Platforms Supported</th>
78
+ <td class="d-flex flex-wrap " >
79
+ {%- for item in fileData.Softwaresused -%}
80
+ <ul class="pl-0 pr-md-5" >
81
+ <li><b>{{item.platform}}</b> </li>
82
+ <div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column " >
83
+ {%- for data in item.softwares -%}
84
+ <div class="d-flex mb-3" >
85
+ {%- if data.image -%}
86
+ <img src={{data.image}} alt="software" loading='lazy' >
87
+ {%- endif -%}
88
+ <div >
89
+ <a class="d-block software-name" href="{{data.link}}"><div>{{data.name}}</div></a>
90
+ <div class="software-value" >{{data.type}}</div>
91
+ </div>
92
+ </div>
93
+ {%- endfor -%}
94
+ </div>
95
+ </ul>
96
+ {%- endfor -%}
97
+ </td>
98
+ </tr>
99
+ {%- endif -%}
100
+ {%- endif -%}
101
+ </tbody>
102
+ </table>
103
+ {%- endif -%}
104
+ {%- endfor -%}
@@ -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>
@@ -3,7 +3,7 @@
3
3
  {% assign lang = page.lang %}
4
4
  {% assign dataArr = site.data.[page.folderName][lang][file] %}
5
5
  {% assign dataToShow = dataArr %}
6
- {% assign title = dataToShow.TITLE | replace:"$variable", page.value | default: site.title %}
6
+ {% assign title = dataToShow.TITLE | replace:"$variable", page.value | default:page.title | default: site.title %}
7
7
  {% assign description = dataToShow.META | replace:"$variable", page.value | default: site.description %}
8
8
  {% assign keywords = dataToShow.keywords %}
9
9
  {% assign favicon = site.favicon %}
@@ -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>
@@ -8,7 +8,7 @@
8
8
  {% for share in site.data.blog.share.platforms %}
9
9
  {% assign link = share.link | replace: 'URL', url %}
10
10
  {{page.title}}
11
- <a href="{{ link }}" data-toggle="tooltip"
11
+ <a id="{{share.type}}" href="{{ link }}" data-toggle="tooltip"
12
12
  onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
13
13
  data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
14
14
  <i class="fa-fw {{ share.icon }} mb-0 py-3"></i>
@@ -19,4 +19,31 @@
19
19
  </ul>
20
20
  </div>
21
21
  {%- endif -%}
22
+ <script>
23
+ const fetchShareCount=async()=>{
24
+ try {
25
+ const faceBookShare=document.querySelector('#Facebook')
26
+ const twitterShare=document.querySelector('#Twitter')
27
+ const faceBookCount= await fetch(`https://graph.facebook.com/v10.0/?id=${window.location.href}&access_token=275277164346802|6255ba7980a711477b429c302cb009cd&fields=engagement`).then(res=>res.json())
28
+ const twitterCount=await fetch(`https://counts.twitcount.com/counts.php?url=${window.location.href}`).then(res=>res.json())
29
+ if(faceBookCount.engagement.share_count>0){
30
+ const FacebookInfo =document.createElement('span')
31
+ FacebookInfo.setAttribute("class", "social-count")
32
+ FacebookInfo.innerHTML=faceBookCount.engagement.share_count
33
+ faceBookShare.appendChild(FacebookInfo)
34
+ }
35
+ if(twitterCount>0){
36
+ const TwitterInfo =document.createElement('span')
37
+ TwitterInfo.setAttribute("class", "social-count")
38
+ TwitterInfo.innerHTML=twitterCount.count
39
+ twitterShare.appendChild(TwitterInfo)
40
+ }
41
+ } catch (error) {
42
+ }
43
+ }
44
+ document.addEventListener("DOMContentLoaded", function(event) {
45
+ fetchShareCount()
46
+ });
47
+
48
+ </script>
22
49
 
@@ -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>