jumbo-jekyll-theme 2.2.1.3 → 2.2.2

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: 64bdf1390ceb3ceedbae276b42c72157c5222a06f13e80405133867d897ab00d
4
- data.tar.gz: 121eaa83bef3e5054989aa31a6f1006070931037f93e297604e0b4fb11d83831
3
+ metadata.gz: 687495642ea63b2ae63a10f95e1e8aabe4f4b31197bfcdb63a5fc1547ceace1c
4
+ data.tar.gz: 9cf7be39966149a0732422312b2ab1f9677accaeb04cd1185fcc4a62596a6b3f
5
5
  SHA512:
6
- metadata.gz: 7716eb4928685f68c4917ce06dfa1f00a3e87b4a23c0822bc21867c2dc4f2081da49e3d658258dea4cd0ab9c7bb4488055bc4aa5f3f06ac1e2855346ccc61296
7
- data.tar.gz: a969780747d28606f7c31440c6e6a548978f64c1cf2c38f6a2b8f417cd76e8c75143522f7426f05b2a73a827f589b17e8c88e93c4975cb6a3024cf71648cd1ba
6
+ metadata.gz: 9fa56b9f44cae8286537c136ca2b42c96c506717d28e754ffa88e1ceb675efa404aef7c1fadb0978dcbbbec36601a7a366b5a18fcbe2755acecb50ad7fc84dd2
7
+ data.tar.gz: 62a2d780bec299ce99d6c4a94ce5c9ea133a37c98430337f189010f17f116704f569cb723f9e6349ab1f084ff597972441e1558da6ba5e5883758a789f0c058b
@@ -1,4 +1,5 @@
1
1
  {% assign pagination_path = "/authors/:num/" %}
2
+
2
3
  {% if paginator.total_pages > 1 %}
3
4
  <div class="text-center" id="pagination_panel">
4
5
  <ul class="pagination pagination-sm">
@@ -7,6 +8,7 @@
7
8
  {% else %}
8
9
  <li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a></li>
9
10
  {% endif %}
11
+
10
12
  {% if paginator.page_trail %}
11
13
  {% for trail in paginator.page_trail %}
12
14
  <li {% if page.url == trail.path %}class="active"{% endif %}>
@@ -26,6 +28,9 @@
26
28
  {% endif %}
27
29
  {% endfor %}
28
30
  {% endif %}
31
+
32
+
33
+
29
34
  {% if paginator.next_page %}
30
35
  <li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next &raquo;</a></li>
31
36
  {% else %}
@@ -31,6 +31,7 @@
31
31
  {% endif %}
32
32
 
33
33
  {% seo title=false %}
34
+
34
35
  <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
35
36
  <!--[if lt IE 9]>
36
37
  <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
@@ -10,4 +10,7 @@ js-package: blog
10
10
  <div class="col-md-3">
11
11
  {% include post-sidebar.html %}
12
12
  </div>
13
+ </div>
14
+ <div class="row">
15
+ {% include author-pagination.html %}
13
16
  </div>
@@ -4,74 +4,46 @@ js-package: blog
4
4
  css-package: blog
5
5
  ---
6
6
  {% if page.image.featured %}
7
- <div class="container-fluid" {% if page.image.featured %}
8
- style="background: #000 url({% asset_path '{{page.image.name}}' %}) no-repeat center center fixed;
7
+ <!--Fluid Container -->
8
+ <div class="container-fluid"
9
+ style="background: #000 url({{page.image.name}}) no-repeat center center fixed;
9
10
  background-size: cover;
10
11
  -webkit-background-size: cover;
11
12
  -moz-background-size: cover;
12
13
  -o-background-size: cover;
13
14
  background-position-y: 0px"
14
- class="jumbotron text-center featured-jumbotron homepage-image-jumbotron"
15
- {% else %}
16
- class="jumbotron text-center featured-jumbotron"
17
- {% endif %}> <!--Fluid Container -->
18
- {% if assets[page.image.name] %}
19
- <div class="row overlay"> <!--Row -->
15
+ class="jumbotron text-center featured-jumbotron homepage-image-jumbotron">
16
+ <!--Row -->
17
+ <div class="row overlay">
20
18
  <div id="featured-jumbotron" class="blog blog-full-page-image-info"> <!--Jumbotron div -->
21
19
  <h1 class="text-center" id="featured-image-blog-title">{{page.title}}</h1>
22
20
  {% if page.author %}
23
21
  {% if site.authors %}
24
22
  {% assign author = site.authors | where: "username", page.author | first %}
25
23
  {% assign author-url = author.url %}
26
- {% assign using-data-file = false %}
27
- {% elsif site.data.authors %}
28
- {% assign using-data-file = true %}
29
- {% assign author = site.data.authors | where: "username", page.author | first %}
30
- {% assign author-url = "#" %}
31
24
  {% endif %}
