jumbo-jekyll-theme 3.2.3.5 → 3.2.3.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/_includes/display-blog-posts.html +91 -86
- 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: 35629fc377837801af53023b14660b19fac3af10f79d6c845364f5f2b0990043
|
4
|
+
data.tar.gz: 719832cafd4c846030e73347b1394e59e414ee32d4419c3968a9f5452fa5a664
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9178c90ad86ce3f37425520380e53d3ba668dafd15ba80483c14bea3128f885cb51d7b6ab92734f19b890f43041c83ea79eb5c2466785f96dbbea5e4d12aeedc
|
7
|
+
data.tar.gz: bc460b612c2bb478bd848b8e36e90a3c0c457cd81963effd9d82e2efa36e85cac2622b5b0400217d8a390d9a642f4bb05cb42edb14b24d92ace6fc1e502e33d4
|
@@ -1,88 +1,93 @@
|
|
1
|
-
{%
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
<
|
6
|
-
{% if post.image.thumb %}
|
7
|
-
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
8
|
-
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
9
|
-
{% responsive_image_block %}
|
10
|
-
template: _includes/thumb.html
|
11
|
-
path: {{ image_path }}
|
12
|
-
fullpath: {{ full_path }}
|
13
|
-
{% if post.title %}
|
14
|
-
title: {{ post.title | slugify: "ascii"}}
|
15
|
-
alt: {{ post.title | slugify: "ascii"}}
|
16
|
-
{% endif %}
|
17
|
-
{% endresponsive_image_block %}
|
18
|
-
{% elsif post.image.name %}
|
19
|
-
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
20
|
-
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
21
|
-
{% responsive_image_block %}
|
22
|
-
template: _includes/thumb.html
|
23
|
-
path: {{ image_path }}
|
24
|
-
fullpath: {{ full_path }}
|
25
|
-
{% if post.title %}
|
26
|
-
title: {{ post.title | slugify: "ascii"}}
|
27
|
-
alt: {{ post.title | slugify: "ascii"}}
|
28
|
-
{% endif %}
|
29
|
-
{% endresponsive_image_block %}
|
30
|
-
{% elsif post.image.path %}
|
31
|
-
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
32
|
-
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
33
|
-
{% responsive_image_block %}
|
34
|
-
template: _includes/thumb.html
|
35
|
-
path: {{ image_path }}
|
36
|
-
fullpath: {{ full_path }}
|
37
|
-
{% if post.title %}
|
38
|
-
title: {{ post.title | slugify: "ascii"}}
|
39
|
-
alt: {{ post.title | slugify: "ascii"}}
|
40
|
-
{% endif %}
|
41
|
-
{% endresponsive_image_block %}
|
42
|
-
{% elsif post.image %}
|
43
|
-
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
44
|
-
{% capture full_path %}{{post.image}}{% endcapture %}
|
45
|
-
{% responsive_image_block %}
|
46
|
-
template: _includes/thumb.html
|
47
|
-
path: {{ image_path }}
|
48
|
-
fullpath: {{ full_path }}
|
49
|
-
{% if post.title %}
|
50
|
-
title: {{ post.title | slugify: "ascii"}}
|
51
|
-
alt: {{ post.title | slugify: "ascii"}}
|
52
|
-
{% endif %}
|
53
|
-
{% endresponsive_image_block %}
|
54
|
-
{% else %}
|
55
|
-
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
56
|
-
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
57
|
-
{% endif %}
|
58
|
-
</a>
|
59
|
-
</div>
|
60
|
-
<div class="col-md-8 col-sm-8 col-xs-8 post_title no-padding">
|
61
|
-
<a href="{{post.url}}"><h3>{{ post.title}}</h3></a>
|
62
|
-
<em>{{ post.date | date: "%A, %B %-d, %Y"}}</em><br />
|
63
|
-
<p class="post_excerpt">
|
64
|
-
{{ post.content | strip_html | truncatewords:30 }}
|
65
|
-
</p>
|
66
|
-
<p>
|
1
|
+
{% if paginator.total_posts > 0 %}
|
2
|
+
{% for post in paginator.posts %}
|
3
|
+
<div class="row blog_post">
|
4
|
+
{% if site.data.settings.blog.show_thumbnails %}
|
5
|
+
<div class="col-md-4 col-sm-4 col-xs-4">
|
67
6
|
<a href="{{post.url}}">
|
68
|
-
|
7
|
+
{% if post.image.thumb %}
|
8
|
+
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
9
|
+
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
10
|
+
{% responsive_image_block %}
|
11
|
+
template: _includes/thumb.html
|
12
|
+
path: {{ image_path }}
|
13
|
+
fullpath: {{ full_path }}
|
14
|
+
{% if post.title %}
|
15
|
+
title: {{ post.title | slugify: "ascii"}}
|
16
|
+
alt: {{ post.title | slugify: "ascii"}}
|
17
|
+
{% endif %}
|
18
|
+
{% endresponsive_image_block %}
|
19
|
+
{% elsif post.image.name %}
|
20
|
+
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
21
|
+
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
22
|
+
{% responsive_image_block %}
|
23
|
+
template: _includes/thumb.html
|
24
|
+
path: {{ image_path }}
|
25
|
+
fullpath: {{ full_path }}
|
26
|
+
{% if post.title %}
|
27
|
+
title: {{ post.title | slugify: "ascii"}}
|
28
|
+
alt: {{ post.title | slugify: "ascii"}}
|
29
|
+
{% endif %}
|
30
|
+
{% endresponsive_image_block %}
|
31
|
+
{% elsif post.image.path %}
|
32
|
+
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
33
|
+
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
34
|
+
{% responsive_image_block %}
|
35
|
+
template: _includes/thumb.html
|
36
|
+
path: {{ image_path }}
|
37
|
+
fullpath: {{ full_path }}
|
38
|
+
{% if post.title %}
|
39
|
+
title: {{ post.title | slugify: "ascii"}}
|
40
|
+
alt: {{ post.title | slugify: "ascii"}}
|
41
|
+
{% endif %}
|
42
|
+
{% endresponsive_image_block %}
|
43
|
+
{% elsif post.image %}
|
44
|
+
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
45
|
+
{% capture full_path %}{{post.image}}{% endcapture %}
|
46
|
+
{% responsive_image_block %}
|
47
|
+
template: _includes/thumb.html
|
48
|
+
path: {{ image_path }}
|
49
|
+
fullpath: {{ full_path }}
|
50
|
+
{% if post.title %}
|
51
|
+
title: {{ post.title | slugify: "ascii"}}
|
52
|
+
alt: {{ post.title | slugify: "ascii"}}
|
53
|
+
{% endif %}
|
54
|
+
{% endresponsive_image_block %}
|
55
|
+
{% else %}
|
56
|
+
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
57
|
+
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
58
|
+
{% endif %}
|
69
59
|
</a>
|
70
|
-
</
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
60
|
+
</div>
|
61
|
+
<div class="col-md-8 col-sm-8 col-xs-8 post_title no-padding">
|
62
|
+
<a href="{{post.url}}"><h3>{{ post.title}}</h3></a>
|
63
|
+
<em>{{ post.date | date: "%A, %B %-d, %Y"}}</em><br />
|
64
|
+
<p class="post_excerpt">
|
65
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
66
|
+
</p>
|
67
|
+
<p>
|
68
|
+
<a href="{{post.url}}">
|
69
|
+
<button class="btn blog-read-more-btn">Read More</button>
|
70
|
+
</a>
|
71
|
+
</p>
|
72
|
+
</div>
|
73
|
+
{% else %}
|
74
|
+
<div class="col-xs-12 post_title no-padding">
|
75
|
+
<a href="{{post.url}}"><h3>{{ post.title}}</h3></a>
|
76
|
+
<em>{{ post.date | date: "%A, %B %-d, %Y"}}</em><br />
|
77
|
+
<p class="post_excerpt">
|
78
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
79
|
+
</p>
|
80
|
+
<p>
|
81
|
+
<a href="{{post.url}}">
|
82
|
+
<button class="btn blog-read-more-btn">Read More</button>
|
83
|
+
</a>
|
84
|
+
</p>
|
85
|
+
</div>
|
86
|
+
{% endif %}
|
87
|
+
</div>
|
88
|
+
{% endfor %}
|
89
|
+
{% else %}
|
90
|
+
<p>
|
91
|
+
No posts of this category were found!
|
92
|
+
</p>
|
93
|
+
{% endif %}
|