Cleanup some entities in the atom feed for the onion service

This commit is contained in:
R Tyler Croy 2020-08-29 15:59:19 -07:00
parent e76285ef83
commit 382ab0e001
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
2 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
# Used for the RSS feed generator
url: 'http://brokencosohcv73p6vohqdz65vnbk5nqjuifjhepcedignejajswinad.onion/'
url: 'http://brokencosohcv73p6vohqdz65vnbk5nqjuifjhepcedignejajswinad.onion'

View File

@ -8,7 +8,7 @@ layout:
<link href="{{ site.url }}/atom.xml" rel="self"/>
<link href="{{ site.url }}"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>https://brokenco.de/</id>
<id>{{ site.url }}</id>
<author>
<name>R. Tyler Croy</name>
<email>rtyler@brokenco.de</email>
@ -17,9 +17,9 @@ layout:
{% for post in site.posts limit:20 %}
<entry>
<title>{{ post.title }}</title>
<link href="https://brokenco.de{{ post.url }}"/>
<link href="{{ site.url }}/{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>https://brokenco.de{{ post.id }}</id>
<id>{{ site.url }}/{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}