32
-
33
- {% if site.using-data-file %}
34
- <img class="blog-author-image" style="
35
- background-image:url({% if author.image.name %}
36
- {% asset_path '{{author.image.name}}' %}
37
- {% else %}
38
- {% asset_path 'avatar-placeholder.png' %}
39
- {% endif %})" />
40
- {% else %}
41
25
  <a href="{{author-url}}">
42
26
  <img class="blog-author-image" style="
43
27
  background-image:url({% if author.image.name %}
44
- {% asset_path '{{author.image.name}}' %}
28
+ {{author.image.name}}
45
29
  {% else %}
46
- {% asset_path 'avatar-placeholder.png' %}
30
+ /assets/images/avatar-placeholder.png
47
31
  {% endif %})" />
48
32
  </a>
49
- {% endif %}
50
-
33
+ {% comment %}
34
+ Co-Author Output.
35
+ {% endcomment %}
51
36
  {% if page.co-author %}
52
37
  {% if site.authors %}
53
38
  {% assign co-author = site.authors | where: "username", page.co-author | first %}
54
39
  {% assign co-author-url = co-author.url %}
55
- {% elsif site.data.authors %}
56
- {% assign co-author = site.data.authors | where: "username", page.co-author | first %}
57
- {% assign co-author-url = "#" %}
58
40
  {% endif %}
59
41
  <a href="{{co-author-url}}">
60
42
  <img class="blog-author-image" style="
61
- background-image:url({% if co-author.image.name %}
62
- {% asset_path '{{co-author.image.name}}' %}
63
- {% else %}
64
- {% asset_path 'avatar-placeholder.png' %}
65
- {% endif %})" />
43
+ background-image:url({% if co-author.image.name %}{{co-author.image.name}}{% else %}/assets/images/avatar-placeholder.png{% endif %})" />
66
44
  </a>
67
45
  <br />
68
46
  <small class="blog-author text-center">
69
- {% if using-data-file %}
70
- By
71
- <em>{% if author.name %}{{author.name}}{% else %}{{page.author}}{% endif %}</em>
72
- and
73
- <em>{% if co-author.name %}{{co-author.name}}{% else %}{{page.co-author}}{% endif %}</em>
74
- {% else %}
75
47
  By
76
48
  <a href="{{author-url}}">
77
49
  <em>{% if author.name %}{{author.name}}{% else %}{{page.author}}{% endif %}</em>
@@ -80,26 +52,20 @@ css-package: blog
80
52
  <a href="{{co-author-url}}">
81
53
  <em>{% if co-author.name %}{{co-author.name}}{% else %}{{page.co-author}}{% endif %}</em>
82
54
  </a>
83
- {% endif %}
84
55
  </small>
85
56
  <br />
86
57
  {% else %}
87
58
  <br />
88
59
  <small class="blog-author text-center">
89
- {% if using-data-file %}
90
- By
91
- <em>{% if author.name %}{{author.name}}{% else %}{{page.author}}{% endif %}</em>
92
- {% else %}
93
60
  By
94
61
  <a href="{{author-url}}">
95
62
  <em>{% if author.name %}{{author.name}}{% else %}{{page.author}}{% endif %}</em>
96
63
  </a>
97
- {% endif %}
98
64
  </small>
99
65
  <br />
100
66
  {% endif %}
101
67
  {% endif %}
102
- {% if page.date %}<small class="blog-date text-center"><em>{{page.date | date: "%A, %B %-d, %Y"}}</em></small>{% endif %}
68
+ <small class="blog-date text-center"><em>{{page.date | date: "%A, %B %-d, %Y"}}</em></small>
103
69
  </div>
104
70
  </div>
105
71
 
@@ -108,14 +74,12 @@ css-package: blog
108
74
  {% endif %}
109
75
 
110
76
  </div>
111
- {% endif %}
112
77
  {% endif %}
113
-
114
78
  <div class="container-fluid" id="content-container">
115
79
  <div class="row">
116
80
  <div class="container">
117
81
  {% if site.data.settings.blog.sidebar.display-on-posts %}
118
- <div class="col-md-9">
82
+ <div class="col-md-9">
119
83
  <article class="post-content">
120
84
  {% unless page.image.featured %}
121
85
  <div class="post-info">
@@ -153,18 +117,14 @@ css-package: blog
153
117
  {% endunless %}
154
118
  {{ content }}
155
119
  </article>
156
-
157
-
120
+
158
121
  {% if page.featured-products %}
159
122
  <h3>Featured Products</h3>
160
123
  <hr />
161
124
  <div class="row feautured-products-blog-row">
