Something went wrong. Try again.
The bmannconsulting.com website
Something went wrong. Try again.
bmannconsulting.com journal.xml
1.4 kB · 35 lines
at commit 94de6376
1234567891011121314151617181920212223242526272829303132333435------<?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>{{ site.description | xml_escape }}</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 sortedblog = site.journals | sort: 'date' | reverse %} {% for post in sortedblog limit:20 %} <item> <dc:creator>Boris Mann</dc:creator> {% if post.excerpt %} {% assign description = post.excerpt | markdownify %} {% else %} {% assign description = post.content %} {% endif %} <description>{{ description | xml_escape | replace: 'src="/', 'src="https://bmannconsulting.com/' | replace: 'href="/', 'href="https://bmannconsulting.com/' }}</description> {% if post.link %} <link>{{ post.link | xml_escape }}</link> {% else %} <link>{{ site.url }}{{ post.url }}</link> {% endif %} <pubDate>{{ post.date | date_to_rfc822 }}</pubDate> <guid isPermaLink="true">https://bmannconsulting.com{{ post.url }}</guid> </item> {% endfor %} </channel></rss>