bay_jekyll_theme 1.0.18 → 1.0.20

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: b9a8be7fd3561d01ef4998eb0958857ea56888be40a5eb75eafbcb2c117a1cb1
4
- data.tar.gz: 61fa2c79a83cbbecb5871d751849b5a63dc0032f6a91a8ca04ad01ec451d4bb6
3
+ metadata.gz: c1ed8c0f2d2b0050ef99c19f1e4f4c0af5b21a6f768ef4a6eac3e3de4e0ca695
4
+ data.tar.gz: fa6fd30dc5a7170ecf78eb58168b41e86368a25e9e13d34ce419653de9cc5f7d
5
5
  SHA512:
6
- metadata.gz: b8cc52efe9cad0e4b39d8b8e0f60e50196f5f0ef3efa4723080ce229d38601ca95442cc75a213c21d3097ea8c0cc7792e68ab2e710abfade026d008fcfc57dbd
7
- data.tar.gz: caa09de23ada9b0e33f8b79d0132d0241b6e9970af073cbb44f3d8ea032e3005610479d1afd820a8bab5567b6f56bb2bdd638a00cb254365d5d8c3ec0f4c477f
6
+ metadata.gz: c1c594c55a9ea7480bf94191712593cffe9dbc47899181b67e5e647712bff8c4a775ca9d3f7c3c6022711213ad1c5a2f9ecce93e7163e2f869ab3562297802fc
7
+ data.tar.gz: b26beaad31010ec2b3c4d506f1d7892709756a2f17f7044de3795f6443e7379d175dfa6ecca8f779f83391bd438cefa5f55b8e8a6388a14e74a8092a9889a483
data/CHANGELOG.md CHANGED
@@ -2,10 +2,23 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ### [1.0.20](https://github.com/eliottvincent/bay/compare/v1.0.19...v1.0.20) (2023-10-19)
6
+
7
+ ### Features
8
+
9
+ - Hide "Follow" section when no items in `footer.follow`
10
+
11
+ ### [1.0.19](https://github.com/eliottvincent/bay/compare/v1.0.18...v1.0.19) (2022-10-19)
12
+
13
+ ### Bug Fixes
14
+
15
+ - Ensure `<strong>` tags are correctly rendered in Firefox
16
+
5
17
  ### [1.0.18](https://github.com/eliottvincent/bay/compare/v1.0.17...v1.0.18) (2022-08-30)
6
18
 
7
19
  ### Bug Fixes
8
20
 
21
+ - Fix hamburger size
9
22
  - Update dependencies
10
23
 
11
24
  ### [1.0.17](https://github.com/eliottvincent/bay/compare/v1.0.16...v1.0.17) (2021-06-05)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # bay
1
+ # Bay
2
2
 
3
3
  [![Version](https://img.shields.io/gem/v/bay_jekyll_theme)](https://rubygems.org/gems/bay_jekyll_theme)
4
4
  [![Downloads](https://img.shields.io/gem/dt/bay_jekyll_theme)](https://rubygems.org/gems/bay_jekyll_theme)
@@ -27,28 +27,30 @@
27
27
  </div>
28
28
 
29
29
  <div class="footer-col footer-col-2">
30
- <h4>FOLLOW</h4>
30
+ {% if site.footer.follow and site.footer.follow.size > 0 %}
31
+ <h4>FOLLOW</h4>
31
32
 
32
- <div class="social-links follow-links">
33
- {% for follow in site.footer.follow %}
34
- <div class="social-link">
33
+ <div class="social-links follow-links">
34
+ {% for follow in site.footer.follow %}
35
+ <div class="social-link">
35
36
 
36
- {% assign follow_icon_path = "/assets/img/icons/" | append: follow.name | downcase | append: ".png" | absolute_url %}
37
- <img
38
- src="{{ follow_icon_path }}"
39
- alt="{{ follow.name | downcase }}"
40
- />
41
- <a href="{{ follow.link }}">
42
- {% if follow.value and follow.value != "" and follow.value != nil %}
43
- {{ follow.value }}
44
- {% else %}
45
- {{ follow.name }}
46
- {% endif %}
47
- </a>
48
- </div>
37
+ {% assign follow_icon_path = "/assets/img/icons/" | append: follow.name | downcase | append: ".png" | absolute_url %}
38
+ <img
39
+ src="{{ follow_icon_path }}"
40
+ alt="{{ follow.name | downcase }}"
41
+ />
42
+ <a href="{{ follow.link }}">
43
+ {% if follow.value and follow.value != "" and follow.value != nil %}
44
+ {{ follow.value }}
45
+ {% else %}
46
+ {{ follow.name }}
47
+ {% endif %}
48
+ </a>
49
+ </div>
49
50
 
50
- {% endfor %}
51
- </div>
51
+ {% endfor %}
52
+ </div>
53
+ {% endif %}
52
54
  </div>
53
55
 
54
56
  {% if site.footer.show_powered_by == true %}
data/_sass/_base.scss CHANGED
@@ -124,6 +124,13 @@ a {
124
124
  }
125
125
  }
126
126
 
127
+ /**
128
+ * Enforce bold (Firefox)
129
+ */
130
+ strong {
131
+ font-weight: bold;
132
+ }
133
+
127
134
  /**
128
135
  * Blockquotes
129
136
  */
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bay_jekyll_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.18
4
+ version: 1.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eliott Vincent
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-30 00:00:00.000000000 Z
11
+ date: 2023-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
105
  - !ruby/object:Gem::Version
106
106
  version: '0'
107
107
  requirements: []
108
- rubygems_version: 3.3.11
108
+ rubygems_version: 3.3.26
109
109
  signing_key:
110
110
  specification_version: 4
111
111
  summary: A simple and minimal Jekyll theme..