jumbo-jekyll-theme 3.0.51 → 3.0.52
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/display-blog-posts.html +16 -4
- data/_includes/post-sidebar.html +32 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 117f915a54625d87480ae771164422272b792c57eaa2f96059e7c5a9498ad2fc
|
|
4
|
+
data.tar.gz: 6ccfce4617421061659a907ca4a1a0b1b23f50ebb912e1715ce2be4e62024833
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3d0a655c278000ec5413b7fc8f0c983d450e2a5ebf6846cd2ae2373382d4125b74225c1e753f2b45442d7b09c297f3d97c2670953b36026fa2f8d256a7421e8
|
|
7
|
+
data.tar.gz: b04acb8b6be9e26030010dd4478db869731149c6059101fa70f0508e48eb23f5f484cc607fb158cbb0e1c0dedab925b9776770e62bac55f95dae8f2156b1c956
|
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/
|
|
17
|
+
blog_images_dir: assets/images/content/
|
|
18
18
|
# Markdown flavour used by Jekyll to parse markdown.
|
|
19
19
|
markdown: kramdown
|
|
20
20
|
# Default character encoding
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
path: {{ image_path }}
|
|
12
12
|
fullpath: {{ full_path }}
|
|
13
13
|
{% if post.title %}
|
|
14
|
-
title: {{ post.title | slugify: "ascii}}
|
|
15
|
-
alt: {{ post.title | slugify: "ascii}}
|
|
14
|
+
title: {{ post.title | slugify: "ascii"}}
|
|
15
|
+
alt: {{ post.title | slugify: "ascii"}}
|
|
16
16
|
{% endif %}
|
|
17
17
|
{% endresponsive_image_block %}
|
|
18
18
|
{% elsif post.image.name %}
|
|
@@ -23,8 +23,20 @@
|
|
|
23
23
|
path: {{ image_path }}
|
|
24
24
|
fullpath: {{ full_path }}
|
|
25
25
|
{% if post.title %}
|
|
26
|
-
title: {{ post.title | slugify: "ascii}}
|
|
27
|
-
alt: {{ post.title | slugify: "ascii}}
|
|
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"}}
|
|
28
40
|
{% endif %}
|
|
29
41
|
{% endresponsive_image_block %}
|
|
30
42
|
{% else %}
|
data/_includes/post-sidebar.html
CHANGED
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
path: {{ image_path }}
|
|
19
19
|
fullpath: {{ full_path }}
|
|
20
20
|
{% if post.title %}
|
|
21
|
-
title: {{ post.title | slugify: "ascii}}
|
|
22
|
-
alt: {{ post.title | slugify: "ascii}}
|
|
21
|
+
title: {{ post.title | slugify: "ascii"}}
|
|
22
|
+
alt: {{ post.title | slugify: "ascii"}}
|
|
23
23
|
{% endif %}
|
|
24
24
|
{% endresponsive_image_block %}
|
|
25
25
|
{% elsif post.image.name %}
|
|
@@ -30,8 +30,20 @@
|
|
|
30
30
|
path: {{ image_path }}
|
|
31
31
|
fullpath: {{ full_path }}
|
|
32
32
|
{% if post.title %}
|
|
33
|
-
title: {{ post.title | slugify: "ascii}}
|
|
34
|
-
alt: {{ post.title | slugify: "ascii}}
|
|
33
|
+
title: {{ post.title | slugify: "ascii"}}
|
|
34
|
+
alt: {{ post.title | slugify: "ascii"}}
|
|
35
|
+
{% endif %}
|
|
36
|
+
{% endresponsive_image_block %}
|
|
37
|
+
{% elsif post.image.path %}
|
|
38
|
+
{% capture image_path %}{{post.image.path | remove_first: '/'}}{% endcapture %}
|
|
39
|
+
{% capture full_path %}{{post.image.path }}{% endcapture %}
|
|
40
|
+
{% responsive_image_block %}
|
|
41
|
+
template: _includes/thumb.html
|
|
42
|
+
path: {{ image_path }}
|
|
43
|
+
fullpath: {{ full_path }}
|
|
44
|
+
{% if post.title %}
|
|
45
|
+
title: {{ post.title | slugify: "ascii"}}
|
|
46
|
+
alt: {{ post.title | slugify: "ascii"}}
|
|
35
47
|
{% endif %}
|
|
36
48
|
{% endresponsive_image_block %}
|
|
37
49
|
{% else %}
|
|
@@ -71,8 +83,8 @@
|
|
|
71
83
|
path: {{ image_path }}
|
|
72
84
|
fullpath: {{ full_path }}
|
|
73
85
|
{% if post.title %}
|
|
74
|
-
title: {{ post.title | slugify: "ascii}}
|
|
75
|
-
alt: {{ post.title | slugify: "ascii}}
|
|
86
|
+
title: {{ post.title | slugify: "ascii"}}
|
|
87
|
+
alt: {{ post.title | slugify: "ascii"}}
|
|
76
88
|
{% endif %}
|
|
77
89
|
{% endresponsive_image_block %}
|
|
78
90
|
{% elsif post.image.name %}
|
|
@@ -83,8 +95,20 @@
|
|
|
83
95
|
path: {{ image_path }}
|
|
84
96
|
fullpath: {{ full_path }}
|
|
85
97
|
{% if post.title %}
|
|
86
|
-
title: {{ post.title | slugify: "ascii}}
|
|
87
|
-
alt: {{ post.title | slugify: "ascii}}
|
|
98
|
+
title: {{ post.title | slugify: "ascii"}}
|
|
99
|
+
alt: {{ post.title | slugify: "ascii"}}
|
|
100
|
+
{% endif %}
|
|
101
|
+
{% endresponsive_image_block %}
|
|
102
|
+
{% elsif post.image.path %}
|
|
103
|
+
{% capture image_path %}{{post.image.path | remove_first: '/' }}{% endcapture %}
|
|
104
|
+
{% capture full_path %}{{post.image.path }}{% endcapture %}
|
|
105
|
+
{% responsive_image_block %}
|
|
106
|
+
template: _includes/thumb.html
|
|
107
|
+
path: {{ image_path }}
|
|
108
|
+
fullpath: {{ full_path }}
|
|
109
|
+
{% if post.title %}
|
|
110
|
+
title: {{ post.title | slugify: "ascii"}}
|
|
111
|
+
alt: {{ post.title | slugify: "ascii"}}
|
|
88
112
|
{% endif %}
|
|
89
113
|
{% endresponsive_image_block %}
|
|
90
114
|
{% else %}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jumbo-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.52
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Kirkby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-12-
|
|
11
|
+
date: 2018-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|