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
data/_layouts/blog-1.html
CHANGED
|
@@ -1,84 +1,116 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
|
-
{% include custom-head.html %}
|
|
3
|
+
{% include custom-head.html %}
|
|
4
4
|
|
|
5
|
-
<body>
|
|
5
|
+
<body>
|
|
6
6
|
{%- include header/blogHeader.html -%}
|
|
7
7
|
|
|
8
8
|
<section class="section_post mb-5">
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
</
|
|
23
|
-
|
|
24
|
-
<div class="main-content">
|
|
25
|
-
{{content}}
|
|
9
|
+
<div class="container">
|
|
10
|
+
<div class="row">
|
|
11
|
+
<div class="col-md-12 mx-auto">
|
|
12
|
+
<div class="row justify-content-center section-title-wrap">
|
|
13
|
+
<div class="col-lg-12">
|
|
14
|
+
<h1
|
|
15
|
+
style="font-weight: 900"
|
|
16
|
+
class="display-4 m-0 small_description"
|
|
17
|
+
>
|
|
18
|
+
{{ site.data.blog.blog.h1 }}
|
|
19
|
+
</h1>
|
|
20
|
+
<p class="lead mb-5 mt-1" style="font-size: 18px">
|
|
21
|
+
{{ site.data.blog.blog.description }}
|
|
22
|
+
</p>
|
|
23
|
+
</div>
|
|
26
24
|
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="main-content">{{content}}</div>
|
|
28
|
+
<div class="row">
|
|
29
|
+
<div class="col-md-12 mx-auto">
|
|
27
30
|
<div class="row">
|
|
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
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
31
|
+
{% for post in paginator.posts %}
|
|
32
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
33
|
+
<div class="blog1-card h-100">
|
|
34
|
+
<a href="{{ post.url }}">
|
|
35
|
+
<img
|
|
36
|
+
src="{{ post.image }}"
|
|
37
|
+
loading="lazy"
|
|
38
|
+
height="215px"
|
|
39
|
+
width="100%"
|
|
40
|
+
class="blog1-card-img-top"
|
|
41
|
+
alt="{{post.title}}"
|
|
42
|
+
{%-
|
|
43
|
+
if
|
|
44
|
+
site.crossorigin
|
|
45
|
+
-%}
|
|
46
|
+
crossorigin="anonymous"
|
|
47
|
+
{%-
|
|
48
|
+
endif
|
|
49
|
+
-%}
|
|
50
|
+
/>
|
|
51
|
+
</a>
|
|
52
|
+
<div class="blog1-card-body">
|
|
53
|
+
<a href="{{ post.url }}" class="anchor_link">
|
|
54
|
+
<h4 class="blog1-card-title">{{ post.title }}</h4>
|
|
55
|
+
<p class="blog-card-desc">{{post.description}}</p>
|
|
56
|
+
</a>
|
|
57
|
+
{%- include authors/authors.html -%}
|
|
58
|
+
<div class="card-footer pl-0 mt-3">
|
|
59
|
+
<div class="wrapfooter blog1-wrapfooter mb-0">
|
|
60
|
+
{% if post.author %}
|
|
61
|
+
<span class="meta-footer-thumb">
|
|
62
|
+
<img
|
|
63
|
+
class="author-thumb"
|
|
64
|
+
loading="lazy"
|
|
65
|
+
src="{{ image }}"
|
|
66
|
+
alt="{{ authorName }}"
|
|
67
|
+
{%-
|
|
68
|
+
if
|
|
69
|
+
site.crossorigin
|
|
70
|
+
-%}
|
|
71
|
+
crossorigin="anonymous"
|
|
72
|
+
{%-
|
|
73
|
+
endif
|
|
74
|
+
-%}
|
|
75
|
+
/>
|
|
76
|
+
</span>
|
|
77
|
+
{% endif %}
|
|
68
78
|
|
|
79
|
+
<span class="author-meta">
|
|
80
|
+
<span class="post-name">
|
|
81
|
+
<a target="_blank" href="/blog/"
|
|
82
|
+
>{{authorName}}</a
|
|
83
|
+
> </span
|
|
84
|
+
><br />
|
|
85
|
+
<span class="post-date"
|
|
86
|
+
>{{post.date | date_to_string }}</span
|
|
87
|
+
>
|
|
88
|
+
</span>
|
|
89
|
+
</div>
|
|
69
90
|
</div>
|
|
91
|
+
</div>
|
|
70
92
|
</div>
|
|
93
|
+
</div>
|
|
94
|
+
{% endfor %}
|
|
71
95
|
</div>
|
|
72
|
-
|
|
96
|
+
</div>
|
|
73
97
|
</div>
|
|
98
|
+
{%- include paginationBlogPage.html -%}
|
|
99
|
+
</div>
|
|
74
100
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
101
|
+
<!-- {% include section/count.html %} -->
|
|
78
102
|
</section>
|
|
79
103
|
{% include script.html %}
|
|
80
|
-
<script
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
104
|
+
<script
|
|
105
|
+
src="{{ '/assets/js/TopScroll.js' | relative_url }}"
|
|
106
|
+
{%-
|
|
107
|
+
if
|
|
108
|
+
site.crossorigin
|
|
109
|
+
-%}
|
|
110
|
+
crossorigin="anonymous"
|
|
111
|
+
{%-
|
|
112
|
+
endif
|
|
113
|
+
-%}
|
|
114
|
+
></script>
|
|
115
|
+
</body>
|
|
116
|
+
</html>
|
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: 4.5.
|
|
4
|
+
version: 4.5.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-05-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|