appscms-tools-theme 1.9.3 → 1.9.4
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/customblog/recentposts.html +49 -42
- data/_includes/section/recent_posts.html +49 -42
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 235c221625077c89b49d5326b14e847facb7bf8b0f89f1c3a818f089f51dc0c0
|
|
4
|
+
data.tar.gz: 5adb63da94117f89c503b82d793e9726c62c6b3c571c6bc063f106ab4850e987
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54b170677a80d51a032bc70711c2a9a6273f755c370d7402e00c57d2b43699f68daec75196edc1fc502d4935887ec2ba7f171547f80a0ea9736aa056f7d1a2bf
|
|
7
|
+
data.tar.gz: f678f882f2321ffde01d14d993946d9126ebf7a3117729ccaa3a9a2c58a9483b76fcf074ebec5e53a83d6cb74aa4a84c68423ee5c8aef8bb090f3d045d7e645b
|
|
@@ -3,62 +3,69 @@
|
|
|
3
3
|
{% assign blogData= site.data.blog.blog %}
|
|
4
4
|
<div class="relatedPosts">
|
|
5
5
|
{%- if blogData.size>0 -%}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<div class="
|
|
6
|
+
{%- if site.monumetricId -%}
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="col-md-9 mx-auto">
|
|
9
|
+
{%- endif -%}
|
|
10
|
+
<h2 class="related_post_heading">Recent Posts</h2>
|
|
9
11
|
{%- if site.monumetricId -%}
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
{%- endif -%}
|
|
15
|
+
{%- endif -%}
|
|
16
|
+
<div class="row">
|
|
17
|
+
{%- if site.monumetricId -%}
|
|
10
18
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
19
|
+
<div class="col-md-9 mx-auto">
|
|
20
|
+
<div class="row">
|
|
21
|
+
{%- endif -%}
|
|
22
|
+
{% for post in blogData limit: 6%}
|
|
23
|
+
{%- include /authors/authors.html -%}
|
|
24
|
+
<div class=" {%- if site.monumetricId -%}
|
|
17
25
|
col-md-6 mb-4 card-group
|
|
18
26
|
{%- else -%}
|
|
19
27
|
col-lg-4 col-md-6 mb-4 card-group
|
|
20
28
|
{%- endif -%}
|
|
21
29
|
">
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
30
|
+
<div class="card h-100">
|
|
31
|
+
<a href="{{ post.url }}">
|
|
32
|
+
<img src="{{ post.image }}" class="card-img-top" height="215px" width="100%"
|
|
33
|
+
loading="lazy" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
|
|
34
|
+
endif -%}>
|
|
35
|
+
</a>
|
|
36
|
+
<div class="card-body">
|
|
37
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
38
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
27
39
|
</a>
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
</span>
|
|
42
|
-
{
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
</span><br>
|
|
47
|
-
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
48
|
-
</span>
|
|
49
|
-
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
50
|
-
title="Read Story">Read More</a></span>
|
|
51
|
-
</div>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="card-footer bg-white">
|
|
42
|
+
<div class="wrapfooter">
|
|
43
|
+
{% if post.author %}
|
|
44
|
+
<span class="meta-footer-thumb">
|
|
45
|
+
<img class="author-thumb" loading="lazy" src="{{image}}"
|
|
46
|
+
alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin {%- endif
|
|
47
|
+
-%}>
|
|
48
|
+
</span>
|
|
49
|
+
{% endif %}
|
|
50
|
+
<span class="author-meta">
|
|
51
|
+
<span class="post-name">
|
|
52
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
53
|
+
</span><br>
|
|
54
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
55
|
+
</span>
|
|
56
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
57
|
+
title="Read Story">Read More</a></span>
|
|
52
58
|
</div>
|
|
53
59
|
</div>
|
|
54
60
|
</div>
|
|
55
|
-
{% endfor %}
|
|
56
61
|
</div>
|
|
57
|
-
{
|
|
58
|
-
|
|
62
|
+
{% endfor %}
|
|
59
63
|
</div>
|
|
64
|
+
{%- if site.monumetricId -%}
|
|
65
|
+
|
|
60
66
|
</div>
|
|
61
|
-
|
|
67
|
+
</div>
|
|
68
|
+
{%- endif -%}
|
|
62
69
|
</div>
|
|
63
70
|
</div>
|
|
64
71
|
</section>
|
|
@@ -2,56 +2,63 @@
|
|
|
2
2
|
<div class="container">
|
|
3
3
|
<div class="relatedPosts">
|
|
4
4
|
{%- if site.posts.size>0 -%}
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
<div class="
|
|
5
|
+
{%- if site.monumetricId -%}
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="col-md-9 mx-auto">
|
|
8
|
+
{%- endif -%}
|
|
9
|
+
<h2 class="related_post_heading">Recent Posts</h2>
|
|
8
10
|
{%- if site.monumetricId -%}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
{%- endif -%}
|
|
14
|
+
{%- endif -%}
|
|
15
|
+
<div class="row">
|
|
16
|
+
{%- if site.monumetricId -%}
|
|
17
|
+
<div class="col-md-9 mx-auto">
|
|
18
|
+
<div class="row">
|
|
19
|
+
{%- endif -%}
|
|
20
|
+
{% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
|
|
21
|
+
{% for post in posts limit: 6%}
|
|
22
|
+
{%- 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 src="{{ post.image }}" class="card-img-top" height="215px" width="100%"
|
|
27
|
+
loading="lazy" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
|
|
28
|
+
endif -%}>
|
|
29
|
+
</a>
|
|
30
|
+
<div class="card-body">
|
|
31
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
32
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
21
33
|
</a>
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
</span>
|
|
36
|
-
{
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
</span><br>
|
|
41
|
-
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
42
|
-
</span>
|
|
43
|
-
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
44
|
-
title="Read Story">Read More</a></span>
|
|
45
|
-
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="card-footer bg-white">
|
|
36
|
+
<div class="wrapfooter">
|
|
37
|
+
{% if post.author %}
|
|
38
|
+
<span class="meta-footer-thumb">
|
|
39
|
+
<img class="author-thumb" loading="lazy" src="{{image}}"
|
|
40
|
+
alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin {%- endif
|
|
41
|
+
-%}>
|
|
42
|
+
</span>
|
|
43
|
+
{% endif %}
|
|
44
|
+
<span class="author-meta">
|
|
45
|
+
<span class="post-name">
|
|
46
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
47
|
+
</span><br>
|
|
48
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
49
|
+
</span>
|
|
50
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
51
|
+
title="Read Story">Read More</a></span>
|
|
46
52
|
</div>
|
|
47
53
|
</div>
|
|
48
54
|
</div>
|
|
49
|
-
{% endfor %}
|
|
50
|
-
{%- if site.monumetricId -%}
|
|
51
55
|
</div>
|
|
56
|
+
{% endfor %}
|
|
57
|
+
{%- if site.monumetricId -%}
|
|
52
58
|
</div>
|
|
53
|
-
{%- endif -%}
|
|
54
59
|
</div>
|
|
60
|
+
{%- endif -%}
|
|
61
|
+
</div>
|
|
55
62
|
</div>
|
|
56
63
|
</div>
|
|
57
64
|
</section>
|