mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-08 07:42:27 +08:00
21 lines
746 B
XML
21 lines
746 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{.Title}}</title>
|
|
<link>https://{{.Domain}}</link>
|
|
<atom:link href="https://{{.Domain}}/rss.html" rel="self"/>
|
|
<description>{{.SubTitle}}</description>
|
|
<language>zh-CN</language>
|
|
<lastBuildDate>{{.BuildDate}}</lastBuildDate>
|
|
{{range .Artcs}}
|
|
<item>
|
|
<title>{{.Title}}</title>
|
|
<link>https://{{$.Domain}}/post/{{.Slug}}.html</link>
|
|
<comments>https://{{$.Domain}}/post/{{.Slug}}.html#comments</comments>
|
|
<guid>https://{{$.Domain}}/post/{{.Slug}}.html</guid>
|
|
<description><![CDATA[<blockquote>{{.Content}}]]></description>
|
|
</item>
|
|
{{end}}
|
|
</channel>
|
|
</rss>
|