The bmannconsulting.com website
at archivetrim 1.4 kB view raw
1--- 2--- 3<?xml version="1.0" encoding="UTF-8"?> 4<rss version="2.0" 5 xmlns:atom="http://www.w3.org/2005/Atom" 6 xmlns:dc="http://purl.org/dc/elements/1.1/" 7 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" 8> 9 <channel> 10 <title>{{ site.name | xml_escape }} - Journal Feed</title> 11 <description>{{ site.description | xml_escape }}</description> 12 <link>{{ site.url }}</link> 13 <atom:link href="{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" /> 14 <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate> 15 {% assign sortedblog = site.journals | sort: 'date' | reverse %} 16 {% for post in sortedblog limit:20 %} 17 <item> 18 <dc:creator>Boris Mann</dc:creator> 19 {% if post.excerpt %} 20 {% assign description = post.excerpt | markdownify %} 21 {% else %} 22 {% assign description = post.content %} 23 {% endif %} 24 <description>{{ description | xml_escape | replace: 'src=&quot;/', 'src=&quot;https://bmannconsulting.com/' | replace: 'href=&quot;/', 'href=&quot;https://bmannconsulting.com/' }}</description> 25 {% if post.link %} 26 <link>{{ post.link | xml_escape }}</link> 27 {% else %} 28 <link>{{ site.url }}{{ post.url }}</link> 29 {% endif %} 30 <pubDate>{{ post.date | date_to_rfc822 }}</pubDate> 31 <guid isPermaLink="true">https://bmannconsulting.com{{ post.url }}</guid> 32 </item> 33 {% endfor %} 34 </channel> 35</rss>