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.
- checksums.yaml +4 -4
- metadata +1 -2
- data/search.json +0 -36
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af30c302bcf50fae1383a74f61613dc3726292676d0cec2fab01e0d70219bd15
|
4
|
+
data.tar.gz: e112fc85ae75e903f15942681485fca1bb86c9abf39e7c0da76aec06e05ffbdd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
-
|