mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
28 lines
890 B
JSON
28 lines
890 B
JSON
---
|
|
layout: none
|
|
---
|
|
{
|
|
"version": "https://jsonfeed.org/version/1",
|
|
"title": {{ site.title | jsonify }},
|
|
"description": {% if site.description %}{{ site.description | jsonify }}{% endif %},
|
|
"home_page_url": "{{ site.url }}",
|
|
"feed_url": "{{ site.url }}/feed.json",
|
|
"favicon": "{{ site.url}}/favicon.ico",
|
|
"author": {
|
|
"name": "Tom Hodson"
|
|
},
|
|
"items": [
|
|
|
|
{% for post in site.posts limit:10 %}
|
|
{% if post.draft == false or jekyll.environment == "development" %}
|
|
{
|
|
"id": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
|
|
"url": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
|
|
"title": {{ post.title | jsonify }},
|
|
"content_html": {{ post.content | jsonify }},
|
|
"date_published": "{{ post.date | date_to_rfc822 }}"
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
]
|
|
} |