{% for cat in post.categories %}
<category term="{{ cat }}" label="{{ cat | capitalize }}"/>
{% endfor %}
- <content type="html">{{ post.content | xml_escape }}</content>
+ <content type="html">
+ {% capture content %}
+ {{ post.excerpt }}
+ <p><a href="{{ post.url }}">Read more...</a></p>
+ {% endcapture %}
+ {{ content | xml_escape }}
+ </content>
</entry>
{% endfor %}