bay_jekyll_theme 1.0.15 → 1.0.16

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: 62306bd24ecf4690e4743065bfac83da9132b53f89937833c38db8c021cc0830
4
- data.tar.gz: c1aa63b6a7989bce66c561e3ccfac1caeb69eb73681434e495630f2022cdd3a7
3
+ metadata.gz: e2a5e37a43d8ac48c7559be29084110f641db7e7f150fe013861b33d53e8cb9a
4
+ data.tar.gz: 12bdeff5c8116293db2eed32840dc8bc31485ba738de993049b3c1ef85d1710e
5
5
  SHA512:
6
- metadata.gz: b0cad75e0a7fd463e3f0aaacda8cf0dbe7586c7a8797d14654f8db1c4adda7915e3a6b6bdb488e3c6f898938f06453798f45edf0537b64aa84d329c2bd08f7eb
7
- data.tar.gz: 075d46ed8043f05a023d63f11909da82d1d2027cc9576d6da58f9cad9ed85de0eefa6f1182cf87a10b38f8ccdd1f515ff87793b55454a969529a16ae7de318bf
6
+ metadata.gz: 785ac2065ce023d8df20a518b6d5a38d480774667e1150e460f4ebcbc7d99fa905478952def2381a9aca8c924ba336c0609c8f6b88073c346f9da34b063dabd2
7
+ data.tar.gz: 4c1b536c86c41e6ec4501c2b7f06184a62fc1418b0423c538f08631b73eb8042428cc7a94ed3654d8c215d09f516b53feb282e03e19796317d5e99dbb9ef28a5
data/CHANGELOG.md ADDED
@@ -0,0 +1,68 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ### [1.0.16](https://github.com/eliottvincent/bay/compare/v1.0.15...v1.0.16) (2021-02-23)
6
+
7
+ ### Bug Fixes
8
+
9
+ - Rework footer's elements sizing ([638970b](https://github.com/eliottvincent/bay/commit/638970bf93ee6567f05cbcd92037bc92cebc3550)), closes [#2](https://github.com/eliottvincent/bay/issues/2)
10
+
11
+ ### [1.0.15](https://github.com/eliottvincent/bay/compare/v1.0.14...v1.0.15) (2020-12-21)
12
+
13
+ ### Features
14
+
15
+ - Add Dribbble to supported "follow" list items
16
+
17
+ ### Bug Fixes
18
+
19
+ - Fix `remote_theme` value in configuration (for GitHub Pages)
20
+
21
+ ### [1.0.14](https://github.com/eliottvincent/bay/compare/v1.0.13...v1.0.14) (2020-09-02)
22
+
23
+ ### Bug Fixes
24
+
25
+ - Fix WeChat widget not moving anymore
26
+
27
+ ### [1.0.13](https://github.com/eliottvincent/bay/compare/v1.0.12...v1.0.13) (2020-08-12)
28
+
29
+ ### Bug Fixes
30
+
31
+ - Update dependencies
32
+
33
+ ### [1.0.12](https://github.com/eliottvincent/bay/compare/v1.0.11...v1.0.12) (2020-08-05)
34
+
35
+ ### Bug Fixes
36
+
37
+ - Make sure menu doesn't disappear ([ff45445](https://github.com/eliottvincent/bay/commit/ff45445761314a9b4a9b1e53f04c040ab2b62e3f)), closes [#1](https://github.com/eliottvincent/bay/issues/1)
38
+ - Fix WeChat widget not moving anymore
39
+
40
+ ### [1.0.11](https://github.com/eliottvincent/bay/compare/v1.0.10...v1.0.11) (2020-08-01)
41
+
42
+ ### Bug Fixes
43
+
44
+ - Fix work item spacing
45
+ - Year displayed in footer is now dynamic
46
+
47
+ ### [1.0.10](https://github.com/eliottvincent/bay/compare/v1.0.9...v1.0.10) (2019-10-31)
48
+
49
+ ### Bug Fixes
50
+
51
+ - Add GA
52
+
53
+ ### [1.0.9](https://github.com/eliottvincent/bay/compare/v1.0.8...v1.0.9) (2019-10-28)
54
+
55
+ ### Bug Fixes
56
+
57
+ - Render WeChat widget only if necessary
58
+
59
+ ### [1.0.8](https://github.com/eliottvincent/bay/compare/v1.0.7...v1.0.8) (2019-10-27)
60
+
61
+ ### Bug Fixes
62
+
63
+ - Update configuration to support GitHub Pages deployment
64
+ - Load assets through absolute path
65
+
66
+ ### 1.0.7 (2019-10-27)
67
+
68
+ Initial version.
@@ -1,53 +1,54 @@
1
1
  <footer class="site-footer">
2
2
  <div class="wrapper">
3
3
  <div class="footer-col-wrapper">
4
- <div class="footer-col footer-col-1 social-links">
4
+ <div class="footer-col footer-col-1">
5
5
  <h4>CONTACT</h4>
6
6
 
