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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29dfefc605a487b71001741a124e6450002a3d807e2bbfa079708b86fe26ab52
4
- data.tar.gz: 25e5ab5535fdcd88b5d52bff67afa4c2ff4aa7db48952f4e0cfcb7238f55610b
3
+ metadata.gz: 5732c728c9d79d12b569d819ca05daae54361b79885cdd05e9243b71966220b3
4
+ data.tar.gz: c5db07aab02de7f826e5eaeccba91fea8fb9f59c262697e05e17886a69b2e5ee
5
5
  SHA512:
6
- metadata.gz: ffe8aaaa4ebfeb3687597fca2379aa0716f0bfc97499315180076329acbf497c855ffa820cd6a56759f80809636bf75e2e84faed8a75703b81f106efe2953fe5
7
- data.tar.gz: eff8de670dc5b438ad63e8e64c77c88913cac683e0aac813e2bd2e4324bbdf373f4fe954758095e5b4e11215e65038f6220cd4880ade638276f650a1eff6adc7
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" id="search-input" type="text" placeholder="Search {{posts.size}} posts..."/>
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
- <button type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i class="icon-github-circled center-block"></i></button>
15
- <button type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an Issue</button>
16
- <button href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary" id="edit_on_github">Edit on GitHub</button>
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
- <button type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i
27
- class="icon-github-circled center-block"></i></button>
28
- <button type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an
29
- Issue</button>
30
- <button href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary"
31
- id="edit_on_github">Edit on GitHub</button>
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
@@ -7,7 +7,7 @@
7
7
  <div id="wrapper" class="main">
8
8
  {% include_cached nav/nav.html pageUrl=page.url %}
9
9
  {{content}}
10
- {% include_cached footer/footer.html %}
10
+ {% include footer/footer.html %}
11
11
  </div>
12
12
  {% include components/javascript.html %}
13
13
  </body>
@@ -34,7 +34,7 @@ $font-family-base: "Lato";
34
34
  $footer_bg_color: #00000b;
35
35
  $footer_strip_bg_color: $secondary;
36
36
  // Flow
37
- $flow_row_padding: 40px;
37
+ $flow_row_padding: 20px;
38
38
  $flow_component_padding: 15px;
39
39
  // Cookie Consent
40
40
  $cookie_consent_bg: #000;
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.6);
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.6);
60
+ filter: brightness(0.5);
61
61
  height: 100%;
62
62
  }
63
63
  }
@@ -94,7 +94,7 @@
94
94
  height: 100%;
95
95
  width: 100%;
96
96
  object-fit: cover;
97
- filter: brightness(0.6);
97
+ filter: brightness(0.4);
98
98
  }
99
99
  }
100
100
  }
@@ -33,6 +33,14 @@
33
33
  }
34
34
  }
35
35
  .nav-item {
36
+ &.active {
37
+ a::before {
38
+ display: block;
39
+ opacity: 1;
40
+ width: 100% !important;
41
+ left: 0 !important;
42
+ }
43
+ }
36
44
  a.nav-link {
37
45
  color: $navbar_text_color;
38
46
  }
@@ -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.5
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-17 00:00:00.000000000 Z
11
+ date: 2020-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll