bay_jekyll_theme 1.2.3 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 975ee45e89e5006d80c7578bb4fe77bd745a2fdf62894bd24c94531cd4df99e1
4
- data.tar.gz: 234dd4d0f14e482265dead3ea66a732e4f0ada59160f09f1afde66ec8da39980
3
+ metadata.gz: a1a9ffd37424cbd8a85690b33899cf004d0f4dc1ade37f44e063a06c78ae1f04
4
+ data.tar.gz: e40f7054dc6932a4362f32a0f072ed9daf0b027458cc2fb185f73670bc5c905c
5
5
  SHA512:
6
- metadata.gz: ebb6e08d2753e29f75100252ac37ae5828f0a844a8eee64bf7f86eb4b7c6e4a9bb5338c49711ffabce5ed25ffd1f013392b3694d7b30760b1c3c3a56d14ccd1a
7
- data.tar.gz: 69c1f2e21291ac773750e11403f6f1f9a008f64f83062b46affd72015009819af43b06a754ff47afc6f59d708a5f226d276cc318293d448d523d88dfe1413316
6
+ metadata.gz: b4c3d2a181a9c5048f424ed3dbfce67a27bb84b6f52f84aaf70e44ca2bed1d3e0772fcdd965b5914f344326bad8683f2abd96977a3de21827b622ae3e407f073
7
+ data.tar.gz: 393729c45effe97249ffc864b9317f7705717d76ee2dcc90e0105bd07dde5eebe12cfd4fe6fe92f2afdc8230eec2924b6f5054b21abf4ca209f20f83d060ba3b
data/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ### [1.2.5](https://github.com/eliottvincent/bay/compare/v1.2.4...v1.2.5) (2026-05-08)
6
+
7
+ ### Improvements
8
+
9
+ - Open links in new tab
10
+
11
+ ### [1.2.4](https://github.com/eliottvincent/bay/compare/v1.2.3...v1.2.4) (2026-04-19)
12
+
13
+ ### Improvements
14
+
15
+ - Cleanup README.md
16
+
5
17
  ### [1.2.3](https://github.com/eliottvincent/bay/compare/v1.2.2...v1.2.3) (2026-04-19)
6
18
 
7
19
  ### Improvements
data/README.md CHANGED
@@ -11,6 +11,7 @@ Inspired by [dangrover.com](http://dangrover.com/). Current theme used at [eliot
11
11
 
12
12
 
13
13
  ## Table of contents
14
+
14
15
  1. [Installation](#installation)
15
16
  2. Website sections
16
17
  1. [Header](#header)
@@ -23,7 +24,6 @@ Inspired by [dangrover.com](http://dangrover.com/). Current theme used at [eliot
23
24
 
24
25
  ### Installation
25
26
 
26
-
27
27
  The easiest solution is to [fork this repo](https://github.com/eliottvincent/bay/fork).
28
28
  If you want to start from a clean website, follow the steps below:
29
29
 
@@ -68,6 +68,7 @@ jekyll serve
68
68
  The website will look somewhat empty at first. That's normal. Follow the next instructions to complete the header and footer components, and the home and blog pages.
69
69
 
70
70
  #### Header
71
+
71
72
  Open the `_config.yml` file and add the following:
72
73
  ```yml
73
74
  header:
@@ -80,6 +81,7 @@ header:
80
81
  Re-run `jekyll serve` to see the header updated.
81
82
 
82
83
  #### Footer
84
+
83
85
  Open the `_config.yml` file and add the following:
84
86
  ```yml
85
87
  footer:
@@ -115,6 +117,7 @@ footer:
115
117
  Re-run `jekyll serve` to see the footer updated.
116
118
 
117
119
  #### Home page
120
+
118
121
  Create (or edit) the `index.markdown` file and add the following:
119
122
  ```yml
120
123
  ---
@@ -130,8 +133,9 @@ profile_picture:
130
133
  ```
131
134
 
132
135
  #### Blog page
133
- Create `blog.markdown` file and add the following:
136
+
134
137
  ```yml
138
+ Create `blog.markdown` file and add the following:
135
139
  ---
136
140
  layout: blog
137
141
  title: Blog
@@ -159,15 +163,11 @@ You can also refer to the [`.github/workflows/deploy.yml`](https://github.com/el
159
163
  ### Development
160
164
 
161
165
  #### Run development instance (with hot-reload)
166
+
162
167
  ```sh
163
168
  bundle exec jekyll serve
164
169
  ```
165
170
 
166
171
  #### Build and publish the gem
167
- ```sh
168
- gem build bay_jekyll_theme.gemspec
169
- ```
170
172
 
171
- ```sh
172
- gem push bay_jekyll_theme-1.x.x.gem
173
- ```
173
+ Simply push and tag a new version, Github Actions will handle the rest.
@@ -67,7 +67,7 @@
67
67
  src="{{ follow_icon_path }}"
68
68
  alt="{{ follow.name | downcase }}"
69
69
  />
70
- <a href="{{ follow.link }}">
70
+ <a href="{{ follow.link }}" target="_blank" rel="noopener noreferrer">
71
71
  {%- if follow.value and follow.value != "" and follow.value != nil -%}
72
72
  {{ follow.value }}
73
73
  {%- else -%}
@@ -84,7 +84,7 @@
84
84
  {% if site.footer.show_powered_by == true %}
85
85
  <div class="footer-col footer-col-3 powered-by">
86
86
  <p>
87
- powered by <a href="https://github.com/eliottvincent/bay">Bay</a> | <span id="year"></span>
87
+ powered by <a href="https://github.com/eliottvincent/bay" target="_blank" rel="noopener noreferrer">Bay</a> | <span id="year"></span>
88
88
  </p>
89
89
  </div>
90
90
  {% endif %}
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bay_jekyll_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eliott Vincent
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-05-08 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: jekyll
@@ -37,6 +38,7 @@ dependencies:
37
38
  - - "~>"
38
39
  - !ruby/object:Gem::Version
39
40
  version: '2.0'
41
+ description:
40
42
  email:
41
43
  - hello@eliottvincent.com
42
44
  executables: []
@@ -92,6 +94,7 @@ homepage: https://github.com/eliottvincent/bay
92
94
  licenses:
93
95
  - MIT
94
96
  metadata: {}
97
+ post_install_message:
95
98
  rdoc_options: []
96
99
  require_paths:
97
100
  - lib
@@ -106,7 +109,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
109
  - !ruby/object:Gem::Version
107
110
  version: '0'
108
111
  requirements: []
109
- rubygems_version: 4.0.8
112
+ rubygems_version: 3.5.22
113
+ signing_key:
110
114
  specification_version: 4
111
115
  summary: A simple and minimal Jekyll theme.
112
116
  test_files: []