7
- {% for contact in site.footer.contact %}
7
+ <div class="social-links">
8
+ {% for contact in site.footer.contact %}
9
+ <div class="social-link contact-links">
8
10
 
9
- {% assign contact_icon_path = "/assets/img/icons/" | append: contact.name | downcase | append: ".png" | absolute_url %}
10
- <img
11
- src="{{ contact_icon_path }}"
12
- alt="{{ contact.name | downcase }}"
13
- />
14
- <a href="{{ contact.link }}" id="{{ contact.name | downcase }}-link">
15
- {% if contact.value and contact.value != "" and contact.value != nil %}
16
- {{ contact.value }}
17
- {% else %}
18
- {{ contact.name }}
19
- {% endif %}
20
- </a>
21
- <br />
11
+ {% assign contact_icon_path = "/assets/img/icons/" | append: contact.name | downcase | append: ".png" | absolute_url %}
12
+ <img
13
+ src="{{ contact_icon_path }}"
14
+ alt="{{ contact.name | downcase }}"
15
+ />
16
+ <a href="{{ contact.link }}" id="{{ contact.name | downcase }}-link">
17
+ {% if contact.value and contact.value != "" and contact.value != nil %}
18
+ {{ contact.value }}
19
+ {% else %}
20
+ {{ contact.name }}
21
+ {% endif %}
22
+ </a>
23
+ </div>
22
24
 
23
- {% endfor %}
25
+ {% endfor %}
26
+ </div>
24
27
  </div>
25
28
 
26
- <div class="footer-col footer-col-2 social-links">
29
+ <div class="footer-col footer-col-2">
27
30
  <h4>FOLLOW</h4>
28
31
 
29
- {% for follow in site.footer.follow %}
30
- <span class="wrap-link">
31
-
32
- {% assign follow_icon_path = "/assets/img/icons/" | append: follow.name | downcase | append: ".png" | absolute_url %}
33
- <img
34
- src="{{ follow_icon_path }}"
35
- alt="{{ follow.name | downcase }}"
36
- />
37
- <a href="{{ follow.link }}">
38
- {% if follow.value and follow.value != "" and follow.value != nil %}
39
- {{ follow.value }}
40
- {% else %}
41
- {{ follow.name }}
42
- {% endif %}
43
- </a>
44
- </span>
32
+ <div class="social-links follow-links">
33
+ {% for follow in site.footer.follow %}
34
+ <div class="social-link">
45
35
 
46
- {% assign mod = forloop.index | modulo: 2 %} {% if mod == 0 %}
47
- <br />
48
- {% endif %}
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>
49
49
 
50
- {% endfor %}
50
+ {% endfor %}
51
+ </div>
51
52
  </div>
52
53
 
53
54
  {% if site.footer.show_powered_by == true %}
data/_sass/_layout.scss CHANGED
@@ -132,8 +132,12 @@
132
132
  width: calc(33% - (#{$spacing-unit} / 2));
133
133
  }
134
134
 
135
+ .follow-links > .social-link {
136
+ flex: 0 50%;
137
+ }
138
+
135
139
  .powered-by {
136
- font-size: 13px;
140
+ font-size: 13px !important;
137
141
  color: $grey-color;
138
142
  }
139
143
 
data/_sass/_site.scss CHANGED
@@ -10,34 +10,37 @@
10
10
  }
11
11
  }
12
12
 
13
- .social-links {
13
+ .footer-col {
14
14
  font-size: 12px;
15
- line-height: 30px;
16
-
17
- @include media-query($on-mobile) {
18
- font-size: 14px;
19
- line-height: 38px;
20
- }
21
-
22
- img {
23
- margin-right: 3px;
24
- vertical-align: middle;
25
- margin-top: -2px;
26
- }
27
15
 
28
16
  h4 {
29
17
  margin-bottom: 0;
30
- font-size: 12px;
31
18
  margin-top: 0;
19
+ line-height: 30px;
32
20
  }
33
21
 
34
- span.wrap-link {
35
- width: 45%;
36
- float: left;
37
- display: block;
38
- margin-right: 2px;
39
- text-wrap: none;
40
- min-width: 7em;
22
+ .social-links {
23
+ display: flex;
24
+ flex-wrap: wrap;
25
+
26
+ .social-link {
27
+ display: flex;
28
+ width: 100%;
29
+ align-items: flex-start;
30
+ line-height: 16px;
31
+ margin-top: 6.5px;
32
+ margin-bottom: 10px;
33
+
34
+ a {
35
+ margin-left: 6px;
36
+ word-break: break-all;
37
+ }
38
+ }
39
+
40
+ @include media-query($on-mobile) {
41
+ font-size: 14px;
42
+ line-height: 38px;
43
+ }
41
44
  }
42
45
  }
43
46
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
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.15
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eliott Vincent
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-21 00:00:00.000000000 Z
11
+ date: 2021-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -45,6 +45,7 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
+ - CHANGELOG.md
48
49
  - LICENSE.md
49
50
  - README.md
50
51
  - _includes/draft-banner.html