| --- | |
| --- | |
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <rss version="2.0"> | |
| <channel> | |
| <title>Bazel Blog</title> | |
| <link>http://bazel.io</link> | |
| <description>Fast, correct builds.</description> | |
| {% for post in site.categories.blog limit:10 %} | |
| <item> | |
| <title>{{ post.title }}</title> | |
| <link>{{ post.url }}</link> | |
| <description>{{ post.content | xml_escape }}</description> | |
| <pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate> | |
| </item> | |
| {% endfor %} | |
| </channel> | |
| </rss> |