jumbo-jekyll-theme 3.0.23 → 3.0.24
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/_layouts/post.html +90 -94
- data/_sass/core/breadcrumb.scss +1 -0
- data/_sass/core/nav.scss +5 -5
- 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: 9063e87cc37b26426c864509d7c4b676c7e3e228aeda2c5a8c28f99027739202
|
|
4
|
+
data.tar.gz: 7f79e051ed45cdc554ea14e378a6b907490d955e9aa50e00a8e8a77043e6b9e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efd3722d59135ad2b737f4d977af7b932ef2e7cb8e43357a3608b25ea93c1b2e2923a418dd21245360a5c991f4b57999a3e31442ca26ef3bac1cdc9ec659d1ca
|
|
7
|
+
data.tar.gz: f8e14564245ab507ef4c5a97247ce66f6b6711ef5359bc853cb8fb60173717777f5f24883ced5b5dfbce0cec5b353ecb589c214dc67ee907b18d79e8ac9d7d91
|
data/_layouts/post.html
CHANGED
|
@@ -4,7 +4,7 @@ js-package: blog
|
|
|
4
4
|
css-package: blog
|
|
5
5
|
---
|
|
6
6
|
{% if page.image.featured %}
|
|
7
|
-
<div class="row overlay" style="background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('{{page.image.path}}');"> <!--Row -->
|
|
7
|
+
<div class="row overlay background-image" id="jumbotron" style="background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('{{page.image.path}}');"> <!--Row -->
|
|
8
8
|
<div id="featured-jumbotron" class="blog blog-full-page-image-info"> <!--Jumbotron div -->
|
|
9
9
|
<h1 class="text-center" id="featured-image-blog-title">{{page.title}}</h1>
|
|
10
10
|
{% if page.author %}
|
|
@@ -54,101 +54,97 @@ css-package: blog
|
|
|
54
54
|
</small>
|
|
55
55
|
{% endif %}
|
|
56
56
|
</div>
|
|
57
|
-
|
|
58
|
-
</div>
|
|
57
|
+
</div>
|
|
59
58
|
{% endif %}
|
|
60
|
-
|
|
61
|
-
<div class="container
|
|
62
|
-
|
|
63
|
-
<div class="
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
<
|
|
67
|
-
{
|
|
68
|
-
<
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
{% if
|
|
72
|
-
|
|
73
|
-
{%
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
{%
|
|
78
|
-
|
|
79
|
-
{% assign author = site.data.authors | where: "username", page.author | first %}
|
|
80
|
-
{% assign author-url = "#" %}
|
|
81
|
-
{% endif %}
|
|
82
|
-
<em> By
|
|
83
|
-
{% if author %}
|
|
84
|
-
<a href="{{author-url}}">
|
|
85
|
-
<strong>
|
|
86
|
-
{{author.name}}
|
|
87
|
-
</strong>
|
|
88
|
-
</a>
|
|
89
|
-
{% else %}
|
|
90
|
-
<strong>
|
|
91
|
-
{{page.author}}
|
|
92
|
-
</strong>
|
|
93
|
-
{% endif %}
|
|
94
|
-
|
|
95
|
-
</em>
|
|
59
|
+
<div class="row" id="content-container">
|
|
60
|
+
<div class="container">
|
|
61
|
+
{% if site.data.settings.blog.sidebar.display-on-posts %}
|
|
62
|
+
<div class="col-md-9">
|
|
63
|
+
<article class="post-content">
|
|
64
|
+
{% unless page.image.featured %}
|
|
65
|
+
<div class="post-info">
|
|
66
|
+
<h1>{{page.title }}</h1>
|
|
67
|
+
{% if page.date %}<small class="blog-date text-center"><em>Posted on <b>{{page.date | date: "%A, %B %-d, %Y"}}</b></em></small>{% endif %}
|
|
68
|
+
{% if page.categories %}in <a href="/categories/#{{page.categories[0]}}">{{page.categories[0] | capitalize}}</a>{% endif %}
|
|
69
|
+
{% if page.author %}
|
|
70
|
+
{% if site.authors %}
|
|
71
|
+
{% assign author = site.authors | where: "username", page.author | first %}
|
|
72
|
+
{% assign author-url = author.url %}
|
|
73
|
+
{% assign using-data-file = false %}
|
|
74
|
+
{% elsif site.data.authors %}
|
|
75
|
+
{% assign using-data-file = true %}
|
|
76
|
+
{% assign author = site.data.authors | where: "username", page.author | first %}
|
|
77
|
+
{% assign author-url = "#" %}
|
|
96
78
|
{% endif %}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
79
|
+
<em> By
|
|
80
|
+
{% if author %}
|
|
81
|
+
<a href="{{author-url}}">
|
|
82
|
+
<strong>
|
|
83
|
+
{{author.name}}
|
|
84
|
+
</strong>
|
|
85
|
+
</a>
|
|
86
|
+
{% else %}
|
|
87
|
+
<strong>
|
|
88
|
+
{{page.author}}
|
|
89
|
+
</strong>
|
|
90
|
+
{% endif %}
|
|
91
|
+
|
|
92
|
+
</em>
|
|
93
|
+
{% endif %}
|
|
94
|
+
</div>
|
|
95
|
+
{% endunless %}
|
|
96
|
+
{{ content }}
|
|
97
|
+
</article>
|
|
107
98
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
99
|
+
{% comment %}
|
|
100
|
+
TAGS - Check to see if the tags_enabled setting in settings.yml data file is toggled.
|
|
101
|
+
{% endcomment %}
|
|
111
102
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
103
|
+
{% include post-tags.html %}
|
|
104
|
+
|
|
105
|
+
{% comment %}
|
|
106
|
+
COMMENTS - Check to see if comments are toggled for this particular post.
|
|
107
|
+
{% endcomment %}
|
|
108
|
+
|
|
109
|
+
{% include disqus-comments.html %}
|
|
110
|
+
</div>
|
|
111
|
+
<div class="col-md-3 blog-sidebar no-padding">
|
|
112
|
+
{% include post-sidebar.html %}
|
|
113
|
+
</div>
|
|
114
|
+
{% else %}
|
|
115
|
+
<div class="col-xs-12 no-padding">
|
|
116
|
+
<article class="post-content">
|
|
117
|
+
{% unless page.image.featured %}
|
|
118
|
+
<div class="post-info">
|
|
119
|
+
<h1>{{page.title }}</h1>
|
|
120
|
+
|
|
121
|
+
{% if page.date %}<small class="blog-date text-center"><em>Posted on <b>{{page.date | date: "%A, %B %-d, %Y"}}</b></em></small>{% endif %}
|
|
122
|
+
{% if page.categories %}in <a href="/categories/#{{page.categories[0]}}">{{page.categories[0] | capitalize}}</a>{% endif %}
|
|
123
|
+
{% if page.author %}
|
|
124
|
+
{% assign author = site.authors | where: 'username' , page.author %}
|
|
125
|
+
{% assign author = author[0] %}
|
|
126
|
+
<em> By
|
|
127
|
+
{% if author %}
|
|
128
|
+
<a href="{{author-url}}">
|
|
129
|
+
<strong>
|
|
130
|
+
{{author.name}}
|
|
131
|
+
</strong>
|
|
132
|
+
</a>
|
|
133
|
+
{% else %}
|
|
134
|
+
<strong>
|
|
135
|
+
{{page.author}}
|
|
136
|
+
</strong>
|
|
137
|
+
{% endif %}
|
|
138
|
+
|
|
139
|
+
</em>
|
|
140
|
+
{% endif %}
|
|
141
|
+
</div>
|
|
142
|
+
{% endunless %}
|
|
143
|
+
{{ content }}
|
|
144
|
+
</article>
|
|
145
|
+
</div>
|
|
146
|
+
{% endif %}
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
</div>
|
|
154
150
|
</div>
|
data/_sass/core/breadcrumb.scss
CHANGED
data/_sass/core/nav.scss
CHANGED
|
@@ -435,9 +435,9 @@ nav > ul.navbar-right {
|
|
|
435
435
|
transition: all 1s ease;
|
|
436
436
|
}
|
|
437
437
|
@media(max-width:$screen-sm-min - 1){
|
|
438
|
-
#main-navigation ul.dropdown-menu.sub-menu {
|
|
439
|
-
position: static;
|
|
440
|
-
width: 100
|
|
438
|
+
#main-navigation .pull-left ul.dropdown-menu.sub-menu {
|
|
439
|
+
position: static !important;
|
|
440
|
+
width: 100% !important;
|
|
441
441
|
margin: 0px !important;
|
|
442
442
|
}
|
|
443
443
|
#tabbed-nav-bar .tabbed-nav-btn{
|
|
@@ -890,8 +890,8 @@ li.dropdown-submenu.sub-menu.pull-left {
|
|
|
890
890
|
width: 100%;
|
|
891
891
|
}
|
|
892
892
|
#main-navigation .pull-left ul.dropdown-menu.sub-menu {
|
|
893
|
-
margin-left: -3px
|
|
894
|
-
margin-top: 0px
|
|
893
|
+
margin-left: -3px;
|
|
894
|
+
margin-top: 0px;
|
|
895
895
|
text-align: right;
|
|
896
896
|
}
|
|
897
897
|
#main-navigation ul.dropdown-menu.sub-menu {
|