The bmannconsulting.com website

journal feed

Changed files
+35
+35
journal.xml
···
+
---
+
---
+
<?xml version="1.0" encoding="UTF-8"?>
+
<rss version="2.0"
+
xmlns:atom="http://www.w3.org/2005/Atom"
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
+
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
+
>
+
<channel>
+
<title>{{ site.name | xml_escape }} - Journal Feed</title>
+
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
+
<link>{{ site.url }}</link>
+
<atom:link href="{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" />
+
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
+
{% assign feed_items 50 %}
+
{% assign sortedblog = site.journals | sort: 'date' | reverse %}
+
{% assign blogcount = 0 %}
+
{% for post in sortedblog %}
+
{% if blogcount < feed_items %}
+
<item>
+
{% if site.name %}
+
<dc:creator>{{ site.name | xml_escape }}</dc:creator>
+
{% endif %}
+
<description>{{ post.content | xml_escape }}</description>
+
<link>{{ site.url }}{{ post.url }}</link>
+
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
+
<guid isPermaLink="true">https://bmannconsulting-com.ipns.dweb.link{{ post.url }}</guid>
+
</item>
+
{% assign blogcount = blogcount | plus: 1 %}
+
{% elsif blogcount >= feed_items %}
+
{% break %}
+
{% endif %}
+
{% endfor %}
+
</channel>
+
</rss>