blob: 4882858fef35e11c0fa44ac84770d8932b5b22f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
@use crate::post::Post;
@use chrono::Utc;
@(posts: Vec<Post>)
<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://xeiaso.net/blog.atom</id>
<title>Xe's Blog</title>
<updated>@Utc::now().to_rfc3339()</updated>
<author>
<name>Xe Iaso</name>
<email>me@@xeiaso.net</email>
</author>
<link href="https://xeiaso.net/blog.atom" rel="self"/>
<link href="https://xeiaso.net/blog" rel="alternate"/>
<generator uri="@env!("CARGO_PKG_REPOSITORY")" version="@env!("CARGO_PKG_VERSION")">@env!("CARGO_PKG_NAME")</generator>
@for post in posts {
<entry>
<id>https://xeiaso.net/@post.link</id>
<title>@post.front_matter.title</title>
<published>@post.date.to_rfc3339()</published>
<updated>@post.date.to_rfc3339()</updated>
<content type="html" xml:base="https://xeiaso.net/@post.link"><![CDATA[@Html(post.body_html)]]></content>
<link href="https://xeiaso.net/@post.link" rel="alternate"/>
</entry>
}
</feed>
|