jumbo-jekyll-theme 5.7.0.5 → 5.7.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/blog/post_search.html +2 -1
- data/_includes/blog/read_time.html +1 -1
- data/_includes/components/github_edit.html +9 -9
- data/_includes/image.html +6 -0
- data/_layouts/base.html +1 -1
- data/_sass/app/overrides.scss +1 -1
- data/_sass/core/flow.scss +2 -2
- data/_sass/core/jumbotron.scss +1 -1
- data/_sass/core/navbar.scss +8 -0
- data/_sass/core/theme.scss +16 -0
- 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: 5732c728c9d79d12b569d819ca05daae54361b79885cdd05e9243b71966220b3
|
4
|
+
data.tar.gz: c5db07aab02de7f826e5eaeccba91fea8fb9f59c262697e05e17886a69b2e5ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82945b30c357b89b737cb79199368e1a1fbfa6359b325fa8f0ad43e2d2e96492e223a941b608c03c1b7ef4f678122e7a0ef1a16fc2897fb7b6e1dbe8d312f62a
|
7
|
+
data.tar.gz: 61d6c6b3453bb858078c00098f246264b9284261f39c3fa61e2372bd8d65650bcecdfa1287a0221b5b6f316cde9214d8dbe659402c25e8dc443408d4ce6d53fd
|
@@ -1,7 +1,8 @@
|
|
1
1
|
{% assign url = include.object.payload %}
|
2
2
|
<div class="col col-12 ">
|
3
3
|
<div id="post_search" data-file-path="{{url.data}}">
|
4
|
-
<input class="form-control form-control-lg"
|
4
|
+
<input class="form-control form-control-lg" id="search-input" type="text"
|
5
|
+
placeholder="Search {{site.categories[url.category].size}} posts..." />
|
5
6
|
<a class="close_search" href="#">
|
6
7
|
X <span class="sr-only">Clear Search</span>
|
7
8
|
</a>
|
@@ -4,4 +4,4 @@
|
|
4
4
|
{% else %}
|
5
5
|
{% assign words = content | number_of_words %}
|
6
6
|
{% endif %}
|
7
|
-
<span class="reading-time badge badge-light" title="Estimated read time">{% if words < 360 %}1 min read{% else %}{{ words | divided_by:180 }} mins read{% endif %} <i class="fa fa-clock-o" aria-hidden="true"></i></span>
|
7
|
+
<span class="reading-time badge badge-light text-dark" title="Estimated read time">{% if words < 360 %}1 min read{% else %}{{ words | divided_by:180 }} mins read{% endif %} <i class="fa fa-clock-o" aria-hidden="true"></i></span>
|
@@ -11,9 +11,9 @@
|
|
11
11
|
{% endcapture %}
|
12
12
|
{% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
|
13
13
|
<div class="btn-group my-4" role="group" aria-label="Basic example" id="github_controls">
|
14
|
-
<
|
15
|
-
<
|
16
|
-
<
|
14
|
+
<a type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i class="icon-github-circled center-block"></i></a>
|
15
|
+
<a type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an Issue</a>
|
16
|
+
<a href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary" id="edit_on_github">Edit on GitHub</a>
|
17
17
|
</div>
|
18
18
|
{% else %}
|
19
19
|
{% capture github-home %}{{site.edit-on-github.repo}}{% endcapture %}
|
@@ -23,12 +23,12 @@
|
|
23
23
|
{% endcapture %}
|
24
24
|
{% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
|
25
25
|
<div class="btn-group my-4" role="group" aria-label="Basic example" id="github_controls">
|
26
|
-
<
|
27
|
-
class="icon-github-circled center-block"></i></
|
28
|
-
<
|
29
|
-
Issue</
|
30
|
-
<
|
31
|
-
id="edit_on_github">Edit on GitHub</
|
26
|
+
<a type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i
|
27
|
+
class="icon-github-circled center-block"></i></a>
|
28
|
+
<a type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an
|
29
|
+
Issue</a>
|
30
|
+
<a href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary"
|
31
|
+
id="edit_on_github">Edit on GitHub</a>
|
32
32
|
</div>
|
33
33
|
{% endif %}
|
34
34
|
{% endif %}
|
data/_includes/image.html
CHANGED
@@ -8,4 +8,10 @@
|
|
8
8
|
{% else %}
|
9
9
|
{% capture image_class %}{% endcapture %}
|
10
10
|
{% endif %}
|
11
|
+
{% if include.url %}
|
12
|
+
<a href="{{include.url}}" target="_blank">
|
13
|
+
{% endif %}
|
11
14
|
{% picture blog_image {{include.path | remove_first: "/assets/images/" }} class="{{image_class}}" --alt {{image_alt}} --class {{image_class}} %}
|
15
|
+
{% if include.url %}
|
16
|
+
</a>
|
17
|
+
{% endif %}
|
data/_layouts/base.html
CHANGED
data/_sass/app/overrides.scss
CHANGED
data/_sass/core/flow.scss
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
object-fit: cover;
|
11
11
|
height: 100%;
|
12
12
|
width: 100%;
|
13
|
-
filter: brightness(0.
|
13
|
+
filter: brightness(0.4);
|
14
14
|
z-index:0;
|
15
15
|
top:0px;
|
16
16
|
}
|
@@ -57,7 +57,7 @@
|
|
57
57
|
.card {
|
58
58
|
&.background_image {
|
59
59
|
img {
|
60
|
-
filter: brightness(0.
|
60
|
+
filter: brightness(0.5);
|
61
61
|
height: 100%;
|
62
62
|
}
|
63
63
|
}
|
data/_sass/core/jumbotron.scss
CHANGED
data/_sass/core/navbar.scss
CHANGED
data/_sass/core/theme.scss
CHANGED
@@ -37,4 +37,20 @@
|
|
37
37
|
top:-10px;
|
38
38
|
}
|
39
39
|
}
|
40
|
+
.card {
|
41
|
+
&.background_image {
|
42
|
+
img {
|
43
|
+
filter: brightness(0.6);
|
44
|
+
height: 100%;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
.card-img-top {
|
48
|
+
height: 150px;
|
49
|
+
width: 100%;
|
50
|
+
object-fit: cover;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
.darken {
|
54
|
+
filter: brightness(0.5);
|
55
|
+
}
|
40
56
|
}
|
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: 5.7.0.
|
4
|
+
version: 5.7.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Kirkby
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|