link to sloonz's script
[web.git] / ralf / _includes / post-feed.html
diff --git a/ralf/_includes/post-feed.html b/ralf/_includes/post-feed.html
deleted file mode 100644 (file)
index c9b7c84..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-{% for post in include.posts limit:12 %}
-  <entry>
-    <title>{{ post.title | xml_escape }}</title>
-    <link href="{{ post.url | prepend: site.baseurl | prepend: site.url }}" />
-    <updated>{{ post.date | date_to_xmlschema }}</updated>
-    <id>{{ post.url | prepend: site.baseurl | prepend: site.url }}</id>
-    {% for cat in post.categories %}
-        <category term="{{ cat }}" label="{{ cat | capitalize }}"/>
-    {% endfor %}
-    <content type="html">
-        {% capture content %}
-            {{ post.excerpt }}
-            <p><a href="{{ post.url }}">Read more...</a></p>
-        {% endcapture %}
-        {{ content | xml_escape }}
-    </content>
-  </entry>
-{% endfor %}