-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.json
More file actions
22 lines (21 loc) · 872 Bytes
/
site.json
File metadata and controls
22 lines (21 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: null
"content" : "{{ post.content | strip_html | escape | strip_newlines }}"
"content" : "{{ post.content | expand_urls: site.url }}"
source:
- "http://jekyllsnippets.com/excluding-jsonify-your-site/"
- "https://gist.github.com/mersy/7033839"
- "https://gist.github.com/alswl/2767610"
- "https://gist.github.com/kinlane/6573061"
- "https://github.com/Shopify/liquid/wiki/Liquid-for-Designers"
- "http://jekyllrb.com/docs/templates/"
---
[
{% for post in site.posts %}{
"title" : "{{ post.title }}",
"url" : "{{ post.url }}",
"date" : "{{ post.date | date: "%B %d, %Y" }}",
"categories" : [{% if post.categories.size > 0 %}"{{ post.categories | join:'","' }}"{% endif %}],
"tags" : [{% if post.tags.size > 0 %}"{{ post.tags | join:'","' }}"{% endif %}]
}{% unless forloop.last %},{% endunless %}{% endfor %}
]