-
Notifications
You must be signed in to change notification settings - Fork 6
/
feed.json
22 lines (22 loc) · 832 Bytes
/
feed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"version": "https://jsonfeed.org/version/1",
"title": {{ SITENAME | jsonify }},
"home_page_url": "{{ SITEURL }}",
"feed_url": {{ (SITEURL + '/feed.json') | jsonify }},
"description": {{ DESCRIPTION | jsonify }},
"icon": "https://www.andrewheiss.com/theme/feed-icon.png",
"items": [
{% for article in collations.blog_articles %}
{
"id": {{ (SITEURL + '/' + article.url) | jsonify }},
"url": {{ (SITEURL + '/' + article.url) | jsonify }},
"title": {{ article.title | titlify | jsonify }},
"content_html": {{ article.content | pure_table | jsonify }},
"date_published": {{ article.date.isoformat() | jsonify }},
"author": {
"name": {{ AUTHOR | jsonify }}
}
},
{% endfor %}
]
}