appscms-tools-theme 0.4.5 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,51 @@
1
+ {% assign file = page.fileName %}
2
+ {% assign folder = page.folderName %}
3
+ {% assign lang = page.lang %}
4
+ {% assign privacyData = site.data[folder][lang][file] %}
5
+ <!DOCTYPE html>
6
+ <html lang="{{privacyData.htmlLangAtt}}">
7
+ {% include head/index.html %}
8
+ <body>
9
+ {% include header/index.html %}
10
+ {%- include dropdown/langdropdown.html -%}
11
+ <div class="container py-4">
12
+ <!-- <p>{{site.pages}}</p> -->
13
+ <h1 class="about-h1 py-4">{{privacyData.h1}}</h1>
14
+ <h2 class="about-h2">{{privacyData.h2}}</h2>
15
+ <div class="py-3">
16
+ {%- for item in privacyData.privacyPolicy -%}
17
+ {%- if item.li -%}
18
+ <li> {{item.li}} </li>
19
+ {%- endif -%}
20
+ {%- if item.h1 -%}
21
+ <h1> {{item.h1}} </h1>
22
+ {%- endif -%}
23
+ {%- if item.h2 -%}
24
+ <h2 class="common-h2"> {{item.h2}} </h2>
25
+ {%- endif -%}
26
+ {%- if item.p -%}
27
+ <p>{{item.p | replace:"$companyName", page.companyName | replace:"$domain", page.domain }}</p>
28
+ {%- endif -%}
29
+ {%- if item.h3 -%}
30
+ <h3> {{item.h3}} </h3>
31
+ {%- endif -%}
32
+ {%- if item.h4 -%}
33
+ <h4> {{item.h4}} </h4>
34
+ {%- endif -%}
35
+ {%- if item.h5 -%}
36
+ <h5> {{item.h5}} </h5>
37
+ {%- endif -%}
38
+ {%- if item.h6 -%}
39
+ <h6> {{item.h6}} </h6>
40
+ {%- endif -%}
41
+ {%- endfor -%}
42
+ </div>
43
+ <div>
44
+ {{content}}
45
+ </div>
46
+ </div>
47
+ {% include footer/index.html %}
48
+ {% include script.html %}
49
+ </body>
50
+
51
+ </html>
@@ -3,16 +3,48 @@
3
3
  {% assign lang = page.lang %}
4
4
  {% assign termsData = site.data[folder][lang][file] %}
5
5
  <!DOCTYPE html>
6
- <html lang="en" data-tool="landing">
6
+ <html lang="{{termsData.htmlLangAtt}}">
7
7
  {% include head/index.html %}
8
8
  <body>
9
9
  {% include header/index.html %}
10
+ {%- include dropdown/langdropdown.html -%}
10
11
  <div class="container py-4">
