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.links.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:40 %}
18 {% if post.link %}
19
20 {
21 "id": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
22 "url": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
23 "external_url": "{{ post.link }}",
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 {% endif %}
29 {% endfor %}
30 ]
31}