jumbo-jekyll-theme 3.2.3.5 → 3.2.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd0cf5a3f9eb607e7af53bfd38d66e966a8a8ea0c1840dbda44dda0546df8256
4
- data.tar.gz: e61c14b9beedcebe503a7eafdc7d06384a2b85e234c55beab37c6715ccb6999f
3
+ metadata.gz: 35629fc377837801af53023b14660b19fac3af10f79d6c845364f5f2b0990043
4
+ data.tar.gz: 719832cafd4c846030e73347b1394e59e414ee32d4419c3968a9f5452fa5a664
5
5
  SHA512:
6
- metadata.gz: dea95c8289a40cd43ae5e64c5d98434767493fee3f0a4e010bb2c07dfcba4aeb39f10e8e223e39494592e61dd69a535cb8242443f403d4b22d9b8ab0da5952c6
7
- data.tar.gz: 6498adcebfb858a3809f230dddf255a66cf705d85d31e196229b0f0853785dd0205a2a3cea6b346981b53092a80e0245bf1fb8e00c6ab21f42315d106466a28a
6
+ metadata.gz: 9178c90ad86ce3f37425520380e53d3ba668dafd15ba80483c14bea3128f885cb51d7b6ab92734f19b890f43041c83ea79eb5c2466785f96dbbea5e4d12aeedc
7
+ data.tar.gz: bc460b612c2bb478bd848b8e36e90a3c0c457cd81963effd9d82e2efa36e85cac2622b5b0400217d8a390d9a642f4bb05cb42edb14b24d92ace6fc1e502e33d4
@@ -1,88 +1,93 @@
1
- {% for post in paginator.posts %}
2
- <div class="row blog_post">
3
- {% if site.data.settings.blog.show_thumbnails %}
4
- <div class="col-md-4 col-sm-4 col-xs-4">
5
- <a href="{{post.url}}">
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
- <button class="btn blog-read-more-btn">Read More</button>
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
- </p>
71
- </div>
72
- {% else %}
73
- <div class="col-xs-12 post_title no-padding">
74
- <a href="{{post.url}}"><h3>{{ post.title}}</h3></a>
75
- <em>{{ post.date | date: "%A, %B %-d, %Y"}}</em><br />
76
- <p class="post_excerpt">
77
- {{ post.content | strip_html | truncatewords:30 }}
78
- </p>
79
- <p>
80
- <a href="{{post.url}}">
81
- <button class="btn blog-read-more-btn">Read More</button>
82
- </a>
83
- </p>
84
- </div>
85
- {% endif %}
86
- </div>
87
- {% endfor %}
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 %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.3.5
4
+ version: 3.2.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby