creek-jekyll-theme 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f5bef234714787722e8a5f047d0bcc31535f5dafa9fdcd8177dbfed46f6d92a
4
- data.tar.gz: 72938cdf0ac10d105051f3bf3677890f4f393d147fe5e7e7a79146067dc71afb
3
+ metadata.gz: 7d3b0e2deca07cda0fcd0c02d5bd3c930cde5baff42c5bdb213c4ab47d733e8d
4
+ data.tar.gz: 51017213d228f0c676c269475cf445bfa2cf44daaead1b73fbb06674250f3aab
5
5
  SHA512:
6
- metadata.gz: c8a297b88a5749798615224015cab0f2c4b532e45c6f941521b0702a39814f7af6d5e19cbebabd23a270e74014e65a238d1bac557ac533c8a3771c60bdb6370a
7
- data.tar.gz: 9406c298bc2fb542d49364b88929f4e738d65a4a916f11d2353e8043e346399b5aafc130dae86c6b12ade8da27181fb2a37b41a163e99dff6d0e318101726ed5
6
+ metadata.gz: e9cc6b141f7f05ff00ceb676a990995a8a5fe84d55e16602e307c292133ea88161125dc9a6ddda222349906513c23680c2b54f57aa93ac1325b388eca61895d5
7
+ data.tar.gz: fdd0fbbd2cc0838d6acc1515f8f70a6e7009c98e6f845a055b7cd8f9737cd16f8822b7cb5b75464b74de33e5794be20b5b71cf5e57faca3d7c4458580d4fdcc3
data/README.md CHANGED
@@ -58,18 +58,22 @@ The theme is available as open source under the terms of the [MIT License](https
58
58
 
59
59
  Manual process for now. Automation covered by [issue 1](https://github.com/creek-service/creek-jekyll-theme/issues/1)
60
60
 
61
- 1. Update version number in the [gemspec](creek-jekyll-theme.gemspec).
62
- 2. Commit & push
61
+ 1. Delete previous built versions:
62
+ ```shell
63
+ rm -f creek-jekyll-theme-*.gem
64
+ ```
65
+ 2. Update version number in the [gemspec](creek-jekyll-theme.gemspec).
66
+ 3. Commit & push
63
67
  ```shell
64
68
  git add -A
65
69
  git commit -m "Bump release version"
66
70
  git push
67
71
  ```
68
- 3. Build the gem:
72
+ 4. Build the gem:
69
73
  ```shell
70
74
  gem build creek-jekyll-theme.gemspec
71
75
  ```
72
- 4. Release the gem:
76
+ 5. Release the gem:
73
77
  ```shell
74
78
  gem push creek-jekyll-theme-*.gem
75
79
  ```
data/_config.yml ADDED
@@ -0,0 +1,306 @@
1
+ # Welcome to Jekyll!
2
+ #
3
+ # This config file is meant for settings that affect your entire site, values
4
+ # which you are expected to set up once and rarely need to edit after that.
5
+ # For technical reasons, this file is *NOT* reloaded automatically when you use
6
+ # `jekyll serve`. If you change this file, please restart the server process.
7
+
8
+ # Note: the _config.yml and _data/ files in the theme are not picked up by repos using the theme.
9
+ # Requires: https://github.com/github/pages-gem/pull/855
10
+
11
+ # remote_theme : "creek-service/creek-service.github.io"
12
+ minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
13
+
14
+ # Site Settings
15
+ locale : "en-US"
16
+ title : "Creek Service"
17
+ title_separator : "-"
18
+ name : # &name is a YAML anchor which can be *referenced later
19
+ description : # Used in SEO
20
+ url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
21
+ # baseurl : # the subpath of your site, e.g. "/blog"
22
+ repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
23
+ teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
24
+ logo : "/assets/images/creek-logo.png" # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
25
+ masthead_title : "Write business logic" # overrides the website title displayed in the masthead, use " " for no title
26
+ subtitle : "Not boilerplate" # custom site tagline that appears below site title in masthead
27
+ # breadcrumbs : false # true, false (default)
28
+ words_per_minute : 200
29
+ comments:
30
+ provider : # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom"
31
+ disqus:
32
+ shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
33
+ discourse:
34
+ server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
35
+ facebook:
36
+ # https://developers.facebook.com/docs/plugins/comments
37
+ appid :
38
+ num_posts : # 5 (default)
39
+ colorscheme : # "light" (default), "dark"
40
+ utterances:
41
+ theme : # "github-light" (default), "github-dark"
42
+ issue_term : # "pathname" (default)
43
+ giscus:
44
+ repo_id : # Shown during giscus setup at https://giscus.app
45
+ category_name : # Full text name of the category
46
+ category_id : # Shown during giscus setup at https://giscus.app
47
+ discussion_term : # "pathname" (default), "url", "title", "og:title"
48
+ reactions_enabled : # '1' for enabled (default), '0' for disabled
49
+ theme : # "light" (default), "dark", "dark_dimmed", "transparent_dark", "preferred_color_scheme"
50
+ staticman:
51
+ branch : # "master"
52
+ endpoint : # "https://{your Staticman v3 API}/v3/entry/github/"
53
+ reCaptcha:
54
+ siteKey :
55
+ secret :
56
+ atom_feed:
57
+ path : # blank (default) uses feed.xml
58
+ hide : # true, false (default)
59
+ search : # true, false (default)
60
+ search_full_content : # true, false (default)
61
+ search_provider : # lunr (default), algolia, google
62
+ lunr:
63
+ search_within_pages : # true, false (default)
64
+ algolia:
65
+ application_id : # YOUR_APPLICATION_ID
66
+ index_name : # YOUR_INDEX_NAME
67
+ search_only_api_key : # YOUR_SEARCH_ONLY_API_KEY
68
+ powered_by : # true (default), false
69
+ google:
70
+ search_engine_id : # YOUR_SEARCH_ENGINE_ID
71
+ instant_search : # false (default), true
72
+ # SEO Related
73
+ google_site_verification :
74
+ bing_site_verification :
75
+ naver_site_verification :
76
+ yandex_site_verification :
77
+ baidu_site_verification :
78
+
79
+ # Social Sharing
80
+ twitter:
81
+ username :
82
+ facebook:
83
+ username :
84
+ app_id :
85
+ publisher :
86
+ og_image : "/assets/images/creek-logo.png" # Open Graph/Twitter default site image
87
+ # For specifying social profiles
88
+ # - https://developers.google.com/structured-data/customize/social-profiles
89
+ social:
90
+ type : # Person or Organization (defaults to Person)
91
+ name : # If the user or organization name differs from the site's name
92
+ links: # An array of links to social media profiles
93
+
94
+ # Analytics
95
+ analytics:
96
+ provider : "google" # false (default), "google", "google-universal", "google-gtag", "custom"
97
+ google:
98
+ tracking_id : "G-CZC5Z8YNH8"
99
+ anonymize_ip : # true, false (default)
100
+
101
+
102
+ # Site Author
103
+ author:
104
+ name : "Andy Coates"
105
+ avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
106
+ bio : "Software engineer with a passion for building working, scalable, systems"
107
+ location : "UK"
108
+ email :
109
+ links:
110
+ - label: "Email"
111
+ icon: "fas fa-fw fa-envelope-square"
112
+ # url: "mailto:your.name@email.com"
113
+ - label: "Website"
114
+ icon: "fas fa-fw fa-link"
115
+ # url: "https://your-website.com"
116
+ - label: "Twitter"
117
+ icon: "fab fa-fw fa-twitter-square"
118
+ # url: "https://twitter.com/"
119
+ - label: "Facebook"
120
+ icon: "fab fa-fw fa-facebook-square"
121
+ # url: "https://facebook.com/"
122
+ - label: "GitHub"
123
+ icon: "fab fa-fw fa-github"
124
+ # url: "https://github.com/"
125
+ - label: "Instagram"
126
+ icon: "fab fa-fw fa-instagram"
127
+ # url: "https://instagram.com/"
128
+
129
+ # Site Footer
130
+ footer:
131
+ links:
132
+ - label: "Twitter"
133
+ icon: "fab fa-fw fa-twitter-square"
134
+ # url:
135
+ - label: "Facebook"
136
+ icon: "fab fa-fw fa-facebook-square"
137
+ # url:
138
+ - label: "GitHub"
139
+ icon: "fab fa-fw fa-github"
140
+ url: "https://github.com/creek-service"
141
+ - label: "GitLab"
142
+ icon: "fab fa-fw fa-gitlab"
143
+ # url:
144
+ - label: "Bitbucket"
145
+ icon: "fab fa-fw fa-bitbucket"
146
+ # url:
147
+ - label: "Instagram"
148
+ icon: "fab fa-fw fa-instagram"
149
+ # url:
150
+
151
+
152
+ # Reading Files
153
+ include:
154
+ - .htaccess
155
+ - _pages
156
+ exclude:
157
+ - "*.sublime-project"
158
+ - "*.sublime-workspace"
159
+ - vendor
160
+ - .asset-cache
161
+ - .bundle
162
+ - .jekyll-assets-cache
163
+ - .sass-cache
164
+ - assets/js/plugins
165
+ - assets/js/_main.js
166
+ - assets/js/vendor
167
+ - Capfile
168
+ - CHANGELOG
169
+ - config
170
+ - Gemfile
171
+ - Gruntfile.js
172
+ - gulpfile.js
173
+ - LICENSE
174
+ - log
175
+ - node_modules
176
+ - package.json
177
+ - package-lock.json
178
+ - Rakefile
179
+ - README
180
+ - tmp
181
+ - /docs
182
+ keep_files:
183
+ - .git
184
+ - .svn
185
+ encoding: "UTF-8"
186
+ markdown_ext: "markdown,mkdown,mkdn,mkd,md"
187
+
188
+
189
+ # Conversion
190
+ markdown: kramdown
191
+ highlighter: rouge
192
+ lsi: false
193
+ excerpt_separator: "\n\n"
194
+ incremental: false
195
+
196
+
197
+ # Markdown Processing
198
+ kramdown:
199
+ input: GFM
200
+ hard_wrap: false
201
+ auto_ids: true
202
+ footnote_nr: 1
203
+ entity_output: as_char
204
+ toc_levels: 1..6
205
+ smart_quotes: lsquo,rsquo,ldquo,rdquo
206
+ enable_coderay: false
207
+
208
+ # Defaults
209
+ defaults:
210
+ # _posts
211
+ - scope:
212
+ path: ""
213
+ type: posts
214
+ values:
215
+ layout: single
216
+ author_profile: true
217
+ read_time: true
218
+ comments: false # true
219
+ share: true
220
+ related: false # true
221
+ # _pages
222
+ - scope:
223
+ path: "_pages"
224
+ type: pages
225
+ values:
226
+ layout: single
227
+ author_profile: false
228
+ # _docs
229
+ - scope:
230
+ path: ""
231
+ type: docs
232
+ values:
233
+ layout: single
234
+ read_time: false
235
+ author_profile: false
236
+ share: false
237
+ comments: false
238
+ sidebar:
239
+ nav: "docs"
240
+
241
+ # Sass/SCSS
242
+ sass:
243
+ sass_dir: _sass
244
+ style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
245
+
246
+
247
+ # Outputting
248
+ permalink: /:categories/:title/
249
+ paginate: 5 # amount of posts to show
250
+ paginate_path: /page:num/
251
+ timezone: "Europe/London" # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
252
+
253
+
254
+ # Plugins (previously gems:)
255
+ plugins:
256
+ - jekyll-paginate
257
+ - jekyll-sitemap
258
+ - jekyll-gist
259
+ - jekyll-feed
260
+ - jekyll-include-cache
261
+
262
+ # mimic GitHub Pages with --safe
263
+ whitelist:
264
+ - jekyll-paginate
265
+ - jekyll-sitemap
266
+ - jekyll-gist
267
+ - jekyll-feed
268
+ - jekyll-include-cache
269
+
270
+
271
+ # Archives
272
+ # Type
273
+ # - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
274
+ # - Jekyll Archives plugin archive pages ~> type: jekyll-archives
275
+ # Path (examples)
276
+ # - Archive page should exist at path when using Liquid method or you can
277
+ # expect broken links (especially with breadcrumbs enabled)
278
+ # - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
279
+ # - <base_path>/categories/my-awesome-category/index.html ~> path: /categories/
280
+ # - <base_path>/my-awesome-category/index.html ~> path: /
281
+ category_archive:
282
+ type: liquid
283
+ path: /categories/
284
+ tag_archive:
285
+ type: liquid
286
+ path: /tags/
287
+ # https://github.com/jekyll/jekyll-archives
288
+ # jekyll-archives:
289
+ # enabled:
290
+ # - categories
291
+ # - tags
292
+ # layouts:
293
+ # category: archive-taxonomy
294
+ # tag: archive-taxonomy
295
+ # permalinks:
296
+ # category: /categories/:name/
297
+ # tag: /tags/:name/
298
+
299
+
300
+ # HTML Compression
301
+ # - https://jch.penibelst.de/
302
+ compress_html:
303
+ clippings: all
304
+ ignore:
305
+ envs: development
306
+
data/_pages/404.html ADDED
@@ -0,0 +1,26 @@
1
+ ---
2
+ permalink: /404.html
3
+ layout: default
4
+ ---
5
+
6
+ <style type="text/css" media="screen">
7
+ .container {
8
+ margin: 10px auto;
9
+ max-width: 600px;
10
+ text-align: center;
11
+ }
12
+ h1 {
13
+ margin: 30px 0;
14
+ font-size: 4em;
15
+ line-height: 1;
16
+ letter-spacing: -1px;
17
+ }
18
+ </style>
19
+
20
+ <div class="container">
21
+ <h1>404</h1>
22
+
23
+ <p><strong>This is not the page you are looking for...</strong></p>
24
+ <p>The requested page could not be found.</p>
25
+ <p>Please check your URL or head to the <a href="https://creek-service.github.io">landing page</a></p>
26
+ </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: creek-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Creek Service - Big Andy Coates
@@ -100,6 +100,20 @@ dependencies:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
102
  version: '0.1'
103
+ - !ruby/object:Gem::Dependency
104
+ name: jekyll-algolia
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '1.7'
110
+ type: :runtime
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: '1.7'
103
117
  - !ruby/object:Gem::Dependency
104
118
  name: bundler
105
119
  requirement: !ruby/object:Gem::Requirement
@@ -137,8 +151,7 @@ extra_rdoc_files: []
137
151
  files:
138
152
  - LICENSE.txt
139
153
  - README.md
140
- - _data/README.md
141
- - _data/navigation.yml
154
+ - _config.yml
142
155
  - _data/navigation/docs.yml
143
156
  - _data/navigation/main.yml
144
157
  - _data/ui-text.yml
@@ -212,6 +225,7 @@ files:
212
225
  - _layouts/splash.html
213
226
  - _layouts/tag.html
214
227
  - _layouts/tags.html
228
+ - _pages/404.html
215
229
  - _sass/minimal-mistakes.scss
216
230
  - _sass/minimal-mistakes/_animations.scss
217
231
  - _sass/minimal-mistakes/_archive.scss
data/_data/README.md DELETED
@@ -1,3 +0,0 @@
1
- Note: files in here will NOT be available when the theme is used as a GitHub pages remote theme :(
2
-
3
- See: https://github.com/github/pages-gem/pull/855
data/_data/navigation.yml DELETED
@@ -1,68 +0,0 @@
1
- # main links
2
- main:
3
- - title: "Quick-Start Guide"
4
- url: /docs/quick-start-guide/
5
- - title: "About"
6
- url: /about/
7
- - title: "Sample Collections"
8
- url: /collection-archive/
9
- - title: "Terms &amp; Privacy Policy"
10
- url: /terms/
11
-
12
-
13
- # documentation links
14
- docs:
15
- - title: Getting Started
16
- children:
17
- - title: "Quick-Start Guide"
18
- url: /docs/quick-start-guide/
19
- - title: "Structure"
20
- url: /docs/structure/
21
- - title: "Installation"
22
- url: /docs/installation/
23
- - title: "Upgrading"
24
- url: /docs/upgrading/
25
- - title: Customization
26
- children:
27
- - title: "Configuration"
28
- url: /docs/configuration/
29
- - title: "Overriding Theme Defaults"
30
- url: /docs/overriding-theme-defaults/
31
- - title: "Navigation"
32
- url: /docs/navigation/
33
- - title: "UI Text"
34
- url: /docs/ui-text/
35
- - title: "Authors"
36
- url: /docs/authors/
37
- - title: "Layouts"
38
- url: /docs/layouts/
39
- - title: Content
40
- children:
41
- - title: "Working with Posts"
42
- url: /docs/posts/
43
- - title: "Working with Pages"
44
- url: /docs/pages/
45
- - title: "Working with Collections"
46
- url: /docs/collections/
47
- - title: "Helpers"
48
- url: /docs/helpers/
49
- - title: "Utility Classes"
50
- url: /docs/utility-classes/
51
- - title: Extras
52
- children:
53
- - title: "Stylesheets"
54
- url: /docs/stylesheets/
55
- - title: "JavaScript"
56
- url: /docs/javascript/
57
- - title: Meta
58
- children:
59
- - title: "History"
60
- url: /docs/history/
61
- - title: "Contributing"
62
- url: /docs/contributing/
63
- - title: "Old 2.2 Docs"
64
- url: /docs/docs-2-2/
65
- - title: "License"
66
- url: /docs/license/
67
- - title: "Terms &amp; Privacy Policy"
68
- url: /terms/