1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:10:04 +08:00

Fix type in feed

This commit is contained in:
wsdjeg 2019-10-13 23:33:58 +08:00
parent d2b5da7af2
commit 31418a8f27
2 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,6 @@ layout: null
<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
{% else %}
<dc:creator>{{ site.author.name | xml_escape }}</dc:creator>
{% else %}
<dc:creator>{{ site.author.name | xml_escape }}</dc:creator>
{% endif %}
{% if post.excerpt %}
<description>{{ post.excerpt | xml_escape }}</description>

View File

@ -20,6 +20,8 @@ layout: null
<title>{{ post.title | xml_escape }}</title>
{% if post.author.name %}
<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
{% else %}
<dc:creator>{{ site.author.name | xml_escape }}</dc:creator>
{% endif %}
{% if post.excerpt %}
<description>{{ post.excerpt | xml_escape }}</description>