jumbo-jekyll-theme 1.4.2.4 → 1.4.2.5
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/_includes/display-blog-posts.html +15 -0
- data/_sass/core/nav.scss +1 -0
- data/_sass/core/tables.scss +4 -4
- data/_sass/core/theme.scss +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b14d64427256d69fed1d80c337141efd28f2c09
|
|
4
|
+
data.tar.gz: 555a8130f5daad56506732b5ad94f62ae64613d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c1f6c24af7b1d2663643df188a4ab63688abd6e7362673cea8b0ecdcbee8814d7a552246e38f3901d494539e83e668f07a580a2794c0daad155474a96369e5a
|
|
7
|
+
data.tar.gz: 2d36b7401f12ab26068e1670bef1e514367ba96e7d2fc9c967a3d81efe21139d9c18d5b04dfe4380877414ab8f1c1d9479c7d96fb30732bb2fa263acb3b029e2
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{% for post in paginator.posts %}
|
|
2
2
|
<div class="row blog_post">
|
|
3
|
+
{% if site.data.settings.blog.show_thumbnails %}
|
|
3
4
|
<div class="col-xs-12 post_title no-padding">
|
|
4
5
|
<a href="{{post.url}}"><h3>{{ post.title}}</h3></a>
|
|
5
6
|
<em>{{ post.date | date: "%A, %B %-d, %Y"}}</em><br />
|
|
@@ -12,5 +13,19 @@
|
|
|
12
13
|
</a>
|
|
13
14
|
</p>
|
|
14
15
|
</div>
|
|
16
|
+
{% else %}
|
|
17
|
+
<div class="col-xs-12 post_title no-padding">
|
|
18
|
+
<a href="{{post.url}}"><h3>{{ post.title}}</h3></a>
|
|
19
|
+
<em>{{ post.date | date: "%A, %B %-d, %Y"}}</em><br />
|
|
20
|
+
<p class="post_excerpt">
|
|
21
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
|
22
|
+
</p>
|
|
23
|
+
<p>
|
|
24
|
+
<a href="{{post.url}}">
|
|
25
|
+
<button class="btn blog-read-more-btn">Read More</button>
|
|
26
|
+
</a>
|
|
27
|
+
</p>
|
|
28
|
+
</div>
|
|
29
|
+
{% endif %}
|
|
15
30
|
</div>
|
|
16
31
|
{% endfor %}
|
data/_sass/core/nav.scss
CHANGED
data/_sass/core/tables.scss
CHANGED
|
@@ -80,9 +80,9 @@ th {
|
|
|
80
80
|
background-color: $brand-primary;
|
|
81
81
|
border-bottom:4px solid #9ea7af;
|
|
82
82
|
border-right: 1px solid #343a45;
|
|
83
|
-
font-size:
|
|
83
|
+
font-size:12px;
|
|
84
84
|
font-weight: 400;
|
|
85
|
-
padding:
|
|
85
|
+
padding:5px;
|
|
86
86
|
text-align:left !important;
|
|
87
87
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
|
88
88
|
vertical-align:middle;
|
|
@@ -133,11 +133,11 @@ tr:last-child td:last-child {
|
|
|
133
133
|
|
|
134
134
|
td {
|
|
135
135
|
background:#FFFFFF;
|
|
136
|
-
padding:
|
|
136
|
+
padding: 2px;
|
|
137
137
|
text-align:left;
|
|
138
138
|
vertical-align:middle;
|
|
139
139
|
font-weight:300;
|
|
140
|
-
font-size:
|
|
140
|
+
font-size:12px;
|
|
141
141
|
border-right: 1px solid #C1C3D1;
|
|
142
142
|
}
|
|
143
143
|
|
data/_sass/core/theme.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Body Style
|
|
2
2
|
body {
|
|
3
|
-
background-color
|
|
3
|
+
background-color: $navbar-inverse-bg;
|
|
4
4
|
letter-spacing: 0.5px;
|
|
5
5
|
overflow-x: hidden;
|
|
6
6
|
font-weight: 300;
|
|
@@ -13,7 +13,7 @@ body {
|
|
|
13
13
|
/* ------------ Main Container Style margin accounts for Nav ----------- */
|
|
14
14
|
#wrapper{
|
|
15
15
|
overflow-x: hidden;
|
|
16
|
-
margin-top:
|
|
16
|
+
margin-top: $navbar-height - 1;
|
|
17
17
|
}
|
|
18
18
|
#wrapper-home{
|
|
19
19
|
overflow-x: hidden;
|