23 lines
779 B
XML
23 lines
779 B
XML
---
|
|
layout: null
|
|
permalink: /feed-zh.xml
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>{{ site.title }} - 中文摘要</title>
|
|
<link href="{{ '/feed-zh.xml' | absolute_url }}" rel="self"/>
|
|
<link href="{{ '/' | absolute_url }}"/>
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
<id>{{ '/' | absolute_url }}</id>
|
|
{% assign zh_posts = site.posts | where: "lang", "zh" %}
|
|
{% for post in zh_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>
|