162
125
  {% for each in page.featured-products %}
163
-
164
126
  {% capture product-perma %}/product/{{each}}/{% endcapture %}
165
-
166
127
  {% assign product = site.data.product_db.products | where: "product_permalink", product-perma | first %}
167
-
168
128
  <div class="col-sm-6">
169
129
  <div class="col-xs-3">
170
130
  <div class="featured-product-blog-img">
@@ -180,34 +140,25 @@ css-package: blog
180
140
  </div>
181
141
  {% endfor %}
182
142
  </div>
183
-
184
143
  <hr/>
185
144
  {% endif %}
186
-
187
-
188
- {% comment %}
189
- TAGS - Check to see if the tags_enabled setting in settings.yml data file is toggled.
190
- {% endcomment %}
191
-
192
- {% include post-tags.html %}
193
-
194
- {% comment %}
195
- COMMENTS - Check to see if comments are toggled for this particular post.
196
- {% endcomment %}
197
145
 
198
- {% include post-comments.html %}
199
- </div>
200
- <div class="col-md-3 blog-sidebar no-padding">
201
- {% include post-sidebar.html %}
202
- </div>
146
+ {% include post-tags.html %}
147
+ {% include post-comments.html %}
148
+
149
+ </div>
150
+ <div class="col-md-3 blog-sidebar no-padding">
151
+ {% include post-sidebar.html %}
152
+ </div>
203
153
  {% else %}
204
154
  <div class="col-xs-12 no-padding">
205
155
  <article class="post-content">
206
156
  {% unless page.image.featured %}
207
157
  <div class="post-info">
208
158
  <h1>{{page.title }}</h1>
209
-
210
- {% if page.date %}<small class="blog-date text-center"><em>Posted on <b>{{page.date | date: "%A, %B %-d, %Y"}}</b></em></small>{% endif %}
159
+ <small class="blog-date text-center">
160
+ <em>Posted on <b>{{page.date | date: "%A, %B %-d, %Y"}}</b></em>
161
+ </small>
211
162
  {% if page.categories %}in <a href="/categories/#{{page.categories[0]}}">{{page.categories[0] | capitalize}}</a>{% endif %}
212
163
  {% if page.author %}
213
164
  {% assign author = site.authors | where: 'username' , page.author %}
@@ -224,7 +175,6 @@ css-package: blog
224
175
  {{page.author}}
225
176
  </strong>
226
177
  {% endif %}
227
-
228
178
  </em>
229
179
  {% endif %}
230
180
  </div>
@@ -232,9 +182,7 @@ css-package: blog
232
182
  {{ content }}
233
183
  </article>
234
184
  </div>
235
- {% endif %}
236
-
237
-
185
+ {% endif %}
238
186
  </div>
239
187
  </div>
240
188
  </div>
