From db491029b1e47ebca8fe3a5ca43762bc9e01207f Mon Sep 17 00:00:00 2001 From: Joshua Seigler Date: Mon, 15 May 2017 23:19:37 -0400 Subject: [PATCH] add RSS feed template --- rss/dash_blog_rss.xml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 rss/dash_blog_rss.xml diff --git a/rss/dash_blog_rss.xml b/rss/dash_blog_rss.xml new file mode 100644 index 0000000..12f4a6b --- /dev/null +++ b/rss/dash_blog_rss.xml @@ -0,0 +1,29 @@ +--- +--- + + + + {{ site.name | xml_escape }} + {% if site.description %}{{ site.description | xml_escape }}{% endif %} + {{ site.url }} + + {% for post in site.posts %} + + {{ post.title | xml_escape }} + {% if post.author.name %} + {{ post.author.name | xml_escape }} + {% endif %} + + {{ post.date | date_to_rfc822 }} + {{ site.url }}{{ post.url }} + {{ site.url }}{{ post.url }} + + + {% endfor %} + +