appscms-tools-theme 4.0.2 → 4.0.3
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/appscms/extras/appscms-postbox.html +65 -0
- data/_layouts/appscms-categories.html +26 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 51cd44ca950fcb972c69234e6c90157a1655819503574f0ea0a1f15d98eff952
|
|
4
|
+
data.tar.gz: 8ca7f3b78799d7f9933a71d142904589d9506dd07b92d3b617b371795a0cd0e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9cf2332277d7e1bc01ece84d74a9484932de053f756a018a5e2614a9e5d8e495c10a8052dbac0240bb434c9ac3ada0930ee869027aee014ea6fca66e1825114b
|
|
7
|
+
data.tar.gz: 37cf2b4a1e0b8e54518247e87def54d68f7936e81374bdf44c390c616a77d0956bb3c7d961efd67147220e64813ac68eea6fedcfd4baea3e9874fa104f916038
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{%- include /authors/authors.html -%}
|
|
2
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
3
|
+
<div class="card h-100 appscms-blog-cards">
|
|
4
|
+
<a href="{{ post.url }}">
|
|
5
|
+
<img
|
|
6
|
+
src="{{ post.image }}"
|
|
7
|
+
class="card-img-top"
|
|
8
|
+
height="208px"
|
|
9
|
+
width="100%"
|
|
10
|
+
loading="lazy"
|
|
11
|
+
alt="{{post.title}}"
|
|
12
|
+
{%-
|
|
13
|
+
if
|
|
14
|
+
site.crossorigin
|
|
15
|
+
-%}
|
|
16
|
+
crossorigin
|
|
17
|
+
{%-
|
|
18
|
+
endif
|
|
19
|
+
-%}
|
|
20
|
+
/>
|
|
21
|
+
</a>
|
|
22
|
+
<div class="card-body">
|
|
23
|
+
<a
|
|
24
|
+
class="text-decoration-none text-dark"
|
|
25
|
+
href="{{ post.url }}"
|
|
26
|
+
class="anchor_link"
|
|
27
|
+
>
|
|
28
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
29
|
+
</a>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="card-footer bg-white">
|
|
32
|
+
<div class="wrapfooter">
|
|
33
|
+
{% if post.author %}
|
|
34
|
+
<span class="meta-footer-thumb">
|
|
35
|
+
<img
|
|
36
|
+
class="author-thumb"
|
|
37
|
+
loading="lazy"
|
|
38
|
+
src="{{image}}"
|
|
39
|
+
alt="{{ authorName }}"
|
|
40
|
+
{%-
|
|
41
|
+
if
|
|
42
|
+
site.crossorigin
|
|
43
|
+
-%}
|
|
44
|
+
crossorigin
|
|
45
|
+
{%-
|
|
46
|
+
endif
|
|
47
|
+
-%}
|
|
48
|
+
/>
|
|
49
|
+
</span>
|
|
50
|
+
{% endif %}
|
|
51
|
+
<span class="author-meta">
|
|
52
|
+
<span class="post-name">
|
|
53
|
+
<a target="_blank" href="/blog">{{authorName}}</a> </span
|
|
54
|
+
><br />
|
|
55
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
56
|
+
</span>
|
|
57
|
+
<span class="post-read-more"
|
|
58
|
+
><a class="text-dark" href="{{ post.url }}" title="Read Story"
|
|
59
|
+
>Read More</a
|
|
60
|
+
></span
|
|
61
|
+
>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: appscms-blog
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<div class="container">
|
|
6
|
+
<div class="row listrecent appscms-blogs">
|
|
7
|
+
{%- if site.monumetricId -%}
|
|
8
|
+
<div class="col-md-9 mx-auto">
|
|
9
|
+
<div class="row">
|
|
10
|
+
{%- endif -%} {% for category in site.categories %}
|
|
11
|
+
<div class="section-title col-md-12 mt-4">
|
|
12
|
+
<h2 id="{{ category[0] | replace: ' ', '-' }}">
|
|
13
|
+
Category
|
|
14
|
+
<span class="text-capitalize">{{ category[0] }}</span>
|
|
15
|
+
</h2>
|
|
16
|
+
</div>
|
|
17
|
+
{% assign pages_list = category[1] %} {% for post in pages_list %} {% if
|
|
18
|
+
post.title != null %} {% if group == null or group == post.group %} {%
|
|
19
|
+
include appscms/extras/appscms-postbox.html %} {% endif %} {% endif %}
|
|
20
|
+
{% endfor %} {% assign pages_list = nil %} {% assign group = nil %} {%
|
|
21
|
+
endfor %} {%- if site.monumetricId -%}
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
{%- endif -%}
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
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.0.
|
|
4
|
+
version: 4.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -114,6 +114,7 @@ files:
|
|
|
114
114
|
- _includes/appscms/customblog/recentposts.html
|
|
115
115
|
- _includes/appscms/customblog/relatedBlogs.html
|
|
116
116
|
- _includes/appscms/customblog/relatedposts.html
|
|
117
|
+
- _includes/appscms/extras/appscms-postbox.html
|
|
117
118
|
- _includes/appscms/extras/ratings.html
|
|
118
119
|
- _includes/appscms/extras/recent-posts.html
|
|
119
120
|
- _includes/appscms/extras/traffic-count.html
|
|
@@ -188,6 +189,7 @@ files:
|
|
|
188
189
|
- _layouts/appscms-authors.html
|
|
189
190
|
- _layouts/appscms-blog.html
|
|
190
191
|
- _layouts/appscms-calculator.html
|
|
192
|
+
- _layouts/appscms-categories.html
|
|
191
193
|
- _layouts/appscms-contact.html
|
|
192
194
|
- _layouts/appscms-disclaimer.html
|
|
193
195
|
- _layouts/appscms-download.html
|