jumbo-jekyll-theme 4.3.5 → 4.3.6
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 +2 -2
- data/_sass/core/blog.scss +3 -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: 6d34867e5d596761ad92e97fdaa3de75555ab3481a1535f6ce145afc18cf8fa5
|
4
|
+
data.tar.gz: ec757455b2dea8499d77f0f5639712d854e3b28eae787077b04c269aa94a5b73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 201a41af60a7596c164e15f947ff69f12bc6e475b0c8070d0b88e9e2709f394045704b26ea65d99c4dd88e69032146353669c7100e5a3f4c740c1b9a8d3c5ec8
|
7
|
+
data.tar.gz: 8281f7605724b0b0d059e8245e0d0f1a6bb01ed7d925f8e32caeea5b98f8bdaca6eaceafbea346605d06cc9f68b238d1d722ab4ad80cb74bfeb0f114ecc4bbc6
|
@@ -85,10 +85,9 @@
|
|
85
85
|
<div class="col-sm-4 col-xs-12 blog-post-item-col no-padding">
|
86
86
|
<div class="blog-post-item">
|
87
87
|
<a href="{{post.url}}">
|
88
|
-
<div class="blog-featured-image">
|
88
|
+
<div class="blog-featured-image {% if post.image == site.data.settings.social_share_image %}using-placeholder{% endif %}">
|
89
89
|
|
90
90
|
{% assign image_path = "" %}
|
91
|
-
|
92
91
|
{% if post.image.thumb %}
|
93
92
|
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
94
93
|
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
@@ -101,6 +100,7 @@
|
|
101
100
|
{% elsif post.image == site.data.settings.social_share_image %}
|
102
101
|
{% capture image_path %}{{site.data.settings.placeholder | remove_first: "/" }}{% endcapture %}
|
103
102
|
{% capture full_path %}{{site.data.settings.placeholder}}{% endcapture %}
|
103
|
+
{% assign using_placeholder = "true" %}
|
104
104
|
{% elsif post.image %}
|
105
105
|
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
106
106
|
{% capture full_path %}{{post.image}}{% endcapture %}
|
data/_sass/core/blog.scss
CHANGED