appscms-tools-theme 3.8.3 → 3.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,163 @@
1
+ {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
2
+ = page.folderName %} {% assign aboutData = site.data[folder][lang][file] %}
3
+
4
+ <!DOCTYPE html>
5
+ <html lang="{{aboutData.htmlLangAtt}}">
6
+ {%- include appscms/head/head.html -%}
7
+ <body>
8
+ {%- include appscms/navbars/navbar.html -%} {%- include
9
+ appscms/navbars/toolbar.html -%}
10
+ <div class="container py-4 about_layout">
11
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
12
+ <div class="row">
13
+ <div class="col-md-9 mx-auto">
14
+ {%- endif -%}
15
+ <h1 class="about-h1 py-2">About us</h1>
16
+ <h2 class="about-h2">Welcome to {{ page.companyName}}</h2>
17
+ <p class="about-para pt-4 text-left">
18
+ We are here to help you. Ping us your queries at care@{{
19
+ page.companyName}}.{{page.domain}}
20
+ </p>
21
+ <div>{{content}}</div>
22
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
23
+ </div>
24
+ </div>
25
+ {%- endif -%}
26
+ </div>
27
+
28
+ {% assign posts = site.posts | where_exp:"post","post.url != page.url" %} {%
29
+ assign authors = "" | split: "," %} {% for post in site.posts %} {% if
30
+ post.author %} {% unless authors contains post.author %} {% assign authors =
31
+ authors | push: post.author %} {% endunless %} {% endif %} {% endfor %}
32
+
33
+ <div class="container mt-4 mb-5">
34
+ <div class="row px-0">
35
+ <div class="col-md-4 my-4">
36
+ <img
37
+ class="feature-card-img"
38
+ src="/assets/images/lightbulb.svg"
39
+ loading="lazy"
40
+ height="48px"
41
+ width="48px"
42
+ alt="{{data.header}}"
43
+ {%-
44
+ if
45
+ site.crossorigin
46
+ -%}
47
+ crossorigin
48
+ {%-
49
+ endif
50
+ -%}
51
+ />
52
+ <div class="feature-card-title">Features</div>
53
+ <div class="feature-card-desc">
54
+ Our website currently has
55
+ <a class="highlight_style" href="{{site.url}}/sitemap.xml"
56
+ >{{ site.pages | size }} features</a
57
+ >
58
+ </div>
59
+ </div>
60
+ {%- if site.internationalizationall -%}
61
+ <div class="col-md-4 my-4">
62
+ <img
63
+ class="feature-card-img"
64
+ src="/assets/images/lightbulb.svg"
65
+ loading="lazy"
66
+ height="48px"
67
+ width="48px"
68
+ alt="{{data.header}}"
69
+ {%-
70
+ if
71
+ site.crossorigin
72
+ -%}
73
+ crossorigin
74
+ {%-
75
+ endif
76
+ -%}
77
+ />
78
+ <div class="feature-card-title">Languages Supported</div>
79
+ <div class="feature-card-desc">
80
+ Our website currently supports 22 languages.
81
+ </div>
82
+ </div>
83
+ {%- endif -%}
84
+ <div class="col-md-4 my-4">
85
+ <img
86
+ class="feature-card-img"
87
+ src="/assets/images/lightbulb.svg"
88
+ loading="lazy"
89
+ height="48px"
90
+ width="48px"
91
+ alt="{{data.header}}"
92
+ {%-
93
+ if
94
+ site.crossorigin
95
+ -%}
96
+ crossorigin
97
+ {%-
98
+ endif
99
+ -%}
100
+ />
101
+ <div class="feature-card-title">Blog Posts</div>
102
+ <div class="feature-card-desc">
103
+ We currently have
104
+ <a class="highlight_style" href="/blog"
105
+ >{{ site.posts | size }} blog posts</a
106
+ >
107
+ on our website.
108
+ </div>
109
+ </div>
110
+ <div class="col-md-4 my-4">
111
+ <img
112
+ class="feature-card-img"
113
+ src="/assets/images/lightbulb.svg"
114
+ loading="lazy"
115
+ height="48px"
116
+ width="48px"
117
+ alt="{{data.header}}"
118
+ {%-
119
+ if
120
+ site.crossorigin
121
+ -%}
122
+ crossorigin
123
+ {%-
124
+ endif
125
+ -%}
126
+ />
127
+ <div class="feature-card-title">Authors</div>
128
+ <div class="feature-card-desc">
129
+ We have
130
+ <a class="highlight_style" href="/authors">
131
+ {{ authors.size }} authors
132
+ </a>
133
+ on our website
134
+ </div>
135
+ </div>
136
+ <div class="col-md-4 my-4">
137
+ <img
138
+ class="feature-card-img"
139
+ src="/assets/images/lightbulb.svg"
140
+ loading="lazy"
141
+ height="48px"
142
+ width="48px"
143
+ alt="{{data.header}}"
144
+ {%-
145
+ if
146
+ site.crossorigin
147
+ -%}
148
+ crossorigin
149
+ {%-
150
+ endif
151
+ -%}
152
+ />
153
+ <div class="feature-card-title">Total Visitors</div>
154
+ <div id="visits" class="feature-card-desc">
155
+ {{site.totalVisitors}}
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+
161
+ {% include appscms/footer/static-footer.html %} {% include script.html %}
162
+ </body>
163
+ </html>
@@ -0,0 +1,132 @@
1
+ {% assign file = page.fileName %} {% assign folder = page.folderName %} {%
2
+ assign lang = page.lang %} {% assign contactData = site.data[folder][lang][file]
3
+ %}
4
+ <!DOCTYPE html>
5
+ <html lang="{{contactData.htmlLangAtt}}">
6
+ {%- include appscms/head/head.html -%}
7
+ <body>
8
+ {%- include appscms/navbars/navbar.html -%} {%- include
9
+ appscms/navbars/toolbar.html -%}
10
+ <div class="container py-4 contact_layout">
11
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
12
+ <div class="row">
13
+ <div class="col-md-9 mx-auto">
14
+ {%- endif -%}
15
+ <h1 class="contact-h1 py-2">Contact us</h1>
16
+ <h2 class="contact-h2">Welcome to {{page.companyName}}</h2>
17
+ <div class="py-3">
18
+ <div class="py-3">
19
+ <p>
20
+ We, <b>{{page.companyName}}</b> LLP, registered under the
21
+ provisions of the Limited Liability Partnership Act 2008, having
22
+ its registered office at "Ghaziabad, Uttar Pradesh – 245304,
23
+ INDIA" represented by its Directors, hereinafter referred to as
24
+ the “FIRM” (where such expression shall, unless repugnant to the
25
+ context thereof, be deemed to include its respective legal
26
+ heirs, representatives, administrators, permitted successors and
27
+ assigns).
28
+ </p>
29
+ <p>
30
+ The Firm will not be responsible for any damage suffered by
31
+ users from use of the Platform. This includes but is not limited
32
+ to, loss of revenue/data resulting from delays, non-deliveries,
33
+ missed deliveries, or service interruptions as may occur because
34
+ of any act/omission of parties. This disclaimer of liability
35
+ also applies to any damages or injury caused by any failure of
36
+ performance, error, omission, interruption, deletion, defect,
37
+ delay in operation or transmission, computer virus,
38
+ communication line failure, theft or destruction or unauthorized
39
+ access to, alteration of, or use of record, whether for breach
40
+ of contract, tortuous behaviour, negligence, or under any other
41
+ cause of action.
42
+ </p>
43
+ <p>
44
+ The Firm also makes it clear that it shall not be held liable
45
+ for any damage/hurt/inconvenience caused to the User through the
46
+ course of the provision of Services or as a result of the Users’
47
+ actions. The Firm makes no representations or warranties as to
48
+ the conduct of the Users. The Firm takes no responsibility for
49
+ any content that Users send or receive from other Users or
50
+ Third-Party posts through the Website or Platform. Any material
51
+ downloaded or otherwise obtained through use of the service is
52
+ accessed at the Users own discretion and risk.
53
+ </p>
54
+ <p>
55
+ The services on the Platform are intended to be subject to
56
+ availability, without any promises or guarantees on the same by
57
+ the Firm, and while certain information available on the
58
+ Platform is the property of the Firm and the Firm endeavours to
59
+ keep the said information updated and accurate, the Firm shall
60
+ not make any representations or warranties of any kind, express
61
+ or implied, about the completeness, accuracy, reliability,
62
+ suitability or availability with respect to the Platform or the
63
+ information, services, or related graphics contained on the
64
+ Platform for any purpose. Any reliance you place on such
65
+ information is therefore strictly at your own risk.
66
+ </p>
67
+ <p>
68
+ The Firm bears no responsibility whatsoever for any consequences
69
+ arising from the use of the said Services by Users. The use of
70
+ the Services in the Platform is the sole responsibility of the
71
+ User (or legally authorised person on behalf of the User), and
72
+ in case of any negligence on the part of the User is acting on
73
+ the same shall not be construed as imposing any liability,
74
+ direct or indirect, on the Firm /Platform.
75
+ </p>
76
+ <p>
77
+ The Firm shall disclaim all responsibility and owns no liability
78
+ to Users for any outcome (incidental, direct, indirect or
79
+ otherwise) from the use of the Platform or any such services
80
+ under the platform. In no event will the Firm be liable for any
81
+ loss or damage including without limitation, indirect or
82
+ consequential loss or damage, or any loss or damage whatsoever
83
+ arising from loss of data or profits arising out of, or in
84
+ connection with, the use of the Platform.
85
+ </p>
86
+ <p>
87
+ Through this Platform, You may be able to access the link of
88
+ other Platforms which are not under the control of the Firm or
89
+ the Platform. We have no control over the nature, content and
90
+ availability of those sites. The inclusion of any links does not
91
+ necessarily imply a recommendation or endorse the views
92
+ expressed within them. Every effort is made to keep the Platform
93
+ up and running smoothly. However, the Firm takes no
94
+ responsibility for, and will not be liable for, the Platform
95
+ being temporarily unavailable due to technical issues beyond our
96
+ control.
97
+ </p>
98
+ <p>
99
+ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE WILL HAVE
100
+ NO LIABILITY RELATED TO USER CONTENT ARISING UNDER INTELLECTUAL
101
+ PROPERTY RIGHTS, LIBEL, PRIVACY, PUBLICITY, OBSCENITY OR OTHER
102
+ LAWS. WEBSITE ALSO DISCLAIMS ALL LIABILITY WITH RESPECT TO THE
103
+ MISUSE, LOSS, MODIFICATION OR UNAVAILABILITY OF ANY USER
104
+ CONTENT.
105
+ </p>
106
+ <p>
107
+ THE USER UNDERSTANDS AND AGREES THAT ANY MATERIAL OR DATA
108
+ DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE PLATFORM IS DONE
109
+ ENTIRELY AT HIS/HER OWN DISCRETION AND RISK AND HE/SHE WILL BE
110
+ SOLELY RESPONSIBLE FOR ANY DAMAGE TO HIS/HER COMPUTER SYSTEMS OR
111
+ LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF SUCH MATERIAL OR
112
+ DATA. WE ARE NOT RESPONSIBLE FOR ANY TYPOGRAPHICAL ERROR
113
+ LEADING. PLATFORM ACCEPTS NO LIABILITY FOR ANY ERRORS OR
114
+ OMISSIONS, WITH RESPECT TO ANY INFORMATION PROVIDED TO YOU
115
+ WHETHER ON BEHALF OF ITSELF OR THIRD PARTIES.
116
+ </p>
117
+ <p>
118
+ THE ADVERTISEMENT THAT MAY BE AVAILABLE ON E-MAIL OR WEBSITE
119
+ WITH RESPECT TO THE THIRD-PARTY WEBSITE AND SERVICES ARE FOR
120
+ INFORMATION PURPOSE ONLY.
121
+ </p>
122
+ </div>
123
+ <div></div>
124
+ </div>
125
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
126
+ </div>
127
+ </div>
128
+ {%- endif -%}
129
+ </div>
130
+ {% include appscms/footer/static-footer.html %} {% include script.html %}
131
+ </body>
132
+ </html>
@@ -0,0 +1,124 @@
1
+ {% assign file = page.fileName %} {% assign folder = page.folderName %} {%
2
+ assign lang = page.lang %} {% assign disclaimerData =
3
+ site.data[folder][lang][file] %}
4
+ <!DOCTYPE html>
5
+ <html lang="{{disclaimerData.htmlLangAtt}}">
6
+ {%- include appscms/head/head.html -%}
7
+ <body>
8
+ {%- include appscms/navbars/navbar.html -%} {%- include
9
+ appscms/navbars/toolbar.html -%}
10
+ <div class="container py-4">
11
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
12
+ <div class="row">
13
+ <div class="col-md-9 mx-auto">
14
+ {%- endif -%}
15
+ <h1 class="about-h1 py-4">Disclaimer</h1>
16
+ <div class="py-3">
17
+ <p>
18
+ We, {{page.companyName}}, hereinafter referred to as the “FIRM”
19
+ (where such expression shall, unless repugnant to the context
20
+ thereof, be deemed to include its respective legal heirs,
21
+ representatives, administrators, permitted successors and
22
+ assigns).
23
+ </p>
24
+ <p>
25
+ The Firm will not be responsible for any damage suffered by users
26
+ from use of the Platform. This includes but is not limited to,
27
+ loss of revenue/data resulting from delays, non-deliveries, missed
28
+ deliveries, or service interruptions as may occur because of any
29
+ act/omission of parties. This disclaimer of liability also applies
30
+ to any damages or injury caused by any failure of performance,
31
+ error, omission, interruption, deletion, defect, delay in
32
+ operation or transmission, computer virus, communication line
33
+ failure, theft or destruction or unauthorized access to,
34
+ alteration of, or use of record, whether for breach of contract,
35
+ tortuous behaviour, negligence, or under any other cause of
36
+ action.
37
+ </p>
38
+ <p>
39
+ The Firm also makes it clear that it shall not be held liable for
40
+ any damage/hurt/inconvenience caused to the User through the
41
+ course of the provision of Services or as a result of the Users’
42
+ actions. The Firm makes no representations or warranties as to the
43
+ conduct of the Users. The Firm takes no responsibility for any
44
+ content that Users send or receive from other Users or Third-Party
45
+ posts through the Website or Platform. Any material downloaded or
46
+ otherwise obtained through use of the service is accessed at the
47
+ Users own discretion and risk.
48
+ </p>
49
+ <p>
50
+ The services on the Platform are intended to be subject to
51
+ availability, without any promises or guarantees on the same by
52
+ the Firm, and while certain information available on the Platform
53
+ is the property of the Firm and the Firm endeavours to keep the
54
+ said information updated and accurate, the Firm shall not make any
55
+ representations or warranties of any kind, express or implied,
56
+ about the completeness, accuracy, reliability, suitability or
57
+ availability with respect to the Platform or the information,
58
+ services, or related graphics contained on the Platform for any
59
+ purpose. Any reliance you place on such information is therefore
60
+ strictly at your own risk.
61
+ </p>
62
+ <p>
63
+ The Firm bears no responsibility whatsoever for any consequences
64
+ arising from the use of the said Services by Users. The use of the
65
+ Services in the Platform is the sole responsibility of the User
66
+ (or legally authorised person on behalf of the User), and in case
67
+ of any negligence on the part of the User is acting on the same
68
+ shall not be construed as imposing any liability, direct or
69
+ indirect, on the Firm /Platform.
70
+ </p>
71
+ <p>
72
+ The Firm shall disclaim all responsibility and owns no liability
73
+ to Users for any outcome (incidental, direct, indirect or
74
+ otherwise) from the use of the Platform or any such services under
75
+ the platform. In no event will the Firm be liable for any loss or
76
+ damage including without limitation, indirect or consequential
77
+ loss or damage, or any loss or damage whatsoever arising from loss
78
+ of data or profits arising out of, or in connection with, the use
79
+ of the Platform.
80
+ </p>
81
+ <p>
82
+ Through this Platform, You may be able to access the link of other
83
+ Platforms which are not under the control of the Firm or the
84
+ Platform. We have no control over the nature, content and
85
+ availability of those sites. The inclusion of any links does not
86
+ necessarily imply a recommendation or endorse the views expressed
87
+ within them. Every effort is made to keep the Platform up and
88
+ running smoothly. However, the Firm takes no responsibility for,
89
+ and will not be liable for, the Platform being temporarily
90
+ unavailable due to technical issues beyond our control.
91
+ </p>
92
+ <p>
93
+ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE WILL HAVE NO
94
+ LIABILITY RELATED TO USER CONTENT ARISING UNDER INTELLECTUAL
95
+ PROPERTY RIGHTS, LIBEL, PRIVACY, PUBLICITY, OBSCENITY OR OTHER
96
+ LAWS. WEBSITE ALSO DISCLAIMS ALL LIABILITY WITH RESPECT TO THE
97
+ MISUSE, LOSS, MODIFICATION OR UNAVAILABILITY OF ANY USER CONTENT.
98
+ </p>
99
+ <p>
100
+ THE USER UNDERSTANDS AND AGREES THAT ANY MATERIAL OR DATA
101
+ DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE PLATFORM IS DONE
102
+ ENTIRELY AT HIS/HER OWN DISCRETION AND RISK AND HE/SHE WILL BE
103
+ SOLELY RESPONSIBLE FOR ANY DAMAGE TO HIS/HER COMPUTER SYSTEMS OR
104
+ LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF SUCH MATERIAL OR
105
+ DATA. WE ARE NOT RESPONSIBLE FOR ANY TYPOGRAPHICAL ERROR LEADING.
106
+ PLATFORM ACCEPTS NO LIABILITY FOR ANY ERRORS OR OMISSIONS, WITH
107
+ RESPECT TO ANY INFORMATION PROVIDED TO YOU WHETHER ON BEHALF OF
108
+ ITSELF OR THIRD PARTIES.
109
+ </p>
110
+ <p>
111
+ THE ADVERTISEMENT THAT MAY BE AVAILABLE ON E-MAIL OR WEBSITE WITH
112
+ RESPECT TO THE THIRD-PARTY WEBSITE AND SERVICES ARE FOR
113
+ INFORMATION PURPOSE ONLY.
114
+ </p>
115
+ </div>
116
+ <div>{{content}}</div>
117
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
118
+ </div>
119
+ </div>
120
+ {%- endif -%}
121
+ </div>
122
+ {% include appscms/footer/static-footer.html %} {% include script.html %}
123
+ </body>
124
+ </html>