aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog/feed.xml
blob: 2d039368ce2c081fdd74346e29577ddeff1c7653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
---
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
  <title>Bazel Blog</title>
  <link>http://bazel.build</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>