jumbo-jekyll-theme 1.4.2.17 → 1.4.2.18
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 +19 -14
- data/_includes/post-sidebar.html +2 -0
- data/_layouts/post-index.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/core/blog.scss +9 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc05f808ea4f6908bdd76b1fa993fd4d66924a01
|
|
4
|
+
data.tar.gz: 977dda2e8ff1bd033949fe0dc56bc7a377e8b8b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7947bbc58277cb0912d70ee622ec415fbb687cc64653b523604d236b2e8c94c2a1d3a69f18ec7f5f644b13971f5b0699f4a272928c6830aa9dbece474fc5a26c
|
|
7
|
+
data.tar.gz: c0249d2f35b37c4c71ae2c937fa37a414b7872053d8d1452a69ee9162ac81f55baf76350a2710d922a43f87d5fa755daef62603e2e27cd07a9412fff2cb1362e
|
|
@@ -3,22 +3,27 @@
|
|
|
3
3
|
{% if site.data.settings.blog.show_thumbnails %}
|
|
4
4
|
<div class="col-md-4 col-sm-4 col-xs-4">
|
|
5
5
|
<a href="{{post.url}}">
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
{% if post.image.name %}
|
|
7
|
+
<picture>
|
|
8
|
+
<source srcset="/{{site.mini_magick.thumbnails.destination}}{{post.image.name}}"
|
|
9
|
+
media="(max-width: 999px)" />
|
|
10
|
+
<source srcset="/{{site.mini_magick.medium.destination}}{{post.image.name}}"
|
|
11
|
+
media="(min-width: 1000px)" />
|
|
12
|
+
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
13
|
+
data-src="/{{site.mini_magick.thumbnail.destination}}{{post.image.name}}"
|
|
14
|
+
class="lazyload img-responsive center-block"/>
|
|
15
|
+
</picture>
|
|
14
16
|
{% else %}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
<picture>
|
|
18
|
+
<source srcset="/{{site.mini_magick.thumbnails.destination}}{{site.data.settings.placeholder}}"
|
|
19
|
+
media="(max-width: 999px)" />
|
|
20
|
+
<source srcset="/{{site.mini_magick.medium.destination}}{{site.data.settings.placeholder}}"
|
|
21
|
+
media="(min-width: 1000px)" />
|
|
22
|
+
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
23
|
+
data-src="/{{site.mini_magick.thumbnail.destination}}{{site.data.settings.placeholder}}"
|
|
24
|
+
class="lazyload img-responsive center-block"/>
|
|
25
|
+
</picture>
|
|
20
26
|
{% endif %}
|
|
21
|
-
alt="{{post.title}}" />
|
|
22
27
|
</a>
|
|
23
28
|
</div>
|
|
24
29
|
<div class="col-md-8 col-sm-8 col-xs-8 post_title no-padding">
|
data/_includes/post-sidebar.html
CHANGED
data/_layouts/post-index.html
CHANGED
data/_layouts/post.html
CHANGED
data/_sass/core/blog.scss
CHANGED
|
@@ -368,7 +368,14 @@ img.large-inline.right {
|
|
|
368
368
|
|
|
369
369
|
}
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
@media(max-width: $screen-md-min - 1){
|
|
372
|
+
/* Blog Sidebar */
|
|
373
|
+
.col-md-3.blog-sidebar {
|
|
374
|
+
margin-top: 15px;
|
|
375
|
+
padding-right: 0px;
|
|
376
|
+
padding-left: 0px;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
372
379
|
|
|
373
380
|
// Blog Side Panel Styles
|
|
374
381
|
.featured_post_post > .row {
|
|
@@ -417,3 +424,4 @@ img.large-inline.right {
|
|
|
417
424
|
color:black;
|
|
418
425
|
}
|
|
419
426
|
|
|
427
|
+
|