appscms-tools-theme 4.5.4 → 4.5.6
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/_data/blog/nav.json +2 -2
- data/_data/feature/en/compress-pdf.json +301 -344
- data/_data/header/en/data.json +1 -1
- data/_includes/appscms/customblog/contenttool-recent-posts.html +72 -71
- data/_includes/appscms/customblog/pageRelatedPosts.html +3 -3
- data/_includes/appscms/customblog/recentposts.html +3 -3
- data/_includes/appscms/customblog/relatedBlogs.html +3 -3
- data/_includes/appscms/customblog/relatedposts.html +5 -4
- data/_includes/appscms/extras/appscms-postbox.html +25 -28
- data/_includes/appscms/head/head.html +182 -72
- data/_includes/appscms/infographics/infographics.html +27 -21
- data/_includes/appscms/recent-posts/recent_posts.html +2 -4
- data/_includes/appscms/recent-posts/related_categories_post.html +4 -4
- data/_includes/customblog/pageRelatedPosts.html +1 -1
- data/_includes/customblog/recentposts.html +1 -1
- data/_includes/customblog/relatedBlogs.html +1 -1
- data/_includes/customblog/relatedposts.html +2 -2
- data/_includes/paginationBlogPage.html +2 -2
- data/_includes/postbox.html +62 -29
- data/_includes/section/recent_posts.html +86 -58
- data/_includes/section/related_categories_post.html +2 -2
- data/_layouts/aboutUs.html +161 -85
- data/_layouts/allAuthors.html +2 -2
- data/_layouts/appscms-about.html +1 -1
- data/_layouts/appscms-author.html +2 -2
- data/_layouts/appscms-authors.html +136 -162
- data/_layouts/appscms-blog.html +94 -55
- data/_layouts/blog-1.html +100 -68
- metadata +2 -2
|
@@ -1,66 +1,94 @@
|
|
|
1
1
|
<section class="related-posts-section">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="relatedPosts">
|
|
4
|
+
{%- if site.posts.size>0 -%} {%- if site.monumetricId and page.url != '/'
|
|
5
|
+
and page.lang == "en" -%}
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="col-md-9 mx-auto">
|
|
9
|
+
{%- endif -%}
|
|
10
|
+
<h4 class="related_post_heading">Recent Posts</h4>
|
|
11
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
{%- endif -%} {%- endif -%}
|
|
15
|
+
<div class="row">
|
|
16
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
12
17
|
|
|
18
|
+
<div class="col-md-9 mx-auto">
|
|
19
|
+
<div class="row">
|
|
20
|
+
{%- endif -%} {% assign posts = site.posts |
|
|
21
|
+
where_exp:"post","post.url != page.url" %} {% for post in posts
|
|
22
|
+
limit: 6%} {%- include /authors/authors.html -%}
|
|
23
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
24
|
+
<div class="card h-100">
|
|
25
|
+
<a href="{{ post.url }}">
|
|
26
|
+
<img
|
|
27
|
+
src="{{ post.image }}"
|
|
28
|
+
class="card-img-top"
|
|
29
|
+
height="215px"
|
|
30
|
+
width="100%"
|
|
31
|
+
loading="lazy"
|
|
32
|
+
alt="{{post.title}}"
|
|
33
|
+
{%-
|
|
34
|
+
if
|
|
35
|
+
site.crossorigin
|
|
36
|
+
-%}
|
|
37
|
+
crossorigin
|
|
38
|
+
{%-
|
|
39
|
+
endif
|
|
40
|
+
-%}
|
|
41
|
+
/>
|
|
42
|
+
</a>
|
|
43
|
+
<div class="card-body">
|
|
44
|
+
<a
|
|
45
|
+
class="text-decoration-none text-dark"
|
|
46
|
+
href="{{ post.url }}"
|
|
47
|
+
class="anchor_link"
|
|
48
|
+
>
|
|
49
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
50
|
+
</a>
|
|
13
51
|
</div>
|
|
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
|
-
</span>
|
|
46
|
-
{% endif %}
|
|
47
|
-
<span class="author-meta">
|
|
48
|
-
<span class="post-name">
|
|
49
|
-
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
50
|
-
</span><br>
|
|
51
|
-
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
52
|
-
</span>
|
|
53
|
-
</div>
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
</div>
|
|
57
|
-
{% endfor %}
|
|
58
|
-
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
59
|
-
|
|
60
|
-
</div>
|
|
52
|
+
<div class="card-footer">
|
|
53
|
+
<div class="wrapfooter">
|
|
54
|
+
{% if post.author %}
|
|
55
|
+
<span class="meta-footer-thumb">
|
|
56
|
+
<img
|
|
57
|
+
class="author-thumb"
|
|
58
|
+
loading="lazy"
|
|
59
|
+
src="{{image}}"
|
|
60
|
+
alt="{{ authorName }}"
|
|
61
|
+
{%-
|
|
62
|
+
if
|
|
63
|
+
site.crossorigin
|
|
64
|
+
-%}
|
|
65
|
+
crossorigin
|
|
66
|
+
{%-
|
|
67
|
+
endif
|
|
68
|
+
-%}
|
|
69
|
+
/>
|
|
70
|
+
</span>
|
|
71
|
+
{% endif %}
|
|
72
|
+
<span class="author-meta">
|
|
73
|
+
<span class="post-name">
|
|
74
|
+
<a target="_blank" href="/blog/"
|
|
75
|
+
>{{authorName}}</a
|
|
76
|
+
> </span
|
|
77
|
+
><br />
|
|
78
|
+
<span class="post-date"
|
|
79
|
+
>{{post.date | date_to_string }}</span
|
|
80
|
+
>
|
|
81
|
+
</span>
|
|
82
|
+
</div>
|
|
61
83
|
</div>
|
|
62
|
-
|
|
84
|
+
</div>
|
|
63
85
|
</div>
|
|
86
|
+
{% endfor %} {%- if site.monumetricId and page.url != '/' and
|
|
87
|
+
page.lang == "en" -%}
|
|
88
|
+
</div>
|
|
64
89
|
</div>
|
|
90
|
+
{%- endif -%}
|
|
91
|
+
</div>
|
|
65
92
|
</div>
|
|
66
|
-
</
|
|
93
|
+
</div>
|
|
94
|
+
</section>
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
|
|
92
92
|
<span class="author-meta">
|
|
93
93
|
<span class="post-name">
|
|
94
|
-
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
94
|
+
<a target="_blank" href="/blog/">{{authorName}}</a>
|
|
95
95
|
</span><br>
|
|
96
96
|
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
97
97
|
</span>
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
{% endif %}
|
|
172
172
|
<span class="author-meta">
|
|
173
173
|
<span class="post-name">
|
|
174
|
-
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
174
|
+
<a target="_blank" href="/blog/">{{authorName}}</a>
|
|
175
175
|
</span><br>
|
|
176
176
|
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
177
177
|
</span>
|
data/_layouts/aboutUs.html
CHANGED
|
@@ -1,99 +1,175 @@
|
|
|
1
|
-
{% assign file = page.fileName %}
|
|
2
|
-
{% assign
|
|
3
|
-
{% assign folder = page.folderName %}
|
|
4
|
-
{% assign aboutData = site.data[folder][lang][file] %}
|
|
1
|
+
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
|
|
2
|
+
= page.folderName %} {% assign aboutData = site.data[folder][lang][file] %}
|
|
5
3
|
|
|
6
4
|
<!DOCTYPE html>
|
|
7
5
|
<html lang="{{aboutData.htmlLangAtt}}">
|
|
8
|
-
{% include head/index.html %}
|
|
6
|
+
{% include head/index.html %}
|
|
9
7
|
|
|
10
|
-
<style>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
<style>
|
|
9
|
+
.highlight_style {
|
|
10
|
+
color: #007bff !important;
|
|
11
|
+
font-weight: 900;
|
|
12
|
+
text-decoration: underline;
|
|
13
|
+
}
|
|
16
14
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
</style>
|
|
15
|
+
.highlight_style:hover {
|
|
16
|
+
text-decoration: underline !important;
|
|
17
|
+
}
|
|
18
|
+
</style>
|
|
21
19
|
|
|
22
|
-
<body>
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
{{content}}
|
|
20
|
+
<body>
|
|
21
|
+
{% include header/index.html %} {%- include dropdown/langdropdown.html -%}
|
|
22
|
+
<div class="container py-4 about_layout">
|
|
23
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
24
|
+
<div class="row">
|
|
25
|
+
<div class="col-md-9 mx-auto">
|
|
26
|
+
{%- endif -%}
|
|
27
|
+
<h1 class="about-h1 py-2">About us</h1>
|
|
28
|
+
<h2 class="about-h2">Welcome to {{ page.companyName}}</h2>
|
|
29
|
+
<p class="about-para pt-4 text-left">
|
|
30
|
+
We are here to help you. Ping us your queries at care@{{
|
|
31
|
+
page.companyName}}.{{page.domain}}
|
|
32
|
+
</p>
|
|
33
|
+
<div>{{content}}</div>
|
|
34
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
36
35
|
</div>
|
|
37
|
-
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
38
36
|
</div>
|
|
37
|
+
{%- endif -%}
|
|
39
38
|
</div>
|
|
40
|
-
{%- endif -%}
|
|
41
|
-
</div>
|
|
42
39
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
{% unless authors contains post.author %}
|
|
48
|
-
{% assign authors = authors | push: post.author %}
|
|
49
|
-
{% endunless %}
|
|
50
|
-
{% endif %}
|
|
51
|
-
{% endfor %}
|
|
40
|
+
{% assign posts = site.posts | where_exp:"post","post.url != page.url" %} {%
|
|
41
|
+
assign authors = "" | split: "," %} {% for post in site.posts %} {% if
|
|
42
|
+
post.author %} {% unless authors contains post.author %} {% assign authors =
|
|
43
|
+
authors | push: post.author %} {% endunless %} {% endif %} {% endfor %}
|
|
52
44
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
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
|
-
|
|
45
|
+
<div class="container mt-4 mb-5">
|
|
46
|
+
<div class="row px-0">
|
|
47
|
+
<div class="col-md-4 my-4">
|
|
48
|
+
<img
|
|
49
|
+
class="feature-card-img"
|
|
50
|
+
src="/assets/images/lightbulb.svg"
|
|
51
|
+
loading="lazy"
|
|
52
|
+
height="48px"
|
|
53
|
+
width="48px"
|
|
54
|
+
alt="{{data.header}}"
|
|
55
|
+
{%-
|
|
56
|
+
if
|
|
57
|
+
site.crossorigin
|
|
58
|
+
-%}
|
|
59
|
+
crossorigin
|
|
60
|
+
{%-
|
|
61
|
+
endif
|
|
62
|
+
-%}
|
|
63
|
+
/>
|
|
64
|
+
<div class="feature-card-title">Features</div>
|
|
65
|
+
<div class="feature-card-desc">
|
|
66
|
+
Our website currently has
|
|
67
|
+
<a class="highlight_style" href="{{site.url}}/sitemap.xml"
|
|
68
|
+
>{{ site.pages | size }} features</a
|
|
69
|
+
>
|
|
70
|
+
</div>
|
|
71
|
+
</div>
|
|
72
|
+
{%- if site.internationalizationall -%}
|
|
73
|
+
<div class="col-md-4 my-4">
|
|
74
|
+
<img
|
|
75
|
+
class="feature-card-img"
|
|
76
|
+
src="/assets/images/lightbulb.svg"
|
|
77
|
+
loading="lazy"
|
|
78
|
+
height="48px"
|
|
79
|
+
width="48px"
|
|
80
|
+
alt="{{data.header}}"
|
|
81
|
+
{%-
|
|
82
|
+
if
|
|
83
|
+
site.crossorigin
|
|
84
|
+
-%}
|
|
85
|
+
crossorigin
|
|
86
|
+
{%-
|
|
87
|
+
endif
|
|
88
|
+
-%}
|
|
89
|
+
/>
|
|
90
|
+
<div class="feature-card-title">Languages Supported</div>
|
|
91
|
+
<div class="feature-card-desc">
|
|
92
|
+
Our website currently supports 22 languages.
|
|
93
|
+
</div>
|
|
94
|
+
</div>
|
|
95
|
+
{%- endif -%}
|
|
96
|
+
<div class="col-md-4 my-4">
|
|
97
|
+
<img
|
|
98
|
+
class="feature-card-img"
|
|
99
|
+
src="/assets/images/lightbulb.svg"
|
|
100
|
+
loading="lazy"
|
|
101
|
+
height="48px"
|
|
102
|
+
width="48px"
|
|
103
|
+
alt="{{data.header}}"
|
|
104
|
+
{%-
|
|
105
|
+
if
|
|
106
|
+
site.crossorigin
|
|
107
|
+
-%}
|
|
108
|
+
crossorigin
|
|
109
|
+
{%-
|
|
110
|
+
endif
|
|
111
|
+
-%}
|
|
112
|
+
/>
|
|
113
|
+
<div class="feature-card-title">Blog Posts</div>
|
|
114
|
+
<div class="feature-card-desc">
|
|
115
|
+
We currently have
|
|
116
|
+
<a class="highlight_style" href="/blog/"
|
|
117
|
+
>{{ site.posts | size }} blog posts</a
|
|
118
|
+
>
|
|
119
|
+
on our website.
|
|
120
|
+
</div>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="col-md-4 my-4">
|
|
123
|
+
<img
|
|
124
|
+
class="feature-card-img"
|
|
125
|
+
src="/assets/images/lightbulb.svg"
|
|
126
|
+
loading="lazy"
|
|
127
|
+
height="48px"
|
|
128
|
+
width="48px"
|
|
129
|
+
alt="{{data.header}}"
|
|
130
|
+
{%-
|
|
131
|
+
if
|
|
132
|
+
site.crossorigin
|
|
133
|
+
-%}
|
|
134
|
+
crossorigin
|
|
135
|
+
{%-
|
|
136
|
+
endif
|
|
137
|
+
-%}
|
|
138
|
+
/>
|
|
139
|
+
<div class="feature-card-title">Authors</div>
|
|
140
|
+
<div class="feature-card-desc">
|
|
141
|
+
We have
|
|
142
|
+
<a class="highlight_style" href="/authors">
|
|
143
|
+
{{ authors.size }} authors
|
|
144
|
+
</a>
|
|
145
|
+
on our website
|
|
146
|
+
</div>
|
|
147
|
+
</div>
|
|
148
|
+
<div class="col-md-4 my-4">
|
|
149
|
+
<img
|
|
150
|
+
class="feature-card-img"
|
|
151
|
+
src="/assets/images/lightbulb.svg"
|
|
152
|
+
loading="lazy"
|
|
153
|
+
height="48px"
|
|
154
|
+
width="48px"
|
|
155
|
+
alt="{{data.header}}"
|
|
156
|
+
{%-
|
|
157
|
+
if
|
|
158
|
+
site.crossorigin
|
|
159
|
+
-%}
|
|
160
|
+
crossorigin
|
|
161
|
+
{%-
|
|
162
|
+
endif
|
|
163
|
+
-%}
|
|
164
|
+
/>
|
|
165
|
+
<div class="feature-card-title">Total Visitors</div>
|
|
166
|
+
<div id="visits" class="feature-card-desc">
|
|
167
|
+
{{site.totalVisitors}}
|
|
168
|
+
</div>
|
|
169
|
+
</div>
|
|
91
170
|
</div>
|
|
92
171
|
</div>
|
|
93
|
-
</div>
|
|
94
|
-
|
|
95
172
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
</
|
|
99
|
-
</html>
|
|
173
|
+
{% include staticfooter.html %} {% include script.html %}
|
|
174
|
+
</body>
|
|
175
|
+
</html>
|
data/_layouts/allAuthors.html
CHANGED
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
href="/authors/{{authorName | downcase | replace: ' ' , '-' }}"
|
|
86
86
|
>{{authorName | capitalize }}</a
|
|
87
87
|
>
|
|
88
|
-
<a href="/blog" class="authors-posts-count"
|
|
88
|
+
<a href="/blog/" class="authors-posts-count"
|
|
89
89
|
>{{ site.posts | where: 'author', post.author | size }}
|
|
90
90
|
Posts</a
|
|
91
91
|
>
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
href="/authors/{{authorName | downcase | replace: ' ' , '-' }}"
|
|
113
113
|
>{{authorName | capitalize }}</a
|
|
114
114
|
>
|
|
115
|
-
<a href="/blog" class="authors-posts-count"
|
|
115
|
+
<a href="/blog/" class="authors-posts-count"
|
|
116
116
|
>{{ site.posts | where: 'author', post.author | size }}
|
|
117
117
|
Posts</a
|
|
118
118
|
>
|
data/_layouts/appscms-about.html
CHANGED
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
<div class="feature-card-title">Blog Posts</div>
|
|
102
102
|
<div class="feature-card-desc">
|
|
103
103
|
We currently have
|
|
104
|
-
<a class="highlight_style" href="/blog"
|
|
104
|
+
<a class="highlight_style" href="/blog/"
|
|
105
105
|
>{{ site.posts | size }} blog posts</a
|
|
106
106
|
>
|
|
107
107
|
on our website.
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
alt="{{post.title}}">
|
|
397
397
|
</a>
|
|
398
398
|
<div class="card-body">
|
|
399
|
-
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
399
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link" aria-label="{{post.url}}">
|
|
400
400
|
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
401
401
|
<p class="blog-desc">{{post.description}}</p>
|
|
402
402
|
</a>
|
|
@@ -404,7 +404,7 @@
|
|
|
404
404
|
<div class="card-footer">
|
|
405
405
|
<div class="wrapfooter">
|
|
406
406
|
{% if post.author %}
|
|
407
|
-
<a href="/authors/{{authorName | downcase | replace: ' ' , '-' }}" class="meta-footer-thumb">
|
|
407
|
+
<a href="/authors/{{authorName | downcase | replace: ' ' , '-' }}" class="meta-footer-thumb" aria-label="{{post.author}}">
|
|
408
408
|
<img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}">
|
|
409
409
|
</a>
|
|
410
410
|
{% endif %}
|