11
- <h1 class="about-h1 py-2">{{termsData.h1}}</h1>
12
- <h2 class="about-h2">{{termsData.h2}}</h2>
13
- <p class="py-2">{{termsData.paragraph}}</p>
12
+ <!-- <p>{{site.pages}}</p> -->
13
+ <h1 class="about-h1 py-4">{{termsData.h1}}</h1>
14
+ <div class="py-3">
15
+ {%- for item in termsData.termsAndConditions -%}
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> {{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>
42
+ <div>
43
+ {{content}}
44
+ </div>
14
45
  </div>
15
46
  {% include footer/index.html %}
47
+ {% include script.html %}
16
48
  </body>
17
49
 
18
50
  </html>
data/assets/css/tools.css CHANGED
@@ -1,3 +1,19 @@
1
+ * {
2
+ box-sizing: border-box;
3
+ margin-block-start: 0px;
4
+ margin-block-end: 0px;
5
+ margin-inline-start: 0px;
6
+ margin-inline-end: 0px;
7
+ }
8
+ body {
9
+ padding: 0;
10
+ margin: 0;
11
+ font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
12
+ -webkit-font-smoothing: antialiased;
13
+ box-sizing: border-box;
14
+ overflow-y: scroll;
15
+ background: white;
16
+ }
1
17
  header {
2
18
  width: 100%;
3
19
  }
@@ -33,7 +49,7 @@ header {
33
49
  .dropdown-menu {
34
50
  position: fixed;
35
51
  left: 0;
36
- top: 72px;
52
+ top: 71px;
37
53
  width: 100%;
38
54
  }
39
55
  .inner-dropdown {
@@ -136,7 +152,8 @@ header {
136
152
  .how-to-list-item {
137
153
  line-height: 24px;
138
154
  font-size: 16px;
139
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
155
+ -webkit-font-smoothing: antialiased;
156
+ -webkit-font-smoothing: antialiased;
140
157
  -webkit-font-smoothing: antialiased;
141
158
  font-weight: 400;
142
159
  display: flex;
@@ -145,7 +162,8 @@ header {
145
162
  .how-to-title {
146
163
  line-height: 30px;
147
164
  font-size: 20px;
148
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
165
+ -webkit-font-smoothing: antialiased;
166
+ -webkit-font-smoothing: antialiased;
149
167
  -webkit-font-smoothing: antialiased;
150
168
  font-weight: 600;
151
169
  margin: 0px;
@@ -160,7 +178,8 @@ header {
160
178
  .feature-card-title {
161
179
  line-height: 24px;
162
180
  font-size: 16px;
163
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
181
+ -webkit-font-smoothing: antialiased;
182
+ -webkit-font-smoothing: antialiased;
164
183
  -webkit-font-smoothing: antialiased;
165
184
  font-weight: 600;
166
185
  color: rgb(33, 33, 33);
@@ -171,7 +190,8 @@ header {
171
190
  .faq-question {
172
191
  line-height: 24px;
173
192
  font-size: 16px;
174
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
193
+ -webkit-font-smoothing: antialiased;
194
+ -webkit-font-smoothing: antialiased;
175
195
  -webkit-font-smoothing: antialiased;
176
196
  font-weight: 600;
177
197
  color: rgb(33, 33, 33);
@@ -182,7 +202,8 @@ header {
182
202
  .feature-card-desc {
183
203
  line-height: 24px;
184
204
  font-size: 16px;
185
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
205
+ -webkit-font-smoothing: antialiased;
206
+ -webkit-font-smoothing: antialiased;
186
207
  -webkit-font-smoothing: antialiased;
187
208
  font-weight: 400;
188
209
  color: rgb(33, 33, 33);
@@ -194,7 +215,8 @@ header {
194
215
  .faq-answer {
195
216
  line-height: 24px;
196
217
  font-size: 16px;
197
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
218
+ -webkit-font-smoothing: antialiased;
219
+ -webkit-font-smoothing: antialiased;
198
220
  -webkit-font-smoothing: antialiased;
199
221
  font-weight: 400;
200
222
  color: rgb(33, 33, 33);
@@ -202,9 +224,7 @@ header {
202
224
  margin: 0px;
203
225
  max-width: 100%;
204
226
  }
205
- body {
206
- margin: 0;
207
- }
227
+
208
228
  main {
209
229
  display: block;
210
230
  }
@@ -346,10 +366,7 @@ template {
346
366
  [hidden] {
347
367
  display: none;
348
368
  }
349
- body {
350
- overflow-y: scroll;
351
- background: white;
352
- }
369
+
353
370
  #app {
354
371
  display: -webkit-box;
355
372
  display: -webkit-flex;
@@ -357,13 +374,7 @@ body {
357
374
  display: flex;
358
375
  min-height: 100vh;
359
376
  }
360
- * {
361
- box-sizing: border-box;
362
- margin-block-start: 0px;
363
- margin-block-end: 0px;
364
- margin-inline-start: 0px;
365
- margin-inline-end: 0px;
366
- }
377
+
367
378
  .box-border {
368
379
  position: absolute;
369
380
  inset: 12px;
@@ -419,7 +430,8 @@ body {
419
430
  .feature-h1 {
420
431
  line-height: 36px;
421
432
  font-size: 30px;
422
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
433
+ -webkit-font-smoothing: antialiased;
434
+ -webkit-font-smoothing: antialiased;
423
435
  -webkit-font-smoothing: antialiased;
424
436
  font-weight: 600;
425
437
  color: rgb(33, 33, 33);
@@ -427,7 +439,8 @@ body {
427
439
  margin: 0px;
428
440
  }
429
441
  .feature-h2 {
430
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
442
+ -webkit-font-smoothing: antialiased;
443
+ -webkit-font-smoothing: antialiased;
431
444
  -webkit-font-smoothing: antialiased;
432
445
  font-weight: 300;
433
446
  color: rgb(33, 33, 33);
@@ -501,7 +514,8 @@ body {
501
514
  .home-feature-desc {
502
515
  line-height: 18px;
503
516
  font-size: 14px;
504
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
517
+ -webkit-font-smoothing: antialiased;
518
+ -webkit-font-smoothing: antialiased;
505
519
  -webkit-font-smoothing: antialiased;
506
520
  font-stretch: 400;
507
521
  font-weight: 400;
@@ -527,7 +541,8 @@ body {
527
541
  .home-top-h1 {
528
542
  line-height: 30px;
529
543
  font-size: 22px;
530
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
544
+ -webkit-font-smoothing: antialiased;
545
+ -webkit-font-smoothing: antialiased;
531
546
  -webkit-font-smoothing: antialiased;
532
547
  font-stretch: 400;
533
548
  font-weight: 600;
@@ -544,7 +559,8 @@ body {
544
559
  .home-top-h2 {
545
560
  line-height: 30px;
546
561
  font-size: 20px;
547
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
562
+ -webkit-font-smoothing: antialiased;
563
+ -webkit-font-smoothing: antialiased;
548
564
  -webkit-font-smoothing: antialiased;
549
565
  font-stretch: 400;
550
566
  font-weight: 300;
@@ -566,10 +582,7 @@ html {
566
582
  * {
567
583
  box-sizing: border-box;
568
584
  }
569
- body {
570
- font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont,
571
- sans-serif;
572
- }
585
+
573
586
  .header {
574
587
  min-height: 80px;
575
588
  }
@@ -952,7 +965,8 @@ ul li {
952
965
  }
953
966
  /* footer css start */
954
967
  .footer {
955
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
968
+ -webkit-font-smoothing: antialiased;
969
+ -webkit-font-smoothing: antialiased;
956
970
  -webkit-font-smoothing: antialiased;
957
971
  }
958
972
  .footer-wrapper {
@@ -964,6 +978,7 @@ ul li {
964
978
  -webkit-flex-direction: row;
965
979
  -ms-flex-direction: row;
966
980
  flex-direction: row;
981
+ border-bottom: 1px solid #e8e8e8;
967
982
  }
968
983
  @media (max-width: 991px) {
969
984
  .footer-wrapper {
@@ -1148,11 +1163,49 @@ ul li {
1148
1163
  }
1149
1164
  /* footer css end */
1150
1165
  /*about termsand conditions help*/
1166
+ .contact_layout {
1167
+ -webkit-font-smoothing: antialiased;
1168
+ -webkit-font-smoothing: antialiased;
1169
+ -webkit-font-smoothing: antialiased;
1170
+ }
1171
+ .about_layout {
1172
+ -webkit-font-smoothing: antialiased;
1173
+ -webkit-font-smoothing: antialiased;
1174
+ -webkit-font-smoothing: antialiased;
1175
+ }
1176
+ .contact-h1 {
1177
+ line-height: 30px;
1178
+ font-size: 22px;
1179
+ font-stretch: 400;
1180
+ font-weight: 600;
1181
+ color: rgba(33, 33, 33, 1);
1182
+ text-align: center;
1183
+ margin: 0;
1184
+ }
1185
+ @media (min-width: 768px) {
1186
+ .contact-h1 {
1187
+ line-height: 36px;
1188
+ font-size: 30px;
1189
+ }
1190
+ }
1191
+ .contact-h2 {
1192
+ line-height: 30px;
1193
+ font-stretch: 400;
1194
+ font-weight: 300;
1195
+ font-size: 20px;
1196
+ color: rgba(33, 33, 33, 1);
1197
+ text-align: center;
1198
+ margin: 0;
1199
+ }
1200
+ @media (min-width: 768px) {
1201
+ .contact-h2 {
1202
+ line-height: 30px;
1203
+ font-size: 22px;
1204
+ }
1205
+ }
1151
1206
  .about-h1 {
1152
1207
  line-height: 30px;
1153
1208
  font-size: 22px;
1154
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
1155
- -webkit-font-smoothing: antialiased;
1156
1209
  font-stretch: 400;
1157
1210
  font-weight: 600;
1158
1211
  color: rgba(33, 33, 33, 1);
@@ -1167,20 +1220,26 @@ ul li {
1167
1220
  }
1168
1221
  .about-h2 {
1169
1222
  line-height: 30px;
1170
- font-size: 20px;
1171
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
1172
- -webkit-font-smoothing: antialiased;
1173
1223
  font-stretch: 400;
1174
1224
  font-weight: 300;
1225
+ font-size: 20px;
1175
1226
  color: rgba(33, 33, 33, 1);
1176
1227
  text-align: center;
1177
1228
  margin: 0;
1178
1229
  }
1230
+ .common-h2 {
1231
+ font-stretch: 400;
1232
+ font-size: 20px;
1233
+ color: rgba(33, 33, 33, 1);
1234
+ }
1179
1235
  @media (min-width: 768px) {
1180
1236
  .about-h2 {
1181
1237
  line-height: 30px;
1182
1238
  font-size: 22px;
1183
1239
  }
1240
+ .common-h2 {
1241
+ font-size: 22px;
1242
+ }
1184
1243
  }
1185
1244
  /*closed*/
1186
1245
  .feature-img {
@@ -1208,6 +1267,7 @@ ul li {
1208
1267
  flex-direction: column;
1209
1268
  align-items: center;
1210
1269
  justify-content: center;
1270
+ z-index: 999;
1211
1271
  border-top-left-radius: 8px;
1212
1272
  border-bottom-left-radius: 8px;
1213
1273
  background: #fff;
@@ -1222,7 +1282,7 @@ ul li {
1222
1282
  top: auto;
1223
1283
  font-size: 25px;
1224
1284
  width: 100%;
1225
- height: 80px;
1285
+ height: 60px;
1226
1286
  display: flex;
1227
1287
  margin: 0 !important;
1228
1288
  flex-direction: row;
@@ -1278,7 +1338,8 @@ ul li {
1278
1338
  .home-feature-name {
1279
1339
  line-height: 24px;
1280
1340
  font-size: 16px;
1281
- font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
1341
+ -webkit-font-smoothing: antialiased;
1342
+ -webkit-font-smoothing: antialiased;
1282
1343
  -webkit-font-smoothing: antialiased;
1283
1344
  font-stretch: 400;
1284
1345
  font-weight: 700;
@@ -1334,3 +1395,33 @@ ul li {
1334
1395
  color: gray !important;
1335
1396
  font-weight: 600;
1336
1397
  }
1398
+ .lang-dropdown {
1399
+ position: fixed;
1400
+ right: 30px;
1401
+ top: 20px;
1402
+ z-index: 999;
1403
+ }
1404
+ @media (max-width: 994px) {
1405
+ .lang-dropdown {
1406
+ top: 75px;
1407
+ z-index: 5;
1408
+ right: 4px;
1409
+ position: absolute;
1410
+ }
1411
+ .lang-dropdown .lang-dropdown-btn {
1412
+ position: absolute;
1413
+ right: 0;
1414
+ }
1415
+ .drop-down-wrapper {
1416
+ overflow-y: unset !important;
1417
+ }
1418
+ }
1419
+ .drop-down-wrapper {
1420
+ height: fit-content !important;
1421
+ }
1422
+ .lang-dropdown-item {
1423
+ width: 100%;
1424
+ display: block;
1425
+ text-align: center;
1426
+ text-decoration: none !important;
1427
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-04 00:00:00.000000000 Z
11
+ date: 2021-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -68,18 +68,25 @@ files:
68
68
  - _data/blog/nav.json
69
69
  - _data/blog/share.yml
70
70
  - _data/contact/en/contact.json
71
+ - _data/disclaimer/en/disclaimer.json
71
72
  - _data/feature/en/compress-pdf.json
72
73
  - _data/feature/en/split-pdf.json
73
74
  - _data/feature/hi/compress-pdf.json
74
75
  - _data/footer/en/data.json
76
+ - _data/footer/hi/data.json
75
77
  - _data/header/en/data.json
78
+ - _data/header/hi/data.json
76
79
  - _data/help/en/help.json
77
80
  - _data/home/en/en.json
78
- - _data/home/hi.json
81
+ - _data/home/hi/hi.json
82
+ - _data/languagesupport/compress-pdf-langs.json
83
+ - _data/languagesupport/index-langs.json
84
+ - _data/privacy/en/privacyPolicy.json
79
85
  - _data/termAndCondition/en/termAndCondition.json
80
86
  - _includes/author_bio.html
81
87
  - _includes/custom-head.html
82
88
  - _includes/disqus_comments.html
89
+ - _includes/dropdown/langdropdown.html
83
90
  - _includes/footer/index.html
84
91
  - _includes/head/index.html
85
92
  - _includes/header/blogHeader.html
@@ -96,11 +103,13 @@ files:
96
103
  - _layouts/categories.html
97
104
  - _layouts/contactUs.html
98
105
  - _layouts/default.html
106
+ - _layouts/disclaimer.html
99
107
  - _layouts/feature.html
100
108
  - _layouts/help.html
101
109
  - _layouts/home.html
102
110
  - _layouts/page.html
103
111
  - _layouts/post.html
112
+ - _layouts/privacyPolicy.html
104
113
  - _layouts/termAndCondition.html
105
114
  - assets/bulb.svg
106
115
  - assets/cloud.svg