--- --- {{ site.name | xml_escape }} - Journal Feed A journal feed built for Fedica to cross-post, Mastodon flavoured with hashtags{% comment %} See https://bmannconsulting.com/notes/fedica/ for cross-posting rules {% endcomment %} {{ site.url }} {{ site.time | date_to_rfc822 }} {% assign sortedblog = site.journals | sort: 'date' | reverse %} {% for post in sortedblog limit:20 %} Boris Mann {% comment %} Capture: we loop through all of the tags and make a list of hashtags separated by spaces {% endcomment %} {% capture taglist %}{% for tag in post.tags %} #{{ tag }}{% endfor %}{% endcapture %} {% if post.excerpt %} {% assign description = post.excerpt | markdownify | append: taglist %} {% else %} {% assign description = post.content | append: taglist %} {% endif %} {{ description | xml_escape | replace: 'src="/', 'src="https://bmannconsulting.com/' | replace: 'href="/', 'href="https://bmannconsulting.com/' }} {% if post.link %} {{ post.link | xml_escape }} {% else %} {{ site.url }}{{ post.url }} {% endif %} {% comment %} somewhere we need to parse out all the image tags and add them as enclosures {% endcomment %} {{ post.date | date_to_rfc822 }} https://bmannconsulting.com{{ post.url }} {% endfor %}