jekyll-theme-gruv-poole 1.0.0 → 1.0.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -5
  3. data/_includes/head.html +4 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5bdb06a5dc61aad1afccc285cd7faf66af1ea76ea70a1a59f8ddf2ae6150bd0a
4
- data.tar.gz: cb38c3a8c61371e54928db184893359944a91857cc1dabd3b492acbc3856e487
3
+ metadata.gz: 639de633654fa690dc0788d71cf5674f883bfa9575180d3f7b649a5cbffac1cd
4
+ data.tar.gz: 2396db766d942d07346e0836d89f1a92041ee7af1fbcc6072bf473499a9953d6
5
5
  SHA512:
6
- metadata.gz: fe6945b16ac11dbd478ac806c7a596ba6509d4d2c7bac5388cf2e94002cd4204be2e30bbbabd507f4980135ac556b450ef723c77e1b5e80d051a9394569a62f1
7
- data.tar.gz: 8d7fc5e6ee681d6db83b088c5c54cd76330ff39a626f1cc8254aed257df5f70ae9f04e54073bab29906add971267787c8f8f24e5df8a7ff8a0c49fc21511394c
6
+ metadata.gz: b1e97082e5c54adbebd2fa066590acf4d1295d5eb9c262da92fdc06aacbc8edfd14e6e46f5756613725d736f27322d2134911a30056015d334d2dd7839e94ce1
7
+ data.tar.gz: 64efc86531dae3890e7b3ccad60da7aa4bc7e060f99dbe5c9f26a7c19f9b60351bc89ce7598453b46104b8009d37a2116e0adb38cd305b99b5290a71153043bf
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:
@@ -51,15 +53,13 @@ theme: gruv-poole
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
- <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ 'atom.xml' | relative_url }}">
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.0
4
+ version: 1.0.1
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-19 00:00:00.000000000 Z
11
+ date: 2024-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll