jekyll-98 0.1.0 → 0.2.0
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/README.md +1 -25
- data/_sass/jekyll-98/_home.scss +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24c9cb89a4851e9a04265ec8aecbf7d010bf49d0c988a7a213ae622a4d233ebb
|
|
4
|
+
data.tar.gz: 2b5b0f4b04199d690fbae4b49522a4fd2b868e611ed3cd10d26b5a5ead69f578
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e1c33b7106794f9aa6d1ccca373baa966eb417bcc1be0b9d435f0350bd878b4e2da4d8b18e10eb165fc5e069dc268e23be47cbcbef35602d5aa8070d437db59
|
|
7
|
+
data.tar.gz: a3f14c42450877609c2d6ec83bfbe31cbd6dcf3a3a6d57e5f4a7a447da4cfe086397748124db97f263be3adab874f1b1d188e2c6e7c9f8deb3906dd423fd0b94
|
data/README.md
CHANGED
|
@@ -40,36 +40,12 @@ Using the legacy "deploy from branch" option will not break the site, but it wil
|
|
|
40
40
|
|
|
41
41
|
### Manual installation
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
in your blog root folder, create a directory `_themes`
|
|
46
|
-
|
|
47
|
-
`cd` into `_themes` and clone this repo into it
|
|
48
|
-
|
|
49
|
-
Add this line to your Jekyll site's `Gemfile`:
|
|
50
|
-
|
|
51
|
-
```ruby
|
|
52
|
-
gem "jekyll-98", :path => "_themes"
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
And add this line to your Jekyll site's `_config.yml`:
|
|
43
|
+
`jekyll-98` is now available as a standard `gem` theme. You can install it to your site with `bundle add jekyll-98` and add this line to your Jekyll site's `_config.yml`:
|
|
56
44
|
|
|
57
45
|
```yaml
|
|
58
46
|
theme: jekyll-98
|
|
59
47
|
```
|
|
60
48
|
|
|
61
|
-
And then execute:
|
|
62
|
-
|
|
63
|
-
```sh
|
|
64
|
-
bundle
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
Or install it yourself as:
|
|
68
|
-
|
|
69
|
-
```sh
|
|
70
|
-
gem install jekyll-98
|
|
71
|
-
```
|
|
72
|
-
|
|
73
49
|
## Usage
|
|
74
50
|
|
|
75
51
|
Theme should provide sane defaults, but there's lots to customize. For full configuration options, refer to [_config.yml](https://github.com/queenkjuul/jekyll-98/blob/main/_config.yml). Add whatever settings you want *to your site's _config.yml*.
|
data/_sass/jekyll-98/_home.scss
CHANGED