-
Notifications
You must be signed in to change notification settings - Fork 6
/
feed.json
42 lines (41 loc) · 1.44 KB
/
feed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
layout: null
---
{
"version": "https://jsonfeed.org/version/1.1",
"title": "{{ site.title }}",
"home_page_url": "{{ site.url }}",
"feed_url": "{{ site.url }}{{ site.feeds.json }}",
"description": "{{ site.description }}",
"icon": "{{ site.url }}{{ site.logo }}",
"favicon": "{{ site.url }}/favicon.ico",
"expired": false,
"language": "en-US",
"author": {
"name": "{{ site.author.name }}",
"url": "{{ site.url }}",
"avatar": "{{ site.url }}{{ site.author.avatar }}"
},
"items": [
{% for post in site.posts limit: site.feeds.limit %}
{
"id": "{{ post.url | absolute_url | sha1 }}",
"url": "{{ site.url }}{{ post.url }}",
"title": {{ post.title | jsonify }},
"date_published": "{{ post.date | date_to_xmlschema }}",
{% if post.date-updated %}
"date_modified": "{{ post.date-updated | date_to_xmlschema }}",
{% else %}
"date_modified": "{{ post.date | date_to_xmlschema }}",
{% endif %}
"author": {
"name": "{{ site.author.name }}",
"url": "{{ site.url }}",
"avatar": "{{ site.url }}{{ site.author.avatar }}"
},
"summary": {{ post.excerpt | jsonify }},
"content_html": {{ post.content | jsonify }}
}{% if forloop.last == false %},{% endif %}
{% endfor %}
]
}