--- --- { "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.png", {% if site.author %} "author": { "name": {{ site.author | jsonify }} }, {% endif %} "items": [ {% assign sortedjournal = site.journals | sort: 'date' | reverse %} {% for post in sortedjournal limit:25 %} { "id": "{{ post.url | prepend: site.baseurl | prepend: site.url }}", "url": "{{ post.url | prepend: site.baseurl | prepend: site.url }}", {% if post.link %} "external_url": "{{ post.link }}", {% endif %} {% comment %}"title": {{ post.title | jsonify }}, {% endcomment %} "content_html": {{ post.content | jsonify }}, "date_published": "{{ post.date | date_to_rfc822 }}" }{% unless forloop.last %},{% endunless %} {% endfor %} ] }