@@ -969,36 +969,3 @@ li.dropdown-submenu.sub-menu > a {
969
969
 
970
970
  // Import the CSS for the iuniversal NavBar
971
971
  @import "universal-nav";
972
-
973
- // Animated navbar toggle
974
- .navbar-toggle {
975
- border: none;
976
- background: transparent !important;
977
- }
978
- .navbar-toggle:hover {
979
- background: transparent !important;
980
- }
981
- .navbar-toggle .icon-bar {
982
- width: 22px;
983
- transition: all 0.2s;
984
- }
985
- .navbar-toggle .top-bar {
986
- transform: rotate(45deg);
987
- transform-origin: 10% 10%;
988
- }
989
- .navbar-toggle .middle-bar {
990
- opacity: 0;
991
- }
992
- .navbar-toggle .bottom-bar {
993
- transform: rotate(-45deg);
994
- transform-origin: 10% 90%;
995
- }
996
- .navbar-toggle.collapsed .top-bar {
997
- transform: rotate(0);
998
- }
999
- .navbar-toggle.collapsed .middle-bar {
1000
- opacity: 1;
1001
- }
1002
- .navbar-toggle.collapsed .bottom-bar {
1003
- transform: rotate(0);
1004
- }
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: 2.2.1.3
4
+ version: 2.2.2
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-11-21 00:00:00.000000000 Z
11
+ date: 2018-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -123,7 +123,7 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: 2.4.0
125
125
  - !ruby/object:Gem::Dependency
126
- name: jekyll-data
126
+ name: jekyll-data-revised
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">"
@@ -268,32 +268,18 @@ dependencies:
268
268
  - - "~>"
269
269
  - !ruby/object:Gem::Version
270
270
  version: 1.9.24
271
- - !ruby/object:Gem::Dependency
272
- name: rack
273
- requirement: !ruby/object:Gem::Requirement
274
- requirements:
275
- - - ">="
276
- - !ruby/object:Gem::Version
277
- version: 1.6.11
278
- type: :runtime
279
- prerelease: false
280
- version_requirements: !ruby/object:Gem::Requirement
281
- requirements:
282
- - - ">="
283
- - !ruby/object:Gem::Version
284
- version: 1.6.11
285
271
  - !ruby/object:Gem::Dependency
286
272
  name: bundler
287
273
  requirement: !ruby/object:Gem::Requirement
288
274
  requirements:
289
- - - ">"
275
+ - - '='
290
276
  - !ruby/object:Gem::Version
291
277
  version: 1.16.1
292
278
  type: :development
293
279
  prerelease: false
294
280
  version_requirements: !ruby/object:Gem::Requirement
295
281
  requirements:
296
- - - ">"
282
+ - - '='
297
283
  - !ruby/object:Gem::Version
298
284
  version: 1.16.1
299
285
  - !ruby/object:Gem::Dependency
@@ -362,7 +348,6 @@ files:
362
348
  - _includes/shape.html
363
349
  - _includes/sidebar.html
364
350
  - _includes/sticky-tab-bar.html
365
- - _includes/thumbnail_image.html
366
351
  - _includes/universal-nav.html
367
352
  - _includes/youtube.html
368
353
  - _layouts/author-layout.html
@@ -380,7 +365,6 @@ files:
380
365
  - _layouts/home.html
381
366
  - _layouts/post-index.html
382
367
  - _layouts/post-no-sidebar.html
383
- - _layouts/post-old.html
384
368
  - _layouts/post.html
385
369
  - _sass/_bootstrap-compass.scss
386
370
  - _sass/_bootstrap-mincer.scss
@@ -582,7 +566,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
582
566
  version: '0'
583
567
  requirements: []
584
568
  rubyforge_project:
585
- rubygems_version: 2.7.8
569
+ rubygems_version: 2.7.7
586
570
  signing_key:
587
571
  specification_version: 4
588
572
  summary: The jumbo-jekyll-theme aims to provide an fast static theme for use across
@@ -1,10 +0,0 @@
1
- {% comment %}
2
- This is a template for the jekyll-responsive-image plugin.
3
- This will generate a picture element
4
- {% endcomment %}
5
- <picture>
6
- {% for i in resized %}
7
- <source media="(min-width: {{ i.width }}px)" data-srcset="/{{ i.path }}">
8
- {% endfor %}
9
- <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="/{{ path }}" class="img-responsive lazyload">
10
- </picture>
@@ -1,70 +0,0 @@
1
- ---
2
- js-package: blog
3
- css-package: blog
4
- layout: container
5
- ---
6
- {% if page.previous.url %}
7
- <a href="{{page.previous.url}}" class="previous_post_anchor">
8
- <div class="previous_post"></div>
9
- </a>
10
- {% endif %}
11
- {% if page.next.url %}
12
- <a href="{{page.next.url}}" class="next_post_anchor">
13
- <div class="next_post"></div>
14
- </a>
15
- {% endif %}
16
-
17
- <div class="col-md-9">
18
- <article class="post-content">
19
- <div class="post-info">
20
- <h1>{{page.title }}</h1>
21
-
22
- {% if page.date %}<small class="blog-date text-center"><em>Posted on <b>{{page.date | date: "%A, %B %-d, %Y"}}</b></em></small>{% endif %}
23
- {% if page.categories %}in <a href="/categories/#{{page.categories[0]}}">{{page.categories[0] | capitalize}}</a>{% endif %}
24
- {% if page.author %}
25
- {% assign author = site.authors | where: 'username' , page.author %}
26
- {% assign author = author[0] %}
27
- <em> By
28
- {% if author %}
29
- <a href="{{author.url}}">
30
- <strong>
31
- {{author.name}}
32
- </strong>
33
- </a>
34
- {% else %}
35
- <strong>
36
- {{page.author}}
37
- </strong>
38
- {% endif %}
39
-
40
- </em>
41
- {% endif %}
42
- </div>
43
- {{ content }}
44
- </article>
45
-
46
- <hr />
47
-
48
- {% comment %}
49
- TAGS - Check to see if the tags_enabled setting in settings.yml data file is toggled.
50
- {% endcomment %}
51
-
52
- {% include post-tags.html %}
53
-
54
- {% comment %}
55
- COMMENTS - Check to see if comments are toggled for this particular post.
56
- {% endcomment %}
57
-
58
- {% include post-comments.html %}
59
-
60
-
61
- </div>
62
-
63
- {% comment %}
64
- Display a right side bar.
65
- {% endcomment %}
66
-
67
- <div class="col-md-3 blog-sidebar">
68
- {% include post-sidebar.html %}
69
- </div>
70
-