jekyll-squirrel-theme 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +16 -0
- data/LICENSE.md +22 -0
- data/README.md +50 -0
- data/jekyll-squirrel-theme.gemspec +50 -0
- metadata +231 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 755d197c0b1d53eb4182e0dde35f423ea0cc33085f441e0dbc2fcbbcbbdaf32d
|
4
|
+
data.tar.gz: 77ad884d0ab982bf0de1f835d3a70ac781a0f3f0f49ce7fc577a384886414c2d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e1866fc00d32b5016fa449eef658144e76b49adee2f12771c773ba920417e38e2cc0d54f0f04c46da5aa08f0c3fae0595a0deeaabef87ff630e96449aa6ed5ce
|
7
|
+
data.tar.gz: d6bcca88f0848d0054789953ed2ebb97c5323dad5708312eba909cf69b819e9974869be28339877353f5791239e97783e3ee828d5dd4d8711f5fc7cfb2195279
|
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
gemspec
|
3
|
+
|
4
|
+
group :jekyll_plugins do
|
5
|
+
gem "premonition", "4.0.1" # Admonitions
|
6
|
+
gem "jekyll-spaceship", "0.10.2"
|
7
|
+
gem "jekyll-glossary_tooltip", "1.5.0"
|
8
|
+
gem "jekyll-sass-converter", "3.0.0"
|
9
|
+
gem "jekyll-seo-tag", "2.8.0"
|
10
|
+
gem "jekyll-sitemap", "1.4.0"
|
11
|
+
gem "jekyll-toc", "0.19.0"
|
12
|
+
gem "jekyll-figure", "0.2.0"
|
13
|
+
gem "jekyll-paginate-v2", "3.0.0"
|
14
|
+
end
|
15
|
+
|
16
|
+
Bundler.require(:default, :jekyll_plugins)
|
data/LICENSE.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2020 Lokalise team, Ilya Bodrov
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
20
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
21
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
22
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# squirrel-theme
|
2
|
+
|
3
|
+
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
|
4
|
+
|
5
|
+
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
6
|
+
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your Jekyll site's `Gemfile`:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem "jekyll-squirrel-theme"
|
15
|
+
```
|
16
|
+
|
17
|
+
And add this line to your Jekyll site's `_config.yml`:
|
18
|
+
|
19
|
+
```yaml
|
20
|
+
theme: jekyll-squirrel-theme
|
21
|
+
```
|
22
|
+
|
23
|
+
And then execute:
|
24
|
+
|
25
|
+
$ bundle
|
26
|
+
|
27
|
+
Or install it yourself as:
|
28
|
+
|
29
|
+
$ gem install squirrel-theme
|
30
|
+
|
31
|
+
## Usage
|
32
|
+
|
33
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/squirrel-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
|
38
|
+
|
39
|
+
## Development
|
40
|
+
|
41
|
+
To set up your environment to develop this theme, run `bundle install`.
|
42
|
+
|
43
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
44
|
+
|
45
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
46
|
+
To add a custom directory to your theme-gem, please edit the regexp in `squirrel-theme.gemspec` accordingly.
|
47
|
+
|
48
|
+
## License
|
49
|
+
|
50
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require File.expand_path('./lib/jekyll-squirrel-theme/version.rb', __dir__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'jekyll-squirrel-theme'
|
5
|
+
spec.version = JekyllSquirrelTheme::VERSION
|
6
|
+
spec.authors = ['Nyki Anderson']
|
7
|
+
spec.email = ['nyki@the-programming-squirrel.com']
|
8
|
+
|
9
|
+
spec.summary = "A modern, content-focused Jekyll theme tailored for The Programming Squirrel, featuring playful yet professional design elements and seamless integration for blog-centric websites."
|
10
|
+
spec.description = <<-DESC
|
11
|
+
The jekyll-squirrel-theme is a versatile, highly customizable theme designed for The Programming Squirrel. It is crafted to provide an exceptional user experience, emphasizing content readability and accessibility while reflecting the brand's unique personality.
|
12
|
+
|
13
|
+
### Key Features:
|
14
|
+
- **Custom Branding**: Incorporates The Programming Squirrel’s signature colors, typography (Montserrat, Open Sans, Playfair Display), and playful aesthetic.
|
15
|
+
- **Light and Dark Modes**: Includes responsive and accessible light and dark themes with a seamless toggle feature.
|
16
|
+
- **Blog-Centric Design**: Optimized for showcasing articles, tutorials, and other written content with structured layouts and beautiful typography.
|
17
|
+
- **Responsive Layout**: Fully responsive and mobile-friendly, ensuring the site looks great on all devices.
|
18
|
+
- **Reusable Components**: Includes pre-styled cards, buttons, forms, and other reusable UI elements for consistency across the site.
|
19
|
+
- **SEO Optimized**: Built-in SEO features to enhance search engine visibility and performance.
|
20
|
+
- **Developer-Friendly**: Easy-to-extend theme architecture with clear documentation and customizable options.
|
21
|
+
|
22
|
+
This theme is perfect for tech enthusiasts, educators, and content creators who value clean design, functionality, and a touch of whimsy in their websites.
|
23
|
+
DESC
|
24
|
+
spec.homepage = "https://github.com/The-Programming-Squirrel/jekyll-squirrel-theme"
|
25
|
+
spec.license = 'MIT'
|
26
|
+
spec.platform = Gem::Platform::RUBY
|
27
|
+
spec.required_ruby_version = '~> 2.5.0'
|
28
|
+
|
29
|
+
spec.files = Dir["{_includes,_layouts,_posts,_sass,assets}/**/*"] + ['LICENSE.md', 'README.md', 'CHANGELOG.md', 'Gemfile', 'jekyll-squirrel-theme.gemspec']
|
30
|
+
|
31
|
+
|
32
|
+
spec.require_paths = ['jekyll-squirrel-theme']
|
33
|
+
|
34
|
+
spec.add_runtime_dependency 'jekyll', '~> 3.8'
|
35
|
+
|
36
|
+
spec.add_dependency 'jekyll-spaceship', '~> 0.10.2'
|
37
|
+
spec.add_dependency 'jekyll-glossary_tooltip', '~> 1.5.0'
|
38
|
+
spec.add_dependency 'jekyll-sass-converter', '~> 3.0.0'
|
39
|
+
spec.add_dependency 'jekyll-seo-tag', '~> 2.8.0'
|
40
|
+
spec.add_dependency 'jekyll-sitemap', '~> 1.4.0'
|
41
|
+
spec.add_dependency 'jekyll-toc', '~> 0.19.0'
|
42
|
+
spec.add_dependency 'jekyll-figure', '~> 0.2.0'
|
43
|
+
spec.add_dependency 'jekyll-paginate-v2', '~> 3.0.0'
|
44
|
+
|
45
|
+
spec.add_development_dependency 'bundler'
|
46
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
47
|
+
spec.add_development_dependency 'rspec', '~> 3.9'
|
48
|
+
|
49
|
+
spec.metadata['plugin_type'] = "theme"
|
50
|
+
end
|
metadata
ADDED
@@ -0,0 +1,231 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-squirrel-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nyki Anderson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-01-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-spaceship
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.10.2
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.10.2
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-glossary_tooltip
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.5.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.5.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jekyll-sass-converter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.0.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.0.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-seo-tag
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 2.8.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.8.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: jekyll-sitemap
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 1.4.0
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 1.4.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: jekyll-toc
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.19.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.19.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: jekyll-figure
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.2.0
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.2.0
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: jekyll-paginate-v2
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 3.0.0
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 3.0.0
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: bundler
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rake
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '13.0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '13.0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: rspec
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '3.9'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '3.9'
|
181
|
+
description: |
|
182
|
+
The jekyll-squirrel-theme is a versatile, highly customizable theme designed for The Programming Squirrel. It is crafted to provide an exceptional user experience, emphasizing content readability and accessibility while reflecting the brand's unique personality.
|
183
|
+
|
184
|
+
### Key Features:
|
185
|
+
- **Custom Branding**: Incorporates The Programming Squirrel’s signature colors, typography (Montserrat, Open Sans, Playfair Display), and playful aesthetic.
|
186
|
+
- **Light and Dark Modes**: Includes responsive and accessible light and dark themes with a seamless toggle feature.
|
187
|
+
- **Blog-Centric Design**: Optimized for showcasing articles, tutorials, and other written content with structured layouts and beautiful typography.
|
188
|
+
- **Responsive Layout**: Fully responsive and mobile-friendly, ensuring the site looks great on all devices.
|
189
|
+
- **Reusable Components**: Includes pre-styled cards, buttons, forms, and other reusable UI elements for consistency across the site.
|
190
|
+
- **SEO Optimized**: Built-in SEO features to enhance search engine visibility and performance.
|
191
|
+
- **Developer-Friendly**: Easy-to-extend theme architecture with clear documentation and customizable options.
|
192
|
+
|
193
|
+
This theme is perfect for tech enthusiasts, educators, and content creators who value clean design, functionality, and a touch of whimsy in their websites.
|
194
|
+
email:
|
195
|
+
- nyki@the-programming-squirrel.com
|
196
|
+
executables: []
|
197
|
+
extensions: []
|
198
|
+
extra_rdoc_files: []
|
199
|
+
files:
|
200
|
+
- CHANGELOG.md
|
201
|
+
- Gemfile
|
202
|
+
- LICENSE.md
|
203
|
+
- README.md
|
204
|
+
- jekyll-squirrel-theme.gemspec
|
205
|
+
homepage: https://github.com/The-Programming-Squirrel/jekyll-squirrel-theme
|
206
|
+
licenses:
|
207
|
+
- MIT
|
208
|
+
metadata:
|
209
|
+
plugin_type: theme
|
210
|
+
post_install_message:
|
211
|
+
rdoc_options: []
|
212
|
+
require_paths:
|
213
|
+
- jekyll-squirrel-theme
|
214
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
215
|
+
requirements:
|
216
|
+
- - "~>"
|
217
|
+
- !ruby/object:Gem::Version
|
218
|
+
version: 2.5.0
|
219
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
220
|
+
requirements:
|
221
|
+
- - ">="
|
222
|
+
- !ruby/object:Gem::Version
|
223
|
+
version: '0'
|
224
|
+
requirements: []
|
225
|
+
rubygems_version: 3.0.3.1
|
226
|
+
signing_key:
|
227
|
+
specification_version: 4
|
228
|
+
summary: A modern, content-focused Jekyll theme tailored for The Programming Squirrel,
|
229
|
+
featuring playful yet professional design elements and seamless integration for
|
230
|
+
blog-centric websites.
|
231
|
+
test_files: []
|