jumbo-jekyll-theme 3.0.46 → 3.0.47
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/_config.yml +1 -1
- data/_includes/post-sidebar.html +28 -10
- 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: bb2475ab10485d9e12f5225a5bb688950ce6422762531bf9355652fb29646af7
|
|
4
|
+
data.tar.gz: 7a6534a0605cc01a66ca23c028be9d8313ee3c140ef5b040cc130ed560af6600
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a4988bf65167e9b2d03f97514870a646b2ae58ec3039e99021b4c89eaf69e345c74be5337e66920f03794444f160b6c5a208bd61c59085c7089e461f4ac2601
|
|
7
|
+
data.tar.gz: 027d24897e968806fcbffa67caa571e1a48adc5007e98869fae8322e35d18f7ec1c4338863d74a11d0ea463f9effbdb589246060214464a922529a0cc7a4aec5
|
data/_config.yml
CHANGED
|
@@ -14,7 +14,7 @@ theme: jumbo-jekyll-theme
|
|
|
14
14
|
# Syntax highlighter
|
|
15
15
|
highlighter: rouge
|
|
16
16
|
# Blog images/thumbs dir
|
|
17
|
-
blog_images_dir: assets/images/blog/
|
|
17
|
+
blog_images_dir: assets/images/blog/thumbs/
|
|
18
18
|
# Markdown flavour used by Jekyll to parse markdown.
|
|
19
19
|
markdown: kramdown
|
|
20
20
|
# Default character encoding
|
data/_includes/post-sidebar.html
CHANGED
|
@@ -12,8 +12,20 @@
|
|
|
12
12
|
<div class="row featured_blog_post">
|
|
13
13
|
<div class="col-md-3 col-sm-3 col-xs-3 no-padding">
|
|
14
14
|
{% if post.image.thumb %}
|
|
15
|
-
{% capture image_path %}{{site.blog_images_dir}}{{post.image.thumb}}{% endcapture %}
|
|
16
|
-
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.thumb}}{% endcapture %}
|
|
15
|
+
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
16
|
+
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
17
|
+
{% responsive_image_block %}
|
|
18
|
+
template: _includes/thumb.html
|
|
19
|
+
path: {{ image_path }}
|
|
20
|
+
fullpath: {{ full_path }}
|
|
21
|
+
{% if post.title %}
|
|
22
|
+
title: {{ post.title }}
|
|
23
|
+
alt: {{ post.title }}
|
|
24
|
+
{% endif %}
|
|
25
|
+
{% endresponsive_image_block %}
|
|
26
|
+
{% elsif post.image.name %}
|
|
27
|
+
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
28
|
+
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
17
29
|
{% responsive_image_block %}
|
|
18
30
|
template: _includes/thumb.html
|
|
19
31
|
path: {{ image_path }}
|
|
@@ -23,9 +35,6 @@
|
|
|
23
35
|
alt: {{ post.title }}
|
|
24
36
|
{% endif %}
|
|
25
37
|
{% endresponsive_image_block %}
|
|
26
|
-
{% elsif post.image.path %}
|
|
27
|
-
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
28
|
-
data-src="{{post.image.path}}" alt="{{post.title}}" class="img-responsive lazyload"/>
|
|
29
38
|
{% else %}
|
|
30
39
|
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
31
40
|
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="img-responsive lazyload"/>
|
|
@@ -56,8 +65,20 @@
|
|
|
56
65
|
<div class="row featured_blog_post">
|
|
57
66
|
<div class="col-md-3 col-sm-3 col-xs-3 no-padding">
|
|
58
67
|
{% if post.image.thumb %}
|
|
59
|
-
{% capture image_path %}{{site.blog_images_dir}}{{post.image.thumb}}{% endcapture %}
|
|
60
|
-
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.thumb}}{% endcapture %}
|
|
68
|
+
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
69
|
+
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
70
|
+
{% responsive_image_block %}
|
|
71
|
+
template: _includes/thumb.html
|
|
72
|
+
path: {{ image_path }}
|
|
73
|
+
fullpath: {{ full_path }}
|
|
74
|
+
{% if post.title %}
|
|
75
|
+
title: {{ post.title }}
|
|
76
|
+
alt: {{ post.title }}
|
|
77
|
+
{% endif %}
|
|
78
|
+
{% endresponsive_image_block %}
|
|
79
|
+
{% elsif post.image.name %}
|
|
80
|
+
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
81
|
+
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
61
82
|
{% responsive_image_block %}
|
|
62
83
|
template: _includes/thumb.html
|
|
63
84
|
path: {{ image_path }}
|
|
@@ -67,9 +88,6 @@
|
|
|
67
88
|
alt: {{ post.title }}
|
|
68
89
|
{% endif %}
|
|
69
90
|
{% endresponsive_image_block %}
|
|
70
|
-
{% elsif post.image.path %}
|
|
71
|
-
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
72
|
-
data-src="{{post.image.path}}" alt="{{post.title}}" class="img-responsive lazyload"/>
|
|
73
91
|
{% else %}
|
|
74
92
|
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
75
93
|
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="img-responsive lazyload"/>
|