Cleanup the URLs a wee bit more

This commit is contained in:
R Tyler Croy 2020-08-29 16:01:06 -07:00
parent 382ab0e001
commit db6e4d76c8
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@ layout:
{% for post in site.posts limit:20 %}
<entry>
<title>{{ post.title }}</title>
<link href="{{ site.url }}/{{ post.url }}"/>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}/{{ post.id }}</id>
<id>{{ site.url }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}