23 lines
781 B
XML
23 lines
781 B
XML
---
|
|
layout: null
|
|
permalink: /feed-en.xml
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>{{ site.title }} - English Digest</title>
|
|
<link href="{{ '/feed-en.xml' | absolute_url }}" rel="self"/>
|
|
<link href="{{ '/' | absolute_url }}"/>
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
<id>{{ '/' | absolute_url }}</id>
|
|
{% assign en_posts = site.posts | where: "lang", "en" %}
|
|
{% for post in en_posts limit:7 %}
|
|
<entry>
|
|
<title>{{ post.title | escape }}</title>
|
|
<link href="{{ post.url | absolute_url }}"/>
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
<id>{{ post.url | absolute_url }}</id>
|
|
<content type="html"><![CDATA[ {{ post.content }} ]]></content>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed>
|