appscms-tools-theme 0.4.3 → 0.4.8
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.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +52 -52
- data/_data/{pages → about/en}/about.json +19 -7
- data/_data/blog/alertbar.yml +3 -3
- data/_data/blog/authors.yml +11 -11
- data/_data/blog/blog.yml +3 -3
- data/_data/blog/nav.json +13 -13
- data/_data/blog/share.yml +28 -29
- data/_data/contact/en/contact.json +52 -0
- data/_data/disclaimer/en/disclaimer.json +49 -0
- data/_data/feature/en/compress-pdf.json +157 -79
- data/_data/feature/en/split-pdf.json +150 -79
- data/_data/feature/hi/compress-pdf.json +82 -30
- data/_data/footer/en/data.json +84 -84
- data/_data/footer/hi/data.json +85 -0
- data/_data/header/en/data.json +144 -58
- data/_data/header/hi/data.json +145 -0
- data/_data/{pages → help/en}/help.json +19 -7
- data/_data/home/en/en.json +88 -0
- data/_data/home/hi/hi.json +87 -0
- data/_data/languagesupport/compress-pdf-langs.json +12 -0
- data/_data/languagesupport/index-langs.json +12 -0
- data/_data/privacy/en/privacyPolicy.json +277 -0
- data/_data/termAndCondition/en/termAndCondition.json +370 -0
- data/_includes/author_bio.html +11 -11
- data/_includes/custom-head.html +29 -33
- data/_includes/disqus_comments.html +10 -10
- data/_includes/dropdown/langdropdown.html +22 -0
- data/_includes/footer/index.html +55 -75
- data/_includes/head/index.html +54 -49
- data/_includes/header/blogHeader.html +31 -31
- data/_includes/header/index.html +56 -33
- data/_includes/paginationBlogPage.html +34 -34
- data/_includes/paginationPostPage.html +14 -14
- data/_includes/postbox.html +37 -37
- data/_includes/script.html +11 -4
- data/_includes/section/alertbar.html +11 -11
- data/_includes/section/count.html +23 -23
- data/_includes/share/socialshare.html +22 -0
- data/_layouts/aboutUs.html +22 -24
- data/_layouts/blog.html +71 -75
- data/_layouts/categories.html +24 -24
- data/_layouts/contactUs.html +49 -23
- data/_layouts/default.html +1 -1
- data/_layouts/disclaimer.html +50 -0
- data/_layouts/feature.html +120 -142
- data/_layouts/help.html +22 -23
- data/_layouts/home.html +44 -45
- data/_layouts/page.html +5 -5
- data/_layouts/post.html +63 -68
- data/_layouts/privacyPolicy.html +51 -0
- data/_layouts/termAndCondition.html +49 -23
- data/assets/cross.svg +4 -4
- data/assets/css/blog.css +464 -464
- data/assets/css/tools.css +1427 -3085
- data/assets/facebook.svg +4 -4
- data/assets/instagram.svg +4 -4
- data/assets/js/TopScroll.js +8 -9
- data/assets/linkdin.svg +4 -4
- data/assets/pdf.svg +20 -20
- data/assets/star.svg +4 -4
- data/assets/twitter.svg +4 -4
- data/assets/youtube.svg +4 -4
- metadata +23 -14
- data/_data/home/en.json +0 -48
- data/_data/home/hi.json +0 -32
- data/_data/pages/contact.json +0 -8
- data/_data/pages/termAndCondition.json +0 -8
- data/_includes/uploader/index.html +0 -69
data/_layouts/contactUs.html
CHANGED
|
@@ -1,24 +1,50 @@
|
|
|
1
|
-
{% assign file = page.fileName %}
|
|
2
|
-
{% assign
|
|
3
|
-
{% assign
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
{
|
|
7
|
-
|
|
8
|
-
<body>
|
|
9
|
-
{% include header/index.html %}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign folder = page.folderName %}
|
|
3
|
+
{% assign lang = page.lang %}
|
|
4
|
+
{% assign contactData = site.data[folder][lang][file] %}
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{contactData.htmlLangAtt}}">
|
|
7
|
+
{% include head/index.html %}
|
|
8
|
+
<body>
|
|
9
|
+
{% include header/index.html %}
|
|
10
|
+
{%- include dropdown/langdropdown.html -%}
|
|
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>
|
|
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>
|
|
42
|
+
<div>
|
|
43
|
+
{{content}}
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
{% include footer/index.html %}
|
|
47
|
+
{% include script.html %}
|
|
48
|
+
</body>
|
|
49
|
+
|
|
24
50
|
</html>
|
data/_layouts/default.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{{ content }}
|
|
1
|
+
{{ content }}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign folder = page.folderName %}
|
|
3
|
+
{% assign lang = page.lang %}
|
|
4
|
+
{% assign disclaimerData = site.data[folder][lang][file] %}
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{disclaimerData.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
|
+
<h1 class="about-h1 py-4">{{disclaimerData.h1}}</h1>
|
|
13
|
+
<h2 class="about-h2">{{disclaimerData.h2}}</h2>
|
|
14
|
+
<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>
|
|
42
|
+
<div>
|
|
43
|
+
{{content}}
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
{% include footer/index.html %}
|
|
47
|
+
{% include script.html %}
|
|
48
|
+
</body>
|
|
49
|
+
|
|
50
|
+
</html>
|
data/_layouts/feature.html
CHANGED
|
@@ -1,143 +1,121 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
{%
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
{%
|
|
10
|
-
{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
<div class="
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
<
|
|
101
|
-
page.value}}</
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
<!--
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
<h3 class="kmCmBc-q" itemprop="name">{{data.question | replace: "$variable", page.value}}<em
|
|
122
|
-
style="transform: rotate(-135deg);">
|
|
123
|
-
<i></i></em>
|
|
124
|
-
</h3>
|
|
125
|
-
<div style="display: block;">
|
|
126
|
-
<p class="kmKJfl-p" itemprop="text">{{data.answer | replace: "$variable", page.value}}</p>
|
|
127
|
-
</div>
|
|
128
|
-
</li>
|
|
129
|
-
<hr>
|
|
130
|
-
{% endfor %}
|
|
131
|
-
</ul>
|
|
132
|
-
</div>
|
|
133
|
-
</div>
|
|
134
|
-
<!-- FAQ section End -->
|
|
135
|
-
<!-- Footer -->
|
|
136
|
-
|
|
137
|
-
{% include footer/index.html %}
|
|
138
|
-
{% include script.html %}
|
|
139
|
-
|
|
140
|
-
<!-- Footer End -->
|
|
141
|
-
</body>
|
|
142
|
-
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign lang = page.lang %}
|
|
3
|
+
{% assign folder = page.folderName %}
|
|
4
|
+
{% assign featureData= site.data[folder][lang][file] %}
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{featureData.htmlLangAtt}}">
|
|
7
|
+
{% include head/index.html %}
|
|
8
|
+
<body>
|
|
9
|
+
{% include header/index.html %}
|
|
10
|
+
{%- include dropdown/langdropdown.html -%}
|
|
11
|
+
<div class="flex-container">
|
|
12
|
+
<div class="flex-class py-4 mt-4 mt-md-0 ">
|
|
13
|
+
<div class="d-flex justify-content-center align-items-center"><span class="fHhdVc">
|
|
14
|
+
<div class="div-cont feature-img mr-2"><svg xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 36 36" fill="#000">
|
|
16
|
+
<path
|
|
17
|
+
d="M6,6 L9,18 L6,30 L18,27 L30,30 L27,18 L30,6 L18,9 L6,6 Z M3,3 L18,6.75 L33,3 L29.25,18 L33,33 L18,29.25 L3,33 L6.75,18 L3,3 Z">
|
|
18
|
+
</path>
|
|
19
|
+
</svg></div>
|
|
20
|
+
</span>
|
|
21
|
+
<h1 class="feature-h1">{{featureData.H1 | replace: "$variable", page.value}}</h1>
|
|
22
|
+
</div>
|
|
23
|
+
<h2 class="feature-h2">{{featureData.H2 | replace: "$variable", page.value}}</h2>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="box-padding">
|
|
27
|
+
<div class="d-flex" id="__cond-922051">
|
|
28
|
+
<div class="flex-container">
|
|
29
|
+
<div class="flex-class">
|
|
30
|
+
<div class="d-flex flex-column">
|
|
31
|
+
<div class="box"
|
|
32
|
+
style=background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}>
|
|
33
|
+
<div class="box-border"></div>
|
|
34
|
+
<div class="content-box">
|
|
35
|
+
<!-- <input type="file" id="__picker-input" multiple="" accept="application/pdf,.pdf,application/vnd.openxmlformats-officedocument.wordprocessingml.document,.docx,application/msword,.doc,application/vnd.openxmlformats-officedocument.presentationml.presentation,.pptx,application/vnd.ms-powerpoint,.ppt,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,.xlsx,application/vnd.ms-excel,.xls,image/bmp,.bmp,image/jpeg,.jpg,.jpeg,image/png,.png,image/tiff,.tif,.tiff" class="sc-1oqtgb8-0 fqzcVW"> -->
|
|
36
|
+
{{content}}
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<!-- </div> -->
|
|
45
|
+
</div>
|
|
46
|
+
<!-- Uploader End -->
|
|
47
|
+
|
|
48
|
+
<!-- Feature/Texual content start -->
|
|
49
|
+
<div class="container mt-4">
|
|
50
|
+
<div class="row px-0">
|
|
51
|
+
{% for data in featureData.TEXTUAL_CONTENT %}
|
|
52
|
+
<div class="col-lg-4 col-md-6 my-4">
|
|
53
|
+
<div><img class="feature-card-img" src="{{data.logoUrl}}"
|
|
54
|
+
alt={{data.header}}>
|
|
55
|
+
<div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
|
|
56
|
+
<div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
{% endfor %}
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
<div class="d-flex justify-content-center mt-5 mb-5" id="__cond-1011327">
|
|
63
|
+
<div class="flex-container pb-5">
|
|
64
|
+
<div class="flex-class">
|
|
65
|
+
<div class=" d-flex flex-wrap justify-content-center">
|
|
66
|
+
{%- if featureData.HOW_TO_CONTENT.logoImageUrl -%}
|
|
67
|
+
<div class="how-to-img-wrapper "><img class="how-to-leftimg"
|
|
68
|
+
src="{{featureData.HOW_TO_CONTENT.logoImageUrl}}" alt="{{featureData.HOW_TO_CONTENT.logoImageAlt}}">
|
|
69
|
+
</div>
|
|
70
|
+
{%- endif -%}
|
|
71
|
+
<div class="how-to-right">
|
|
72
|
+
<h3 class="how-to-title">{{featureData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
73
|
+
page.value}}</h3>
|
|
74
|
+
<ol class="how-to-list">
|
|
75
|
+
{% for data in featureData.HOW_TO_CONTENT.steps %}
|
|
76
|
+
<li class="how-to-list-item">{{data | replace: "$variable", page.value}}</li>
|
|
77
|
+
{% endfor %}
|
|
78
|
+
</ol>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
</div>
|
|
84
|
+
|
|
85
|
+
<!-- </div> -->
|
|
86
|
+
<!-- How to section End -->
|
|
87
|
+
<!-- FAQ section start -->
|
|
88
|
+
<div class="container">
|
|
89
|
+
<div class="row">
|
|
90
|
+
<div class="col-md-8 mx-auto">
|
|
91
|
+
<div class="faq">
|
|
92
|
+
<h2 class="feature-h1 text-center">Frequently Asked Questions</h2>
|
|
93
|
+
<ul class="list-unstyled">
|
|
94
|
+
{% for data in featureData.FAQ %}
|
|
95
|
+
<li>
|
|
96
|
+
<h3 class="faq-question" itemprop="name">{{data.question | replace: "$variable", page.value}}<em
|
|
97
|
+
style="transform: rotate(-135deg);">
|
|
98
|
+
<i></i></em>
|
|
99
|
+
</h3>
|
|
100
|
+
<div style="display: block;">
|
|
101
|
+
<p class="faq-answer" itemprop="text">{{data.answer | replace: "$variable", page.value}}</p>
|
|
102
|
+
</div>
|
|
103
|
+
</li>
|
|
104
|
+
<hr>
|
|
105
|
+
{% endfor %}
|
|
106
|
+
</ul>
|
|
107
|
+
</div>
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
|
+
|
|
111
|
+
</div>
|
|
112
|
+
<!-- FAQ section End -->
|
|
113
|
+
<!-- Footer -->
|
|
114
|
+
{%- include share/socialshare.html -%}
|
|
115
|
+
{% include footer/index.html %}
|
|
116
|
+
{% include script.html %}
|
|
117
|
+
|
|
118
|
+
<!-- Footer End -->
|
|
119
|
+
</body>
|
|
120
|
+
|
|
143
121
|
</html>
|
data/_layouts/help.html
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
|
-
{% assign file = page.fileName %}
|
|
2
|
-
{% assign
|
|
3
|
-
{% assign
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
{
|
|
7
|
-
|
|
8
|
-
<body>
|
|
9
|
-
{% include header/index.html %}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign folder = page.folderName %}
|
|
3
|
+
{% assign lang = page.lang %}
|
|
4
|
+
{% assign helpData = site.data[folder][lang][file] %}
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{helpData.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
|
+
<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>
|
|
15
|
+
<div>
|
|
16
|
+
{{content}}
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
{% include footer/index.html %}
|
|
20
|
+
{% include script.html %}
|
|
21
|
+
</body>
|
|
22
|
+
|
|
24
23
|
</html>
|
data/_layouts/home.html
CHANGED
|
@@ -1,46 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
{%
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
{%
|
|
10
|
-
{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
</
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
{% include
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign lang = page.lang %}
|
|
3
|
+
{% assign folder = page.folderName %}
|
|
4
|
+
{% assign homeData= site.data[folder][lang][file] %}
|
|
5
|
+
<!DOCTYPE html>
|
|
6
|
+
<html lang="{{homeData.htmlLangAtt}}">
|
|
7
|
+
{% include head/index.html %}
|
|
8
|
+
<body>
|
|
9
|
+
{% include header/index.html %}
|
|
10
|
+
{%- include dropdown/langdropdown.html -%}
|
|
11
|
+
<div class="flex-container">
|
|
12
|
+
<div class="flex-class py-5">
|
|
13
|
+
<h1 class="home-top-h1">{{homeData.h1}}</h1>
|
|
14
|
+
<h2 class="home-top-h2">{{homeData.h2}}</h2>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
<div class="flex-container">
|
|
19
|
+
<div class="flex-class">
|
|
20
|
+
<ul class="home-features">
|
|
21
|
+
{% for product in homeData.features %}
|
|
22
|
+
<li style=background:{{product.color}} class="home-feature-box">
|
|
23
|
+
<div class="home-inner-box">
|
|
24
|
+
<div class="div-cont feature-img">
|
|
25
|
+
<img src="{{product.icon}}" alt="star icon">
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="home-feature-desc">{{product.description}}</div><a
|
|
29
|
+
class="home-feature-name" href="{{product.url}}">{{product.name}}</a>
|
|
30
|
+
</li>
|
|
31
|
+
{% endfor %}
|
|
32
|
+
</ul>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<div>
|
|
36
|
+
{{content}}
|
|
37
|
+
</div>
|
|
38
|
+
{%- include share/socialshare.html -%}
|
|
39
|
+
<!-- Footer -->
|
|
40
|
+
{% include footer/index.html %}
|
|
41
|
+
{% include script.html %}
|
|
42
|
+
<!-- Footer End -->
|
|
43
|
+
</body>
|
|
44
|
+
|
|
46
45
|
</html>
|