The bmannconsulting.com website
1---
2---
3{
4 "version": "https://jsonfeed.org/version/1",
5 "title": {{ site.title | jsonify }},
6 "description": {% if site.description %}{{ site.description | jsonify }}{% endif %},
7 "home_page_url": "{{ site.url }}",
8 "feed_url": "{{ site.url }}/feed.json",
9 "favicon": "{{ site.url}}/favicon.png",
10 {% if site.author %}
11 "author": {
12 "name": {{ site.author | jsonify }}
13 },
14 {% endif %}
15 "items": [
16 {% assign sortedjournal = site.journals | sort: 'date' | reverse %}
17 {% for post in sortedjournal limit:25 %}
18 {
19 "id": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
20 "url": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
21 {% if post.link %}
22 "external_url": "{{ post.link }}",
23 {% endif %}
24 {% comment %}"title": {{ post.title | jsonify }}, {% endcomment %}
25 "content_html": {{ post.content | jsonify }},
26 "date_published": "{{ post.date | date_to_rfc822 }}"
27 }{% unless forloop.last %},{% endunless %}
28 {% endfor %}
29 ]
30}