fenton-jekyll-boilerplate 0.0.3 → 0.0.4

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 (3) hide show
  1. checksums.yaml +4 -4
  2. metadata +1 -2
  3. data/search.json +0 -36
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8a2c828a5f914d7e9e56e8245a39a2b77f44e3f22924f7cf0919ae62b005acf
4
- data.tar.gz: 7e78f2f84bfcc15c4784aeabe255e04b4a8643bdfb83ac8c9fc7aacdd90de83c
3
+ metadata.gz: af30c302bcf50fae1383a74f61613dc3726292676d0cec2fab01e0d70219bd15
4
+ data.tar.gz: e112fc85ae75e903f15942681485fca1bb86c9abf39e7c0da76aec06e05ffbdd
5
5
  SHA512:
6
- metadata.gz: 1ac5c044c8156b95777ce7851a020eaeb72c7dc929769f05d911b301718889866bcad742da1dfa92cafe3184fa527b462ceb59f65dcd0161742b09d3d4f3bd1a
7
- data.tar.gz: a826ee42744b3bddc4e1ceda2335b413586fe407d42c08ef3cfcbedd03fb8bf80f50ca8e02187f68d3addb353320f97a99bf709d002ca1b15da7331b1021e3bc
6
+ metadata.gz: 8fbf9ad896fdd6cd5040abaaab5f635d9907e7ffec5e03908daae431b2c8f5ca61681930b5a00040158e456eadf1364ea9f3f6bf76e6276c5cf3cf4d3cb95c48
7
+ data.tar.gz: 76eb029b5839ffb4c5f334ae32a8b0b0e3e2fc79253595e468eb75fc597825474b2b172a95484b8f55952e943458999ac0ea28fd3e6321ecb0003f7d8d98c3ad
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fenton-jekyll-boilerplate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Fenton
@@ -96,7 +96,6 @@ files:
96
96
  - assets/svg/down.svg
97
97
  - favicon.ico
98
98
  - robots.txt
99
- - search.json
100
99
  - sitemap.xml
101
100
  homepage: https://jekyll.stevefenton.co.uk/
102
101
  licenses:
data/search.json DELETED
@@ -1,36 +0,0 @@
1
- ---
2
- layout: null
3
- ---
4
- {%- assign pages = site.pages | where: 'nav-search', 'true' %}
5
- {%- assign posts = site.posts | where: 'nav-search', 'true' %}
6
- {%- assign authors = site.authors | where: 'nav-search', 'true' %}
7
- [
8
- {% for page in pages %}{
9
- "title" : "{{ page.title | escape }}",
10
- "category" : "{{ page.category }}",
11
- "tags" : "{{ page.tags | join: ' ' }} {{page.keywords}}",
12
- "url" : "{{ site.baseurl }}{{ page.url }}",
13
- "date" : "{{ page.date }}"
14
- }{%- unless forloop.last %},{% endunless %}
15
- {%- endfor %}
16
- {%- if authors.size > 0 %},{% endif %}
17
- {%- for author in authors %}{
18
- "title" : "{{ author.name | escape }}",
19
- "category" : "{{ author.category }}",
20
- "tags" : "{{ page.tags | join: ' ' }} {{page.keywords}}",
21
- "url" : "{{ site.baseurl }}{{ author.url }}",
22
- "date" : "{{ author.date }}"
23
- }{%- unless forloop.last %},{% endunless %}
24
- {%- endfor %}
25
- {%- if posts.size > 0 %},{% endif %}
26
- {%- for post in posts %}{
27
- "title" : "{{ post.title | escape }}",
28
- "category" : "{{ post.category }}",
29
- "tags" : "{{ page.tags | join: ' ' }} {{page.keywords}}",
30
- "url" : "{{ site.baseurl }}{{ post.url }}",
31
- "date" : "{{ post.date }}"
32
- }
33
- {%- unless forloop.last %},{% endunless %}
34
- {%- endfor %}
35
- ]
36
-