bay_jekyll_theme 1.2.0 → 1.2.2
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 +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 +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a1b649a995a43e6be6f0008e9258c0eadc5960117546152a62702371fd481c3
|
|
4
|
+
data.tar.gz: 653cfe5e14d4ca5ab52cfff53cd0fbea75c6c3a3023f1ca1657278230bb6a2e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7061a16b191f084fecaff2e9f125c4d7a713e25d15f876814297ffeacdf3cebd73811530827251fb06eff121c77507cde3a2e46f47a8252a49c207e847dddc09
|
|
7
|
+
data.tar.gz: f9cf286c1abf030112c494f66a178d0feeb0c0745e245ad492ad4accfee377deaf227fbd63e7b6c30a22131e17bf2e55c77f6c49e6dcc5b4fa6040fb8d13f6cc
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eliott Vincent
|
|
@@ -101,15 +101,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
requirements:
|
|
102
102
|
- - ">="
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version:
|
|
104
|
+
version: 3.3.0
|
|
105
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
107
107
|
- - ">="
|
|
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
|
-
summary: A simple and minimal Jekyll theme
|
|
114
|
+
summary: A simple and minimal Jekyll theme.
|
|
115
115
|
test_files: []
|