appscms-tools-theme 1.2.8 → 1.2.9
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/_includes/section/recent_posts.html +38 -37
- data/_includes/section/related_categories_post.html +61 -16
- data/_includes/section/related_tag_post.html +0 -1
- data/_layouts/feature.html +20 -16
- data/_layouts/home.html +68 -62
- data/_layouts/post.html +4 -21
- data/assets/css/blog.css +16 -10
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3176e90b24f88503d418ce22bba0b1fdaadcbbe4ac2f1d6d017bbcfa1f6c86e2
|
|
4
|
+
data.tar.gz: 61c3f7bdfa9ea136492696fcda64391a7a45df6d9acd7239e0fe712c569fd06b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a193ed410ca1b03ea560c81ca2fb650fdf4dc661d066dbd3c30a09e40ef6f98142c873a9e420615e3466d8d74924c8559d4627b910721b26fdc32f52d05484e9
|
|
7
|
+
data.tar.gz: 5bd01b364fc6da5e54a4566b73d6f2122e430cbfe6029fca98acaa45ddc16ceb631d93e827c89635b07765ac1ac1374d9954dd218217cfecc52579e46128a667
|
|
@@ -1,43 +1,44 @@
|
|
|
1
1
|
<div class="container">
|
|
2
2
|
<div class="relatedPosts">
|
|
3
|
-
{%- if
|
|
4
|
-
<h1 class="related_post_heading">Recent Posts</h1>
|
|
5
|
-
{%- endif -%}
|
|
6
|
-
<div class="row">
|
|
7
|
-
{% for post in site.posts offset:1 limit:3 %}
|
|
8
|
-
{% if post.url != page.url %}
|
|
9
|
-
{%- include /authors/authors.html -%}
|
|
10
|
-
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
3
|
+
{%- if site.posts.size>0 -%}
|
|
4
|
+
<h1 class="related_post_heading">Recent Posts</h1>
|
|
5
|
+
{%- endif -%}
|
|
6
|
+
<div class="row">
|
|
7
|
+
{% for post in site.posts offset:1 limit:3 %}
|
|
8
|
+
{% if post.url != page.url %}
|
|
9
|
+
{%- include /authors/authors.html -%}
|
|
10
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
11
|
+
<div class="card h-100">
|
|
12
|
+
<a href="{{ post.url }}">
|
|
13
|
+
<img src="{{ post.image }}" class="card-img-top" height="215px" width="100%" loading="lazy"
|
|
14
|
+
alt="">
|
|
15
|
+
</a>
|
|
16
|
+
<div class="card-body">
|
|
17
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
18
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
19
|
+
</a>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="card-footer bg-white">
|
|
22
|
+
<div class="wrapfooter">
|
|
23
|
+
{% if post.author %}
|
|
24
|
+
<span class="meta-footer-thumb">
|
|
25
|
+
<img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}">
|
|
26
|
+
</span>
|
|
27
|
+
{% endif %}
|
|
28
|
+
<span class="author-meta">
|
|
29
|
+
<span class="post-name">
|
|
30
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
31
|
+
</span><br>
|
|
32
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
33
|
+
</span>
|
|
34
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
35
|
+
title="Read Story">Read More</a></span>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
35
39
|
</div>
|
|
40
|
+
{% endif %}
|
|
41
|
+
{% endfor %}
|
|
36
42
|
</div>
|
|
37
43
|
</div>
|
|
38
|
-
</div>
|
|
39
|
-
{% endif %}
|
|
40
|
-
{% endfor %}
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
44
|
</div>
|
|
@@ -1,39 +1,47 @@
|
|
|
1
1
|
<div class="container">
|
|
2
|
-
|
|
3
2
|
<div class="relatedPosts">
|
|
4
3
|
|
|
5
|
-
{%- if page.categories or page.tags-%}
|
|
6
4
|
<h2 class="pt-5 pb-0 related_post_heading">You might also like</h2>
|
|
7
|
-
{%- endif -%}
|
|
8
5
|
|
|
9
|
-
{% assign maxRelated =
|
|
6
|
+
{% assign maxRelated = 6 %}
|
|
10
7
|
{% assign minCommonTags = 1 %}
|
|
11
8
|
{% assign maxRelatedCounter = 0 %}
|
|
12
9
|
|
|
13
10
|
<div class="row">
|
|
14
11
|
{% for post in site.posts %}
|
|
15
|
-
{%- include /authors/authors.html -%}
|
|
16
12
|
{% assign sameTagCount = 0 %}
|
|
17
13
|
{% assign commonTags = '' %}
|
|
18
14
|
|
|
15
|
+
{%- if page.categories-%}
|
|
19
16
|
{% for category in post.categories %}
|
|
20
17
|
{% if post.url != page.url %}
|
|
21
18
|
{% if page.categories contains category %}
|
|
22
19
|
{% assign sameTagCount = sameTagCount | plus: 1 %}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
{% capture tagmarkup %} <span class="label label-default">{{ category }}</span> {% endcapture %}
|
|
26
|
-
{% assign commonTags = commonTags | append: tagmarkup %}
|
|
27
20
|
{% endif %}
|
|
28
21
|
{% endif %}
|
|
29
22
|
{% endfor %}
|
|
23
|
+
{%- endif -%}
|
|
24
|
+
|
|
25
|
+
{%- if page.tages -%}
|
|
26
|
+
{% for tag in post.tags %}
|
|
27
|
+
{% if post.url != page.url %}
|
|
28
|
+
{% if page.tags contains tag %}
|
|
29
|
+
{% assign sameTagCount = sameTagCount | plus: 1 %}
|
|
30
|
+
{% endif %}
|
|
31
|
+
{%- endif -%}
|
|
32
|
+
{% endfor %}
|
|
33
|
+
{%- endif -%}
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
{%- assign variable = post.title -%}
|
|
30
37
|
|
|
31
38
|
|
|
32
39
|
{% if sameTagCount >= minCommonTags %}
|
|
33
40
|
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
34
41
|
<div class="card h-100">
|
|
35
42
|
<a href="{{ post.url }}">
|
|
36
|
-
<img src="{{ post.image }}" loading="lazy" class="card-img-top"
|
|
43
|
+
<img src="{{ post.image }}" loading="lazy" class="card-img-top" height="auto" width="100%"
|
|
44
|
+
alt="">
|
|
37
45
|
</a>
|
|
38
46
|
<div class="card-body">
|
|
39
47
|
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
@@ -44,7 +52,7 @@
|
|
|
44
52
|
<div class="wrapfooter">
|
|
45
53
|
{% if post.author %}
|
|
46
54
|
<span class="meta-footer-thumb">
|
|
47
|
-
<img class="author-thumb"
|
|
55
|
+
<img class="author-thumb" loading="lazy" src="{{ image }}" alt="{{ authorName }}">
|
|
48
56
|
</span>
|
|
49
57
|
{% endif %}
|
|
50
58
|
|
|
@@ -55,7 +63,8 @@
|
|
|
55
63
|
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
56
64
|
</span>
|
|
57
65
|
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
58
|
-
title="Read Story">Read
|
|
66
|
+
title="Read Story">Read
|
|
67
|
+
More</a></span>
|
|
59
68
|
</div>
|
|
60
69
|
</div>
|
|
61
70
|
</div>
|
|
@@ -64,11 +73,47 @@
|
|
|
64
73
|
{% if maxRelatedCounter >= maxRelated %}
|
|
65
74
|
{% break %}
|
|
66
75
|
{% endif %}
|
|
67
|
-
{
|
|
68
|
-
{
|
|
69
|
-
{%- if page.tags -%}
|
|
70
|
-
{%- include section/related_tag_post.html -%}
|
|
76
|
+
{%- else -%}
|
|
77
|
+
{%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
|
|
71
78
|
{%- endif -%}
|
|
79
|
+
{% endfor %}
|
|
80
|
+
|
|
81
|
+
{% for post in site.posts limit: remamingPosts %}
|
|
82
|
+
{%- include /authors/authors.html -%}
|
|
83
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
84
|
+
<div class="card h-100">
|
|
85
|
+
<a href="{{ post.url }}">
|
|
86
|
+
<img src="{{ post.image }}" class="card-img-top" height="215px" width="100%" loading="lazy"
|
|
87
|
+
alt="">
|
|
88
|
+
</a>
|
|
89
|
+
<div class="card-body">
|
|
90
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
91
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
92
|
+
</a>
|
|
93
|
+
</div>
|
|
94
|
+
<div class="card-footer bg-white">
|
|
95
|
+
<div class="wrapfooter">
|
|
96
|
+
{% if post.author %}
|
|
97
|
+
<span class="meta-footer-thumb">
|
|
98
|
+
<img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}">
|
|
99
|
+
</span>
|
|
100
|
+
{% endif %}
|
|
101
|
+
<span class="author-meta">
|
|
102
|
+
<span class="post-name">
|
|
103
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
104
|
+
</span><br>
|
|
105
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
106
|
+
</span>
|
|
107
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
108
|
+
title="Read Story">Read
|
|
109
|
+
More</a></span>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
</div>
|
|
113
|
+
</div>
|
|
114
|
+
{% endfor %}
|
|
115
|
+
|
|
116
|
+
|
|
72
117
|
</div>
|
|
73
118
|
</div>
|
|
74
119
|
</div>
|
data/_layouts/feature.html
CHANGED
|
@@ -9,18 +9,19 @@
|
|
|
9
9
|
<body>
|
|
10
10
|
{% include header/index.html %}
|
|
11
11
|
{%- if site.safeui -%}
|
|
12
|
-
<div class="alert alert-{{featureData.variant | default: 'warning'}} alert-dismissible fade show text-center"
|
|
12
|
+
<div class="alert alert-{{featureData.variant | default: 'warning'}} alert-dismissible fade show text-center"
|
|
13
|
+
role="alert">
|
|
13
14
|
<img src="/assets/secure.svg" height="23px" width="18px" alt="secure">
|
|
14
15
|
{%- if featureData.alertmsg -%}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
{%- endif -%}
|
|
19
|
-
|
|
16
|
+
{{featureData.alertmsg}}
|
|
17
|
+
{%- else -%}
|
|
18
|
+
We do not upload any files to server, hence your data is 100% secure.
|
|
19
|
+
{%- endif -%}
|
|
20
|
+
<img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload">
|
|
20
21
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
21
|
-
|
|
22
|
+
<span aria-hidden="true">×</span>
|
|
22
23
|
</button>
|
|
23
|
-
|
|
24
|
+
</div>
|
|
24
25
|
{%- endif -%}
|
|
25
26
|
<div class="flex-container pb-3">
|
|
26
27
|
<div class="flex-class py-4 mt-4 mt-md-0 ">
|
|
@@ -65,7 +66,8 @@
|
|
|
65
66
|
<div class="row px-0">
|
|
66
67
|
{% for data in featureData.TEXTUAL_CONTENT %}
|
|
67
68
|
<div class="col-lg-4 col-md-6 my-4">
|
|
68
|
-
<div><img class="feature-card-img" src="{{data.logoUrl}}" loading="lazy" height="48px" width="48px"
|
|
69
|
+
<div><img class="feature-card-img" src="{{data.logoUrl}}" loading="lazy" height="48px" width="48px"
|
|
70
|
+
alt={{data.header}}>
|
|
69
71
|
<div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
|
|
70
72
|
<div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
|
|
71
73
|
</div>
|
|
@@ -78,7 +80,7 @@
|
|
|
78
80
|
<div class="flex-class">
|
|
79
81
|
<div class=" d-flex flex-wrap justify-content-center">
|
|
80
82
|
{%- if featureData.HOW_TO_CONTENT.logoImageUrl -%}
|
|
81
|
-
<div class="how-to-img-wrapper "><img class="how-to-leftimg" height="180px" width="300px"
|
|
83
|
+
<div class="how-to-img-wrapper "><img class="how-to-leftimg" height="180px" width="300px"
|
|
82
84
|
src="{{featureData.HOW_TO_CONTENT.logoImageUrl}}" loading="lazy"
|
|
83
85
|
alt="{{featureData.HOW_TO_CONTENT.logoImageAlt}}">
|
|
84
86
|
</div>
|
|
@@ -88,7 +90,8 @@
|
|
|
88
90
|
page.value}}</h3>
|
|
89
91
|
<ol class="how-to-list">
|
|
90
92
|
{% for data in featureData.HOW_TO_CONTENT.steps %}
|
|
91
|
-
<li
|
|
93
|
+
<li id="step{{forloop.index}}" class="how-to-list-item">{{data | replace: "$variable",
|
|
94
|
+
page.value}}</li>
|
|
92
95
|
{% endfor %}
|
|
93
96
|
</ol>
|
|
94
97
|
</div>
|
|
@@ -96,13 +99,14 @@
|
|
|
96
99
|
</div>
|
|
97
100
|
</div>
|
|
98
101
|
</div>
|
|
99
|
-
|
|
102
|
+
|
|
100
103
|
<div class="container">
|
|
101
104
|
<div class="row">
|
|
102
105
|
<div class="col-md-8 mx-auto">
|
|
103
106
|
<div class="faq">
|
|
104
107
|
{%- if featureData.FAQ.size>0 -%}
|
|
105
|
-
<h2 class="feature-h1 text-center">{{featureData.faqheading | default: 'Frequently Asked
|
|
108
|
+
<h2 class="feature-h1 text-center">{{featureData.faqheading | default: 'Frequently Asked
|
|
109
|
+
Questions'}}</h2>
|
|
106
110
|
{%- endif -%}
|
|
107
111
|
<ul class="list-unstyled">
|
|
108
112
|
{% for data in featureData.FAQ %}
|
|
@@ -128,7 +132,7 @@
|
|
|
128
132
|
{%- include /Usp/usp.html -%}
|
|
129
133
|
{%- if featureData.display_formats -%}
|
|
130
134
|
<div class="container compare-table ">
|
|
131
|
-
|
|
135
|
+
{%- include fileformat/fileformatdetail.html -%}
|
|
132
136
|
</div>
|
|
133
137
|
{%- endif -%}
|
|
134
138
|
{%- if featureData.compare_formats -%}
|
|
@@ -136,7 +140,7 @@
|
|
|
136
140
|
{%- include fileformat/comparisonfiles.html -%}
|
|
137
141
|
</div>
|
|
138
142
|
{%- endif -%}
|
|
139
|
-
{%- if page.categories or page.tags-%}
|
|
143
|
+
{%- if page.categories.size> 0 or page.tags.size>0-%}
|
|
140
144
|
{%- include section/related_categories_post.html -%}
|
|
141
145
|
{%- else -%}
|
|
142
146
|
{%- include section/recent_posts.html -%}
|
|
@@ -145,4 +149,4 @@
|
|
|
145
149
|
{% include script.html %}
|
|
146
150
|
</body>
|
|
147
151
|
|
|
148
|
-
</html>
|
|
152
|
+
</html>
|
data/_layouts/home.html
CHANGED
|
@@ -5,27 +5,29 @@
|
|
|
5
5
|
<!DOCTYPE html>
|
|
6
6
|
<html lang="{{homeData.htmlLangAtt}}">
|
|
7
7
|
{% include head/index.html %}
|
|
8
|
+
|
|
8
9
|
<body>
|
|
9
10
|
{% include header/index.html %}
|
|
10
11
|
{%- if homeData.nofileupload -%}
|
|
11
|
-
<div class="alert alert-{{featureData.variant | default: 'warning'}} alert-dismissible fade show text-center"
|
|
12
|
+
<div class="alert alert-{{featureData.variant | default: 'warning'}} alert-dismissible fade show text-center"
|
|
13
|
+
role="alert">
|
|
12
14
|
<img src="/assets/secure.svg" height="23px" width="18px" alt="secure">
|
|
13
15
|
{%- if featureData.alertmsg -%}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
{%- endif -%}
|
|
18
|
-
|
|
16
|
+
{{featureData.alertmsg}}
|
|
17
|
+
{%- else -%}
|
|
18
|
+
We do not upload any files to server, hence your data is 100% secure.
|
|
19
|
+
{%- endif -%}
|
|
20
|
+
<img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload">
|
|
19
21
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
20
|
-
|
|
22
|
+
<span aria-hidden="true">×</span>
|
|
21
23
|
</button>
|
|
22
|
-
|
|
24
|
+
</div>
|
|
23
25
|
{%- endif -%}
|
|
24
26
|
{%- if homeData.h1 or homeData.h2 -%}
|
|
25
27
|
<div class="flex-container">
|
|
26
28
|
<div class="flex-class py-5">
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
<h1 class="home-top-h1">{{homeData.h1}}</h1>
|
|
30
|
+
<h2 class="home-top-h2">{{homeData.h2}}</h2>
|
|
29
31
|
</div>
|
|
30
32
|
</div>
|
|
31
33
|
{%- endif -%}
|
|
@@ -36,12 +38,12 @@
|
|
|
36
38
|
{% for product in homeData.features %}
|
|
37
39
|
<li style=background:{{product.color}} class="home-feature-box">
|
|
38
40
|
<div class="home-inner-box">
|
|
39
|
-
<div class="div-cont feature-img" height="36px" width="36px"
|
|
41
|
+
<div class="div-cont feature-img" height="36px" width="36px">
|
|
40
42
|
<img src="{{product.icon}}" height="36px" width="36px" alt="star icon">
|
|
41
43
|
</div>
|
|
42
44
|
</div>
|
|
43
|
-
<div class="home-feature-desc">{{product.description}}</div><a
|
|
44
|
-
|
|
45
|
+
<div class="home-feature-desc">{{product.description}}</div><a class="home-feature-name"
|
|
46
|
+
href="{{product.url}}">{{product.name}}</a>
|
|
45
47
|
</li>
|
|
46
48
|
{% endfor %}
|
|
47
49
|
</ul>
|
|
@@ -56,15 +58,15 @@
|
|
|
56
58
|
<div class="row px-0">
|
|
57
59
|
{% for data in homeData.TEXTUAL_CONTENT %}
|
|
58
60
|
<div class="col-lg-4 col-md-6 my-4">
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
</div>
|
|
61
|
+
<div><img class="feature-card-img" height="48px" width="48px" loading="lazy" src="{{data.logoUrl}}"
|
|
62
|
+
alt={{data.header}}>
|
|
63
|
+
<div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
|
|
64
|
+
<div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
|
|
64
65
|
</div>
|
|
65
|
-
{% endfor %}
|
|
66
66
|
</div>
|
|
67
|
+
{% endfor %}
|
|
67
68
|
</div>
|
|
69
|
+
</div>
|
|
68
70
|
{%- endif -%}
|
|
69
71
|
{%- if homeData.HOW_TO_CONTENT -%}
|
|
70
72
|
<div class="d-flex justify-content-center mt-5 mb-5" id="__cond-1011327">
|
|
@@ -72,62 +74,66 @@
|
|
|
72
74
|
<div class="flex-class">
|
|
73
75
|
<div class=" d-flex flex-wrap justify-content-center">
|
|
74
76
|
{%- if homeData.HOW_TO_CONTENT.logoImageUrl -%}
|
|
75
|
-
<div class="how-to-img-wrapper "><img class="how-to-leftimg" loading="lazy"
|
|
76
|
-
|
|
77
|
-
|
|
77
|
+
<div class="how-to-img-wrapper "><img class="how-to-leftimg" loading="lazy" height="215px"
|
|
78
|
+
width="100%" src="{{homeData.HOW_TO_CONTENT.logoImageUrl}}"
|
|
79
|
+
alt="{{homeData.HOW_TO_CONTENT.logoImageAlt}}">
|
|
80
|
+
</div>
|
|
78
81
|
{%- endif -%}
|
|
79
82
|
<div class="how-to-right">
|
|
80
83
|
<h3 class="how-to-title">{{homeData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
81
84
|
page.value}}</h3>
|
|
82
85
|
<ol class="how-to-list">
|
|
83
86
|
{% for data in homeData.HOW_TO_CONTENT.steps %}
|
|
84
|
-
<li id="step{{forloop.index}}" class="how-to-list-item">{{data | replace: "$variable",
|
|
87
|
+
<li id="step{{forloop.index}}" class="how-to-list-item">{{data | replace: "$variable",
|
|
88
|
+
page.value}}</li>
|
|
85
89
|
{% endfor %}
|
|
86
90
|
</ol>
|
|
87
91
|
</div>
|
|
88
92
|
</div>
|
|
89
93
|
</div>
|
|
90
94
|
</div>
|
|
91
|
-
</div>
|
|
95
|
+
</div>
|
|
92
96
|
|
|
93
97
|
{%- endif -%}
|
|
94
|
-
{%- if homeData.FAQ -%}
|
|
95
|
-
<div class="container">
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
<h2 class="feature-h1 text-center">{{homeData.faqheading | default: 'Frequently Asked Questions'}}
|
|
98
|
+
{%- if homeData.FAQ -%}
|
|
99
|
+
<div class="container">
|
|
100
|
+
<div class="row">
|
|
101
|
+
<div class="col-md-8 mx-auto">
|
|
102
|
+
<div class="faq">
|
|
103
|
+
{%- if homeData.FAQ.size>0 -%}
|
|
104
|
+
<h2 class="feature-h1 text-center">{{homeData.faqheading | default: 'Frequently Asked Questions'}}
|
|
105
|
+
</h2>
|
|
101
106
|
{%- endif -%}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
style="transform: rotate(-135deg);">
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
107
|
+
<ul class="list-unstyled">
|
|
108
|
+
{% for data in homeData.FAQ %}
|
|
109
|
+
<li>
|
|
110
|
+
<h3 class="faq-question" itemprop="name">{{data.question | replace: "$variable",
|
|
111
|
+
page.value}}<em style="transform: rotate(-135deg);">
|
|
112
|
+
<i></i></em>
|
|
113
|
+
</h3>
|
|
114
|
+
<div style="display: block;">
|
|
115
|
+
<p class="faq-answer" itemprop="text">{{data.answer | replace: "$variable", page.value}}
|
|
116
|
+
</p>
|
|
117
|
+
</div>
|
|
118
|
+
</li>
|
|
119
|
+
<hr>
|
|
120
|
+
{% endfor %}
|
|
121
|
+
</ul>
|
|
122
|
+
</div>
|
|
123
|
+
</div>
|
|
117
124
|
</div>
|
|
118
|
-
</div>
|
|
119
125
|
|
|
120
|
-
</div>
|
|
121
|
-
{%- endif -%}
|
|
122
|
-
{%- include share/socialshare.html -%}
|
|
123
|
-
{%- include Rating/rating.html -%}
|
|
124
|
-
{%- if homeData.USPS -%}
|
|
126
|
+
</div>
|
|
127
|
+
{%- endif -%}
|
|
128
|
+
{%- include share/socialshare.html -%}
|
|
129
|
+
{%- include Rating/rating.html -%}
|
|
130
|
+
{%- if homeData.USPS -%}
|
|
125
131
|
{%- include /Usp/usp.html -%}
|
|
126
132
|
|
|
127
133
|
{%- endif -%}
|
|
128
|
-
{%- if homeData.display_formats -%}
|
|
134
|
+
{%- if homeData.display_formats -%}
|
|
129
135
|
<div class="container file-detail-table ">
|
|
130
|
-
|
|
136
|
+
{%- include fileformat/fileformatdetail.html -%}
|
|
131
137
|
</div>
|
|
132
138
|
{%- endif -%}
|
|
133
139
|
{%- if homeData.compare_formats -%}
|
|
@@ -135,13 +141,13 @@
|
|
|
135
141
|
{%- include fileformat/comparisonfiles.html -%}
|
|
136
142
|
</div>
|
|
137
143
|
{%- endif -%}
|
|
138
|
-
{%- if page.categories or page.tags-%}
|
|
139
|
-
{%- include section/related_categories_post.html -%}
|
|
140
|
-
{%- else -%}
|
|
141
|
-
{%- include section/recent_posts.html -%}
|
|
142
|
-
{% endif %}
|
|
143
|
-
{% include footer/index.html %}
|
|
144
|
-
{% include script.html %}
|
|
144
|
+
{%- if page.categories.size> 0 or page.tags.size>0-%}
|
|
145
|
+
{%- include section/related_categories_post.html -%}
|
|
146
|
+
{%- else -%}
|
|
147
|
+
{%- include section/recent_posts.html -%}
|
|
148
|
+
{% endif %}
|
|
149
|
+
{% include footer/index.html %}
|
|
150
|
+
{% include script.html %}
|
|
145
151
|
</body>
|
|
146
152
|
|
|
147
|
-
</html>
|
|
153
|
+
</html>
|
data/_layouts/post.html
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
{% include custom-head.html %}
|
|
4
4
|
|
|
5
|
-
|
|
6
5
|
<style>
|
|
7
6
|
p {
|
|
8
7
|
margin-bottom: 3rem;
|
|
@@ -18,6 +17,7 @@
|
|
|
18
17
|
text-decoration: underline !important;
|
|
19
18
|
}
|
|
20
19
|
|
|
20
|
+
|
|
21
21
|
@media (max-width:768px) {
|
|
22
22
|
.theseFeatures {
|
|
23
23
|
text-align: center !important;
|
|
@@ -88,26 +88,9 @@
|
|
|
88
88
|
<h3 class="font-weight-bolder">Checkout out these features</h3>
|
|
89
89
|
<br>
|
|
90
90
|
|
|
91
|
-
{%- for item in site.pages limit: 12-%}
|
|
92
|
-
{%- if
|
|
93
|
-
item.name != "about.md" and
|
|
94
|
-
item.name != 'categories.md' and
|
|
95
|
-
item.name != 'contact.md' and
|
|
96
|
-
item.name != 'download.md' and
|
|
97
|
-
item.name != "example.md" and
|
|
98
|
-
item.name != 'fileinfo.md' and
|
|
99
|
-
item.name != 'googledrive.js' and
|
|
100
|
-
item.name != 'disclaimer.md' and
|
|
101
|
-
item.name != 'help.md' and
|
|
102
|
-
item.name != 'termsandconditions.md' and
|
|
103
|
-
item.name != 'index.html' and
|
|
104
|
-
item.name != 'privacy.md' and
|
|
105
|
-
item.name != 'index-hi.md'
|
|
106
|
-
-%}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
91
|
|
|
92
|
+
{%- for item in site.pages limit: 12-%}
|
|
93
|
+
{%- if item.tool -%}
|
|
111
94
|
<p class="mb-3"> <a class="featureLink" style="font-size: 13px"
|
|
112
95
|
href="/{{item.permalink }}">{{item.permalink
|
|
113
96
|
|
|
|
@@ -122,7 +105,7 @@
|
|
|
122
105
|
</div>
|
|
123
106
|
</div>
|
|
124
107
|
<div class="col-md-12">
|
|
125
|
-
{%- if page.categories or page.tags-%}
|
|
108
|
+
{%- if page.categories.size> 0 or page.tags.size>0-%}
|
|
126
109
|
{%- include section/related_categories_post.html -%}
|
|
127
110
|
{%- else -%}
|
|
128
111
|
{%- include section/recent_posts.html -%}
|
data/assets/css/blog.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**********************************************/
|
|
2
2
|
/***************BLOG-CSS-STYLING *************/
|
|
3
|
+
|
|
3
4
|
/********************************************/
|
|
4
5
|
|
|
5
6
|
html {
|
|
@@ -252,10 +253,11 @@ header {
|
|
|
252
253
|
font-size: 20px;
|
|
253
254
|
}
|
|
254
255
|
|
|
255
|
-
|
|
256
|
+
/*.socialIons {
|
|
256
257
|
position: sticky;
|
|
257
258
|
top: 100px;
|
|
258
|
-
}
|
|
259
|
+
}*/
|
|
260
|
+
|
|
259
261
|
.socialIons > .item-lists2 {
|
|
260
262
|
display: flex;
|
|
261
263
|
flex-direction: row;
|
|
@@ -431,14 +433,8 @@ header {
|
|
|
431
433
|
.bd-search {
|
|
432
434
|
padding: 10px 25px;
|
|
433
435
|
}
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
@media (max-width: 768px) {
|
|
437
|
-
.navbar-nav {
|
|
438
|
-
align-items: unset;
|
|
439
|
-
}
|
|
440
|
-
.nav-item {
|
|
441
|
-
padding: 0 !important;
|
|
436
|
+
.socialIons > .item-lists2 {
|
|
437
|
+
justify-content: center;
|
|
442
438
|
}
|
|
443
439
|
.socialIons > .item-lists2 {
|
|
444
440
|
flex-direction: row;
|
|
@@ -448,6 +444,16 @@ header {
|
|
|
448
444
|
padding-right: 30px;
|
|
449
445
|
margin: 0;
|
|
450
446
|
}
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
@media (max-width: 768px) {
|
|
450
|
+
.navbar-nav {
|
|
451
|
+
align-items: unset;
|
|
452
|
+
}
|
|
453
|
+
.nav-item {
|
|
454
|
+
padding: 0 !important;
|
|
455
|
+
}
|
|
456
|
+
|
|
451
457
|
.sep {
|
|
452
458
|
margin: 0;
|
|
453
459
|
}
|
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: 1.2.
|
|
4
|
+
version: 1.2.9
|
|
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-
|
|
11
|
+
date: 2021-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|