jumbo-jekyll-theme 3.0.23 → 3.0.24

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: 7ac5e51efd9ee24926617c541fa0bea27a4249bc8fd5d835b8f23596a66b2408
4
- data.tar.gz: 5df9d8fd6140ec40ee95b73aa2b6eea5e84c9d12d74088c45c8ac38393171d16
3
+ metadata.gz: 9063e87cc37b26426c864509d7c4b676c7e3e228aeda2c5a8c28f99027739202
4
+ data.tar.gz: 7f79e051ed45cdc554ea14e378a6b907490d955e9aa50e00a8e8a77043e6b9e9
5
5
  SHA512:
6
- metadata.gz: 46fa0d297482a9d2e1fcdc9eb69b9454c41420ce7303b31e1652b684685417f2f2872dbd936a6a40d9909945acce52768c92a371b93d0940ac3eba57eb0577aa
7
- data.tar.gz: 133d512e8bfc4bc55ad59eab9253589e55b0d458c7b33f0a219275ee44ecbdbb346509082169423baac7b30a33a8f775e6152d39d18763dbf9593fefe1782d87
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
- </div>
58
- </div>
57
+ </div>
59
58
  {% endif %}
60
-
61
- <div class="container-fluid" id="content-container">
62
- <div class="row">
63
- <div class="container">
64
- {% if site.data.settings.blog.sidebar.display-on-posts %}
65
- <div class="col-md-9">
66
- <article class="post-content">
67
- {% unless page.image.featured %}
68
- <div class="post-info">
69
- <h1>{{page.title }}</h1>
70
- {% if page.date %}<small class="blog-date text-center"><em>Posted on <b>{{page.date | date: "%A, %B %-d, %Y"}}</b></em></small>{% endif %}
71
- {% if page.categories %}in <a href="/categories/#{{page.categories[0]}}">{{page.categories[0] | capitalize}}</a>{% endif %}
72
- {% if page.author %}
73
- {% if site.authors %}
74
- {% assign author = site.authors | where: "username", page.author | first %}
75
- {% assign author-url = author.url %}
76
- {% assign using-data-file = false %}
77
- {% elsif site.data.authors %}
78
- {% assign using-data-file = true %}
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
- </div>
98
- {% endunless %}
99
- {{ content }}
100
- </article>
101
-
102
- {% comment %}
103
- TAGS - Check to see if the tags_enabled setting in settings.yml data file is toggled.
104
- {% endcomment %}
105
-
106
- {% include post-tags.html %}
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
- {% comment %}
109
- COMMENTS - Check to see if comments are toggled for this particular post.
110
- {% endcomment %}
99
+ {% comment %}
100
+ TAGS - Check to see if the tags_enabled setting in settings.yml data file is toggled.
101
+ {% endcomment %}
111
102
 
112
- {% include disqus-comments.html %}
113
- </div>
114
- <div class="col-md-3 blog-sidebar no-padding">
115
- {% include post-sidebar.html %}
116
- </div>
117
- {% else %}
118
- <div class="col-xs-12 no-padding">
119
- <article class="post-content">
120
- {% unless page.image.featured %}
121
- <div class="post-info">
122
- <h1>{{page.title }}</h1>
123
-
124
- {% if page.date %}<small class="blog-date text-center"><em>Posted on <b>{{page.date | date: "%A, %B %-d, %Y"}}</b></em></small>{% endif %}
125
- {% if page.categories %}in <a href="/categories/#{{page.categories[0]}}">{{page.categories[0] | capitalize}}</a>{% endif %}
126
- {% if page.author %}
127
- {% assign author = site.authors | where: 'username' , page.author %}
128
- {% assign author = author[0] %}
129
- <em> By
130
- {% if author %}
131
- <a href="{{author-url}}">
132
- <strong>
133
- {{author.name}}
134
- </strong>
135
- </a>
136
- {% else %}
137
- <strong>
138
- {{page.author}}
139
- </strong>
140
- {% endif %}
141
-
142
- </em>
143
- {% endif %}
144
- </div>
145
- {% endunless %}
146
- {{ content }}
147
- </article>
148
- </div>
149
- {% endif %}
150
-
151
-
152
- </div>
153
- </div>
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>
@@ -53,6 +53,7 @@ ol.breadcrumb {
53
53
  border-radius: 0;
54
54
  display: block;
55
55
  padding: 0;
56
+ margin-bottom: 0;
56
57
  }
57
58
  ol.breadcrumb li a {
58
59
  color: #fff;
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 !important;
894
- margin-top: 0px !important;
893
+ margin-left: -3px;
894
+ margin-top: 0px;
895
895
  text-align: right;
896
896
  }
897
897
  #main-navigation ul.dropdown-menu.sub-menu {
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.0.23
4
+ version: 3.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby