The bmannconsulting.com website

feeeedddss

Changed files
+5 -11
_pages
+4 -3
_pages/feeds.md
···
permalink: /feeds/
---
-
* Subscribe to this site for longer form blog posts <a href="{{ '/blog.xml' | relative_link }}">bmannconsulting.com/blog.xml</a>
-
* Personal blog <https://blog.bmannconsulting.com/feed.xml>
-
* Mastodon accounts can be subscribed to as an RSS feed <https://cosocial.ca/@boris.rss>
+
* Journals are most active, with micro-blog sized updates referencing Note updates or interesting asides <a href="{{ '/journal.xml' | relative_link }}">bmannconsulting.com/journal.xml</a>
+
* Occasional long form blog posts <a href="{{ '/blog.xml' | relative_link }}">bmannconsulting.com/blog.xml</a>
+
* Personal blog, short updates <https://blog.bmannconsulting.com/feed.xml>
+
* Mastodon accounts can be subscribed to as an RSS feed <https://cosocial.ca/@boris.rss> (mirrors personal blog content)
+1 -8
journal.xml
···
<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 %}
+
{% for post in sortedblog limit:50 %}
<item>
{% if site.name %}
<dc:creator>{{ site.name | xml_escape }}</dc:creator>
···
<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>