bay_jekyll_theme 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +17 -6
- data/_sass/_post.scss +1 -0
- data/_sass/_site.scss +1 -0
- data/assets/css/main.scss +1 -1
- 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: 1377e4b38497fb091a4d61f54b3a272420a5a30a8dcda145cd1755cf88e69a0f
|
4
|
+
data.tar.gz: '0838ea3804661e26f81ed0dcea8079aa4c7dd75e199aa58b2623591a8daa7122'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f5b69b5525a1c72ab707796f5fba4c54258f7a5557298e655eb3da4086b195f8717b9d45ad0ef5ddf8f79665967255aeede702b256d15503f74f6cf494d5993
|
7
|
+
data.tar.gz: 8be989554da3da372acb0afe0ce0546a33cb3ac0de621a26081e927150acbd1e2a4d3194a7f582f1a9087590596a9b36ab413f4c8e0d9c7c8de05c4491836b45
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
### [1.2.1](https://github.com/eliottvincent/bay/compare/v1.2.0...v1.2.1) (2025-01-02)
|
6
|
+
|
7
|
+
### Improvements
|
8
|
+
|
9
|
+
- Add slight border radius to pictures
|
10
|
+
|
5
11
|
### [1.2.0](https://github.com/eliottvincent/bay/compare/v1.1.5...v1.2.0) (2025-01-02)
|
6
12
|
|
7
13
|
### Features
|
data/README.md
CHANGED
@@ -17,7 +17,8 @@ Inspired by [dangrover.com](http://dangrover.com/). Current theme used at [eliot
|
|
17
17
|
2. [Footer](#footer)
|
18
18
|
3. [Home page](#home-page)
|
19
19
|
4. [Blog page](#blog-page)
|
20
|
-
5. [
|
20
|
+
5. [GitHub Pages](#github-pages)
|
21
|
+
6. [Development instructions](#development)
|
21
22
|
|
22
23
|
|
23
24
|
### Installation
|
@@ -66,7 +67,7 @@ jekyll serve
|
|
66
67
|
|
67
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.
|
68
69
|
|
69
|
-
|
70
|
+
#### Header
|
70
71
|
Open the `_config.yml` file and add the following:
|
71
72
|
```yml
|
72
73
|
header:
|
@@ -78,7 +79,7 @@ header:
|
|
78
79
|
```
|
79
80
|
Re-run `jekyll serve` to see the header updated.
|
80
81
|
|
81
|
-
|
82
|
+
#### Footer
|
82
83
|
Open the `_config.yml` file and add the following:
|
83
84
|
```yml
|
84
85
|
footer:
|
@@ -113,7 +114,7 @@ footer:
|
|
113
114
|
```
|
114
115
|
Re-run `jekyll serve` to see the footer updated.
|
115
116
|
|
116
|
-
|
117
|
+
#### Home page
|
117
118
|
Create (or edit) the `index.markdown` file and add the following:
|
118
119
|
```yml
|
119
120
|
---
|
@@ -124,11 +125,11 @@ profile_picture:
|
|
124
125
|
---
|
125
126
|
|
126
127
|
<p>
|
127
|
-
Welcome to
|
128
|
+
Welcome to my site!
|
128
129
|
</p>
|
129
130
|
```
|
130
131
|
|
131
|
-
|
132
|
+
#### Blog page
|
132
133
|
Create `blog.markdown` file and add the following:
|
133
134
|
```yml
|
134
135
|
---
|
@@ -145,6 +146,16 @@ This is an example of a "Blog" page, displaying a list of posts.
|
|
145
146
|
Your website is ready!
|
146
147
|
|
147
148
|
|
149
|
+
### GitHub Pages
|
150
|
+
|
151
|
+
You can deploy your website to GitHub Pages, but you cannot use the 1-click GitHub Pages build and deploy system. The issue is that the Bay theme relies on Jekyll 4.3+ (which uses a more modern Sass processor), whereas the GitHub Pages build system uses an older version of Jekyll.
|
152
|
+
|
153
|
+
However, it's fairly easy to build and deploy your website with GitHub Actions, yet use GitHub Pages to host it.
|
154
|
+
|
155
|
+
Further explanations and instructions can be found on the official [Jekyll website](https://jekyllrb.com/docs/continuous-integration/github-actions/).
|
156
|
+
|
157
|
+
You can also refer to the [`.github/workflows/deploy.yml`](https://github.com/eliottvincent/bay/blob/master/.github/workflows/deploy.yml) file in this repository.
|
158
|
+
|
148
159
|
### Development
|
149
160
|
|
150
161
|
#### Run development instance (with hot-reload)
|
data/_sass/_post.scss
CHANGED
data/_sass/_site.scss
CHANGED
data/assets/css/main.scss
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bay_jekyll_theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eliott Vincent
|
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '0'
|
110
110
|
requirements: []
|
111
|
-
rubygems_version: 3.5.
|
111
|
+
rubygems_version: 3.5.22
|
112
112
|
signing_key:
|
113
113
|
specification_version: 4
|
114
114
|
summary: A simple and minimal Jekyll theme..
|