jumbo-jekyll-theme 3.2.3.2 → 3.2.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/display-blog-posts.html +12 -0
- 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: 5ba3cc23e5116b69047eef5e5cfcc219437d39cc73a7d93b818aa78e563c5764
|
4
|
+
data.tar.gz: 393ea8302e6072189ceb388bf53a0221515e663316fc63a74fbcaa5355326b0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87ef9790b10814098b609fe6da32a3f96e500c5537393e2ea2db5671607226e69efab60e64330029448edf602e025ae163ce55b5f9d2fa8db052669309776c13
|
7
|
+
data.tar.gz: f23a98eea457f08060af312824569cf1d5fedfd4faa9c3a01530d37d4c093d569f842fdb39fa5ba5df36684da0d5af29dc83d9ce8765d326dc38b8bff087d048
|
@@ -39,6 +39,18 @@
|
|
39
39
|
alt: {{ post.title | slugify: "ascii"}}
|
40
40
|
{% endif %}
|
41
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 %}
|
42
54
|
{% else %}
|
43
55
|
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
44
56
|
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|