more clearly mark the original post as historic
[web.git] / ralf / _includes / post-feed.html
1 {% for post in include.posts limit:12 %}
2   <entry>
3     <title>{{ post.title | xml_escape }}</title>
4     <link href="{{ post.url | prepend: site.baseurl | prepend: site.url }}" />
5     <updated>{{ post.date | date_to_xmlschema }}</updated>
6     <id>{{ post.url | prepend: site.baseurl | prepend: site.url }}</id>
7     {% for cat in post.categories %}
8         <category term="{{ cat }}" label="{{ cat | capitalize }}"/>
9     {% endfor %}
10     <content type="html">
11         {% capture content %}
12             {{ post.content }}
13         {% endcapture %}
14         {{ content | xml_escape }}
15     </content>
16   </entry>
17 {% endfor %}