diff options
| author | davidtsadler <davidtsadler@googlemail.com> | 2012-01-07 17:58:05 +0000 |
|---|---|---|
| committer | davidtsadler <davidtsadler@googlemail.com> | 2012-01-07 17:58:05 +0000 |
| commit | 5da0b65e69a4a6550f589a27a60358b0ad2e15e7 (patch) | |
| tree | 7df03d332a4c081594e0bb2f115cadc5c8efd727 /_site_build/feed | |
| parent | e323ff91ca3dd5eff0d7bf0fc78df2e3773ebd87 (diff) | |
Add feedburner url.
Diffstat (limited to '_site_build/feed')
| -rw-r--r-- | _site_build/feed/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/_site_build/feed/index.html b/_site_build/feed/index.html new file mode 100644 index 0000000..e5ef11f --- /dev/null +++ b/_site_build/feed/index.html @@ -0,0 +1,32 @@ +--- +layout: nil +--- +<?xml version="1.0" encoding="UTF-8"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>{{ site.title }}</title> + <link>{{ site.url }}</link> + <atom:link href="{{ site.url }}/rss.xml" rel="self" type="application/rss+xml" /> + <description>{{ site.description }}</description> + <copyright>Copyright {{ site.copyright_year }} by {{ site.author }}. All Rights Reserved.</copyright> + {% if site.email %} + <managingEditor>{{ site.email }} ({{ site.author }})</managingEditor> + <webMaster>{{ site.email }} ({{ site.author }})</webMaster> + {% endif %} + <pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z"}}</pubDate> + <lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate> + <ttl>1440</ttl> + {% for post in site.posts limit:site.max_recent_posts %} + <item> + <title>{{ post.title }}</title> + <link>{{ site.url }}{{ post.url }}</link> + <guid isPermaLink="true">{{ site.url}}{{ post.url}}</guid> + <pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate> + {% if site.email %} + <author>{{ site.email }} ({{ site.author }})</author> + {% endif %} + <description>{{ post.content | text_excerpt | xml_escape }}</description> + </item> + {% endfor %} + </channel> +</rss> |
