creek-jekyll-theme 0.1.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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/_config.yml +306 -0
- data/_data/README.md +3 -0
- data/_data/navigation/docs.yml +56 -0
- data/_data/navigation/main.yml +12 -0
- data/_data/navigation.yml +68 -0
- data/_data/ui-text.yml +2024 -0
- data/_includes/analytics-providers/custom.html +3 -0
- data/_includes/analytics-providers/google-gtag.html +9 -0
- data/_includes/analytics-providers/google-universal.html +7 -0
- data/_includes/analytics-providers/google.html +14 -0
- data/_includes/analytics.html +14 -0
- data/_includes/archive-single.html +30 -0
- data/_includes/author-profile-custom-links.html +7 -0
- data/_includes/author-profile.html +246 -0
- data/_includes/breadcrumbs.html +40 -0
- data/_includes/browser-upgrade.html +2 -0
- data/_includes/category-list.html +19 -0
- data/_includes/comment.html +22 -0
- data/_includes/comments-providers/custom.html +3 -0
- data/_includes/comments-providers/custom_scripts.html +3 -0
- data/_includes/comments-providers/discourse.html +13 -0
- data/_includes/comments-providers/disqus.html +15 -0
- data/_includes/comments-providers/facebook.html +8 -0
- data/_includes/comments-providers/giscus.html +24 -0
- data/_includes/comments-providers/scripts.html +20 -0
- data/_includes/comments-providers/staticman.html +40 -0
- data/_includes/comments-providers/staticman_v2.html +40 -0
- data/_includes/comments-providers/utterances.html +21 -0
- data/_includes/comments.html +180 -0
- data/_includes/documents-collection.html +15 -0
- data/_includes/feature_row +41 -0
- data/_includes/figure +9 -0
- data/_includes/footer/custom.html +3 -0
- data/_includes/footer.html +21 -0
- data/_includes/gallery +35 -0
- data/_includes/group-by-array +47 -0
- data/_includes/head/custom.html +15 -0
- data/_includes/head.html +25 -0
- data/_includes/masthead.html +35 -0
- data/_includes/nav_list +26 -0
- data/_includes/page__date.html +6 -0
- data/_includes/page__hero.html +55 -0
- data/_includes/page__hero_video.html +2 -0
- data/_includes/page__meta.html +31 -0
- data/_includes/page__taxonomy.html +7 -0
- data/_includes/paginator.html +69 -0
- data/_includes/post_pagination.html +14 -0
- data/_includes/posts-category.html +5 -0
- data/_includes/posts-tag.html +5 -0
- data/_includes/scripts.html +28 -0
- data/_includes/search/algolia-search-scripts.html +62 -0
- data/_includes/search/google-search-scripts.html +30 -0
- data/_includes/search/lunr-search-scripts.html +10 -0
- data/_includes/search/search_form.html +26 -0
- data/_includes/seo.html +158 -0
- data/_includes/sidebar.html +19 -0
- data/_includes/skip-links.html +7 -0
- data/_includes/social-share.html +11 -0
- data/_includes/tag-list.html +19 -0
- data/_includes/toc +7 -0
- data/_includes/toc.html +182 -0
- data/_includes/video +24 -0
- data/_layouts/archive-taxonomy.html +29 -0
- data/_layouts/archive.html +26 -0
- data/_layouts/categories.html +43 -0
- data/_layouts/category.html +10 -0
- data/_layouts/collection.html +10 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +41 -0
- data/_layouts/home.html +22 -0
- data/_layouts/posts.html +30 -0
- data/_layouts/search.html +42 -0
- data/_layouts/single.html +95 -0
- data/_layouts/splash.html +22 -0
- data/_layouts/tag.html +10 -0
- data/_layouts/tags.html +43 -0
- data/_pages/404.html +26 -0
- data/_sass/minimal-mistakes/_animations.scss +21 -0
- data/_sass/minimal-mistakes/_archive.scss +463 -0
- data/_sass/minimal-mistakes/_base.scss +339 -0
- data/_sass/minimal-mistakes/_buttons.scss +97 -0
- data/_sass/minimal-mistakes/_footer.scss +85 -0
- data/_sass/minimal-mistakes/_forms.scss +359 -0
- data/_sass/minimal-mistakes/_masthead.scss +93 -0
- data/_sass/minimal-mistakes/_mixins.scss +92 -0
- data/_sass/minimal-mistakes/_navigation.scss +573 -0
- data/_sass/minimal-mistakes/_notices.scss +109 -0
- data/_sass/minimal-mistakes/_page.scss +578 -0
- data/_sass/minimal-mistakes/_print.scss +252 -0
- data/_sass/minimal-mistakes/_reset.scss +187 -0
- data/_sass/minimal-mistakes/_search.scss +132 -0
- data/_sass/minimal-mistakes/_sidebar.scss +353 -0
- data/_sass/minimal-mistakes/_syntax.scss +324 -0
- data/_sass/minimal-mistakes/_tables.scss +39 -0
- data/_sass/minimal-mistakes/_utilities.scss +593 -0
- data/_sass/minimal-mistakes/_variables.scss +173 -0
- data/_sass/minimal-mistakes/skins/_air.scss +23 -0
- data/_sass/minimal-mistakes/skins/_aqua.scss +34 -0
- data/_sass/minimal-mistakes/skins/_contrast.scss +52 -0
- data/_sass/minimal-mistakes/skins/_dark.scss +30 -0
- data/_sass/minimal-mistakes/skins/_default.scss +5 -0
- data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
- data/_sass/minimal-mistakes/skins/_mint.scss +24 -0
- data/_sass/minimal-mistakes/skins/_neon.scss +63 -0
- data/_sass/minimal-mistakes/skins/_plum.scss +70 -0
- data/_sass/minimal-mistakes/skins/_sunrise.scss +49 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
- data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
- data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
- data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
- data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
- data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
- data/_sass/minimal-mistakes.scss +40 -0
- data/assets/css/main.scss +9 -0
- data/assets/images/android-chrome-192x192.png +0 -0
- data/assets/images/android-chrome-512x512.png +0 -0
- data/assets/images/apple-touch-icon.png +0 -0
- data/assets/images/browserconfig.xml +9 -0
- data/assets/images/creek-logo.png +0 -0
- data/assets/images/favicon-16x16.png +0 -0
- data/assets/images/favicon-32x32.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/mstile-150x150.png +0 -0
- data/assets/images/safari-pinned-tab.svg +48 -0
- data/assets/images/site-under-construction.png +0 -0
- data/assets/images/site.webmanifest +19 -0
- data/assets/js/_main.js +136 -0
- data/assets/js/lunr/lunr-en.js +73 -0
- data/assets/js/lunr/lunr-gr.js +526 -0
- data/assets/js/lunr/lunr-store.js +84 -0
- data/assets/js/lunr/lunr.js +3475 -0
- data/assets/js/lunr/lunr.min.js +6 -0
- data/assets/js/main.min.js +6 -0
- data/assets/js/plugins/gumshoe.js +484 -0
- data/assets/js/plugins/jquery.ba-throttle-debounce.js +252 -0
- data/assets/js/plugins/jquery.fitvids.js +82 -0
- data/assets/js/plugins/jquery.greedy-navigation.js +127 -0
- data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
- data/assets/js/plugins/smooth-scroll.js +650 -0
- data/assets/js/vendor/jquery/jquery-3.6.0.js +10881 -0
- metadata +233 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bb746786267e4775f08d9bc66543fddca036e56c255e303f3a1912b22335fa9f
|
4
|
+
data.tar.gz: e2c90fa00d8c8902aeea0beb8db6a8199b6b44113ac74fbb952b6494c72e9b41
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e49a398ab058f32f994f14db487c20061deed924614938ba816e49e3c3291463b7563bf7f99e25535c5a3bb23f2614cf2bf341e0551979ad68fdea67b3df384f
|
7
|
+
data.tar.gz: cd8d126d70fbf064270a5ea89678537c885016016c31b0132e1c89a62e29b100554cba89b1dfe5b2f3b0053f2188070d3ddf5ac024a224e39d4ca2ecd9e714a7
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2022 Big Andy
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
# creek-jekyll-theme
|
2
|
+
|
3
|
+
The Jekyll theme used by the [Creek site](https://www.creekservice.org).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your Jekyll site's `Gemfile`:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem "creek-jekyll-theme"
|
11
|
+
```
|
12
|
+
|
13
|
+
And add this line to your Jekyll site's `_config.yml`:
|
14
|
+
|
15
|
+
```yaml
|
16
|
+
theme: creek-jekyll-theme
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
```shell
|
22
|
+
$ bundle
|
23
|
+
```
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
```shell
|
28
|
+
$ gem install creek-jekyll-theme
|
29
|
+
```
|
30
|
+
## Usage
|
31
|
+
|
32
|
+
The theme is a fork of [minimal-mistakes](https://github.com/mmistakes/minimal-mistakes), with a load of shared
|
33
|
+
defaults, images, data, etc.
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/creek-service/creek-jekyll-theme.
|
38
|
+
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere
|
39
|
+
to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
|
40
|
+
|
41
|
+
## Development
|
42
|
+
|
43
|
+
To set up your environment to develop this theme, run `bundle install`.
|
44
|
+
|
45
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open
|
46
|
+
your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc.
|
47
|
+
like normal to test your theme's contents. As you make modifications to your theme and to your content,
|
48
|
+
your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
49
|
+
|
50
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
51
|
+
To add a custom directory to your theme-gem, please edit the regexp in `creek-jekyll-theme.gemspec` accordingly.
|
52
|
+
|
53
|
+
## License
|
54
|
+
|
55
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
56
|
+
|
57
|
+
## Releasing
|
58
|
+
|
59
|
+
Manual process for now. Automation covered by [issue 1](https://github.com/creek-service/creek-jekyll-theme/issues/1)
|
60
|
+
|
61
|
+
1. Update version number in the [gemspec](creek-jekyll-theme.gemspec).
|
62
|
+
2. Commit & push
|
63
|
+
```shell
|
64
|
+
git add -A
|
65
|
+
git commit -m "Bump release version"
|
66
|
+
git push
|
67
|
+
```
|
68
|
+
3. Build the gem:
|
69
|
+
```shell
|
70
|
+
gem build creek-jekyll-theme.gemspec
|
71
|
+
```
|
72
|
+
4. Release the gem:
|
73
|
+
```shell
|
74
|
+
gem push creek-jekyll-theme-*.gem
|
75
|
+
```
|
76
|
+
|
77
|
+
### Dropping a release
|
78
|
+
|
79
|
+
```shell
|
80
|
+
gem yank creek-jekyll-theme -v VERSION_TO_DROP
|
81
|
+
```
|
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/_data/README.md
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
# documentation links
|
2
|
+
- title: Getting Started
|
3
|
+
children:
|
4
|
+
- title: "Quick-Start Guide"
|
5
|
+
url: /docs/quick-start-guide/
|
6
|
+
# - title: "Structure"
|
7
|
+
# url: /docs/structure/
|
8
|
+
# - title: "Installation"
|
9
|
+
# url: /docs/installation/
|
10
|
+
# - title: "Upgrading"
|
11
|
+
# url: /docs/upgrading/
|
12
|
+
#- title: Customization
|
13
|
+
# children:
|
14
|
+
# - title: "Configuration"
|
15
|
+
# url: /docs/configuration/
|
16
|
+
# - title: "Overriding Theme Defaults"
|
17
|
+
# url: /docs/overriding-theme-defaults/
|
18
|
+
# - title: "Navigation"
|
19
|
+
# url: /docs/navigation/
|
20
|
+
# - title: "UI Text"
|
21
|
+
# url: /docs/ui-text/
|
22
|
+
# - title: "Authors"
|
23
|
+
# url: /docs/authors/
|
24
|
+
# - title: "Layouts"
|
25
|
+
# url: /docs/layouts/
|
26
|
+
#- title: Content
|
27
|
+
# children:
|
28
|
+
# - title: "Working with Posts"
|
29
|
+
# url: /docs/posts/
|
30
|
+
# - title: "Working with Pages"
|
31
|
+
# url: /docs/pages/
|
32
|
+
# - title: "Working with Collections"
|
33
|
+
# url: /docs/collections/
|
34
|
+
# - title: "Helpers"
|
35
|
+
# url: /docs/helpers/
|
36
|
+
# - title: "Utility Classes"
|
37
|
+
# url: /docs/utility-classes/
|
38
|
+
#- title: Extras
|
39
|
+
# children:
|
40
|
+
# - title: "Stylesheets"
|
41
|
+
# url: /docs/stylesheets/
|
42
|
+
# - title: "JavaScript"
|
43
|
+
# url: /docs/javascript/
|
44
|
+
- title: Meta
|
45
|
+
children:
|
46
|
+
# - title: "History"
|
47
|
+
# url: /docs/history/
|
48
|
+
# - title: "Contributing"
|
49
|
+
# url: /docs/contributing/
|
50
|
+
# - title: "Old 2.2 Docs"
|
51
|
+
# url: /docs/docs-2-2/
|
52
|
+
- title: "License"
|
53
|
+
url: /docs/license/
|
54
|
+
# - title: "Terms & Privacy Policy"
|
55
|
+
# url: /terms/
|
56
|
+
# todo
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Main masthead nav menu
|
2
|
+
- title: "Quick-Start Guide"
|
3
|
+
url: /docs/quick-start-guide/
|
4
|
+
- title: "About"
|
5
|
+
url: /about/
|
6
|
+
# todo
|
7
|
+
#- title: "Sample Posts"
|
8
|
+
# url: /year-archive/
|
9
|
+
#- title: "Sample Collections"
|
10
|
+
# url: /collection-archive/
|
11
|
+
#- title: "Terms & Privacy Policy"
|
12
|
+
# url: /terms/
|
@@ -0,0 +1,68 @@
|
|
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 & 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 & Privacy Policy"
|
68
|
+
url: /terms/
|