bay_jekyll_theme 1.2.0 → 1.2.2

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: c6126e1d9ecf39f80ffdbd6892d2d757ff98b8ffbc15c0634eb3b8672c919653
4
- data.tar.gz: 982f910ffd341ae9dd86ed9643f7ee0a6a199fe8759bb1b666967877e5f3f2be
3
+ metadata.gz: 5a1b649a995a43e6be6f0008e9258c0eadc5960117546152a62702371fd481c3
4
+ data.tar.gz: 653cfe5e14d4ca5ab52cfff53cd0fbea75c6c3a3023f1ca1657278230bb6a2e5
5
5
  SHA512:
6
- metadata.gz: ec6db41428214649fa2466b119acaa2ae79307b21e4aba5db44af4640c3055363bd6b1a4ab5f4211c99ecca1657e567ea1ea2ce7cedfd3a817bb0381f89e10fa
7
- data.tar.gz: '0698f8f66111b2d134d4398e3a4461dcb355d6bec298af26d11b072b38bd248adb48b98b19d8689b67a3b0235fae58e57e8e94c70c298d61fc8f49f0c200a284'
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. [Development instructions](#development)
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
- ### Header
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
- ### Footer
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
- ### Home page
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 mysite!
128
+ Welcome to my site!
128
129
  </p>
129
130
  ```
130
131
 
131
- ### Blog page
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
@@ -67,6 +67,7 @@
67
67
 
68
68
  .post-pic {
69
69
  border: #999 1px solid;
70
+ border-radius: 4px;
70
71
  }
71
72
 
72
73
  .magnify {
data/_sass/_site.scss CHANGED
@@ -5,6 +5,7 @@
5
5
  float: right;
6
6
  width: 202px;
7
7
  border: #ccc 1px solid;
8
+ border-radius: 3px;
8
9
  margin-left: 20px;
9
10
 
10
11
  @include mixins.media-query(variables.$on-mobile) {
data/assets/css/main.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- # Only the main Sass file needs front matter (the dashes are enough)
2
+ # Only the main Sass file needs Front Matter
3
3
  ---
4
4
 
5
5
  @charset "utf-8";
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.0
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: '0'
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.23
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: []