jekyll-theme-gruv-poole 1.0.0 → 1.0.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/README.md +9 -6
- data/_includes/head.html +4 -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: 5d62b1e4438155d8e2e064ccd61733e50bee6d2cb8d7fc8b228ad970d069eec9
|
4
|
+
data.tar.gz: 86d11738e846973164faae77bed6ca27c93841e4ce1b7c285dacbd31f486c2a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 457fd84503fc37089fefd99720c5189e1561e508ec8322e1b01555dc976624374c921a1e49457a0b4ac8f26e7ddc9a0815bad7edd2eb3e73dd046828b83ab231
|
7
|
+
data.tar.gz: b1b68af4cedc75a3a8f723cfecb101481e4bb3718d6ff3f0a776f9b35c110545e5894b7fede9a0f03434cc220e38f59cb8bfde874a3bcfd48e53d1bd88103bdf
|
data/README.md
CHANGED
@@ -31,6 +31,8 @@ Have questions or suggestions? Feel free to [open an issue on GitHub](https://gi
|
|
31
31
|
<img src="demo-assets/dark1.png" alt="Gruv Poole home dark mode" width="430">
|
32
32
|
<img src="demo-assets/dark2.png" alt="Gruv Poole content dark mode" width="430">
|
33
33
|
|
34
|
+
> Dark mode is enabled automatically via [CSS media query](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) dependent on what the user's system preference is set as.
|
35
|
+
|
34
36
|
### Light Mode
|
35
37
|
<img src="demo-assets/light1.png" alt="Gruv Poole home light mode" width="430">
|
36
38
|
<img src="demo-assets/light2.png" alt="Gruv Poole content light mode" width="430">
|
@@ -38,7 +40,7 @@ Have questions or suggestions? Feel free to [open an issue on GitHub](https://gi
|
|
38
40
|
|
39
41
|
## Usage
|
40
42
|
|
41
|
-
### Install as a Gem
|
43
|
+
### Option 1: Install as a Gem
|
42
44
|
|
43
45
|
The Gruv Poole theme was intended to be distributed as a [Ruby Gem for Jekyll sites](https://jekyllrb.com/docs/themes/#understanding-gem-based-themes).
|
44
46
|
In your Jekyll site's code, add the following to your Gemfile:
|
@@ -46,20 +48,18 @@ In your Jekyll site's code, add the following to your Gemfile:
|
|
46
48
|
|
47
49
|
Add the following line to your site's `_config.yml`:
|
48
50
|
```yaml
|
49
|
-
theme: gruv-poole
|
51
|
+
theme: jekyll-theme-gruv-poole
|
50
52
|
```
|
51
53
|
|
52
54
|
Ensure that you have your `_config.yml` with the data necessary to build the theme (see [Configuration Options](#configuration-options)) and then run `bundle` and `jekyll s`.
|
53
55
|
|
54
|
-
### Hacking on theme code
|
56
|
+
### Option 2: Hacking on theme code
|
55
57
|
|
56
58
|
Feel free to tweak this theme to your liking. Pay attention to the `.ruby-version` file for what version of Ruby to use-- [rbenv](https://github.com/rbenv/rbenv) is recommended for Ruby development.
|
57
59
|
|
58
60
|
Once Ruby version is set, then run `bundle install` and then `bundle exec jekyll s` to build and serve the demo theme site. Please note this theme's [Configuration Options](#configuration-options)).
|
59
61
|
Open <http://localhost:4000> in your browser, and voilà.
|
60
62
|
|
61
|
-
For further resources (e.g. hosting free site on GitHub Pages, etc) see the original [Poole theme's documentation](https://github.com/poole/poole).
|
62
|
-
|
63
63
|
## Theme Overview
|
64
64
|
|
65
65
|
### Site structure (HTML)
|
@@ -148,8 +148,11 @@ If you want to opt out of this behavior (e.g. you want to use an SEO plugin), th
|
|
148
148
|
```yaml
|
149
149
|
disable_simple_seo: true
|
150
150
|
```
|
151
|
-
---
|
152
151
|
|
153
152
|
## Licenses
|
154
153
|
|
155
154
|
Open sourced under the [MIT license](LICENSE.md). Fonts are both licensed under the [SIL Open Font License](https://openfontlicense.org/). Their licenses can be found [here](assets/fonts/body/LICENSE.md) and [here](assets/fonts/code/LICENSE.md).
|
155
|
+
|
156
|
+
---
|
157
|
+
|
158
|
+
For further resources (e.g. hosting free site on GitHub Pages, etc) see the original [Poole theme's documentation](https://github.com/poole/poole).
|
data/_includes/head.html
CHANGED
@@ -21,7 +21,10 @@
|
|
21
21
|
<link rel="stylesheet" href="{{ 'assets/main.css' | relative_url }}">
|
22
22
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ '/assets/apple-touch-icon-precomposed.png' | relative_url }}">
|
23
23
|
<link rel="shortcut icon" href="{{ '/assets/favicon.ico' | relative_url }}">
|
24
|
-
|
24
|
+
|
25
|
+
{% if site.rss_feed %}
|
26
|
+
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.rss_feed | relative_url }}">
|
27
|
+
{% endif %}
|
25
28
|
|
26
29
|
{% if jekyll.environment == 'production' and site.google_analytics %}
|
27
30
|
{% include google-analytics.html %}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-gruv-poole
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamison Griffith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|