mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-06 14:52:26 +08:00
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
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>
|
||
<description>{{.SubTitle}}</description>
|
||
<atom:link href="https://{{.Domain}}/rss.html" rel="self" />
|
||
<atom:link href="{{.FeedrURL}}" rel="hub" />
|
||
<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}}<p>本文链接:<a href="https://{{$.Domain}}/post/{{.Slug}}.html">https://{{$.Domain}}/post/{{.Slug}}.html</a>,<a href="https://{{$.Domain}}/post/{{.Slug}}.html#comments">参与评论 »</a></p>]]>
|
||
</description>
|
||
</item>
|
||
{{end}}
|
||
</channel>
|
||
</rss>
|