creek-jekyll-theme 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. checksums.yaml +4 -4
  2. data/404.md +10 -0
  3. metadata +2 -5
  4. data/_pages/404.html +0 -27
  5. data/favicon.ico +0 -0
  6. data/robots.txt +0 -1
  7. data/sitemap.xml +0 -19
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3a0886228fe2ace20466eeb00cb0ecd496d5f9ec58c58f44911f8bfdd2a4d1b
4
- data.tar.gz: e898fa512dfb869ed00d56ca67c6a7c6a2aae3ae05f5c117ff58ef832c1c446a
3
+ metadata.gz: 36f694d60d5328f6dbd145d37eec4f0e8373c54708b3ca82250938c121bb7974
4
+ data.tar.gz: ba541c5a38c428b6aaf1060c7f97821a8332c9fa322341511f0daf4a1610c8d9
5
5
  SHA512:
6
- metadata.gz: 3a63c88d65848cd71399edb193e9501e204edcd8175b91fd140119148f8fed5f7e00a61338d27291b8850ad1c35fd55a983d42c4151bd7b8299ceca19e7d8162
7
- data.tar.gz: 289d105d6c10d3253d7cee943861fcff288cc1ca245781a0ed1361cacb28f8b3ef71d3fdd133d81ab08973625b191ed682177d3e1ebcaa6b8d40b94672237bd6
6
+ metadata.gz: 6b3b7920c1c259b70f3afd98945427ad6ba21fe29b32db90300039700a3fff394f2f0aff9efa5d8fc968e29e02ef9b160c33b7c50b754b4f3a3ac904cb3ae86e
7
+ data.tar.gz: bb15e6c3ebbefd6aa0c4a68feaf28bac512c2c1cb2372eda87d88ac403b871d12fe2e96cea38583038242bd73dc43a2c3d9febc1e0a312e86d27adb602db1e18
data/404.md ADDED
@@ -0,0 +1,10 @@
1
+ ---
2
+ title: "Page Not Found"
3
+ excerpt: "Page not found. Your pixels are in another canvas."
4
+ sitemap: false
5
+ permalink: /404.html
6
+ layout: single
7
+ author_profile: false
8
+ ---
9
+
10
+ Sorry, but the page you were trying to view does not exist.
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.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Creek Service - Big Andy Coates
@@ -163,6 +163,7 @@ executables: []
163
163
  extensions: []
164
164
  extra_rdoc_files: []
165
165
  files:
166
+ - 404.md
166
167
  - LICENSE
167
168
  - _config.yml
168
169
  - _data/navigation/docs.yml
@@ -238,7 +239,6 @@ files:
238
239
  - _layouts/splash.html
239
240
  - _layouts/tag.html
240
241
  - _layouts/tags.html
241
- - _pages/404.html
242
242
  - _sass/minimal-mistakes.scss
243
243
  - _sass/minimal-mistakes/_animations.scss
244
244
  - _sass/minimal-mistakes/_archive.scss
@@ -336,9 +336,6 @@ files:
336
336
  - assets/js/plugins/jquery.magnific-popup.js
337
337
  - assets/js/plugins/smooth-scroll.js
338
338
  - assets/js/vendor/jquery/jquery-3.6.0.js
339
- - favicon.ico
340
- - robots.txt
341
- - sitemap.xml
342
339
  homepage: https://github.com/creek-service/creek-jekyll-theme
343
340
  licenses:
344
341
  - MIT
data/_pages/404.html DELETED
@@ -1,27 +0,0 @@
1
- ---
2
- sitemap: false
3
- permalink: /404.html
4
- layout: single
5
- ---
6
-
7
- <style type="text/css" media="screen">
8
- .container {
9
- margin: 10px auto;
10
- max-width: 600px;
11
- text-align: center;
12
- }
13
- h1 {
14
- margin: 30px 0;
15
- font-size: 4em;
16
- line-height: 1;
17
- letter-spacing: -1px;
18
- }
19
- </style>
20
-
21
- <div class="container">
22
- <h1>404</h1>
23
-
24
- <p><strong>This is not the page you are looking for...</strong></p>
25
- <p>The requested page could not be found.</p>
26
- <p>Please check your URL or head to the <a href="https://creek-service.github.io">landing page</a></p>
27
- </div>
data/favicon.ico DELETED
Binary file
data/robots.txt DELETED
@@ -1 +0,0 @@
1
- Sitemap: https://www.creekservice.org/sitemap.xml
data/sitemap.xml DELETED
@@ -1,19 +0,0 @@
1
- ---
2
- layout: null
3
- ---
4
- <?xml version="1.0" encoding="UTF-8"?>
5
- <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
6
- {% assign pages = site.html_pages | where_exp:'doc','doc.url != "/404.html"' %}
7
- {% for page in pages %}
8
- <url>
9
- {% if page.url == '/' %}
10
- <loc>{{ page.url | replace:'/index.html','/' | absolute_url | xml_escape }}</loc>
11
- {% else %}
12
- <loc>{{ page.url | replace:'/index.html','/' | absolute_url | append: '.html' | xml_escape }}</loc>
13
- {% endif %}
14
- {% if page.last_modified_at %}
15
- <lastmod>{{ page.last_modified_at | date_to_xmlschema }}</lastmod>
16
- {% endif %}
17
- </url>
18
- {% endfor %}
19
- </urlset>