25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
<?xml version="1.0" encoding="<%= config.charset %>" ?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title><%= config.site_name %></title>
|
|
<link><%= config.site_url %></title>
|
|
<description><%= config.site_description %></description>
|
|
<updated><%= func.unix_time_to_atom_date(getUnixTime(new Date())) %></updated>
|
|
<id><%= config.site_url %></id>
|
|
<% for (let postID = posts.length-1; postID >= 0; postID--) { %>
|
|
<% if (posts[postID]["userID"] == userID) { %>
|
|
<% if (posts[postID]["deleted"] != true) { %>
|
|
<entry>
|
|
<title><%= posts[postID]["title"] %></title>
|
|
<link><%= config.site_url %>/post/<%= postID %></link>
|
|
<summary><![CDATA[<%- converter.makeHtml(posts[postID]["content"]) %>]]></summary>
|
|
<guid isPermaLink="true"><%= config.site_url %>/post/<%= postID %></guid>
|
|
<pubDate><%# func.unix_time_to_atom_date(posts[postID]['pubdate']) %></pubDate>
|
|
<% for (let tag_index = 0; tag_index < posts[postID]['tags'].length; tag_index++) { %>
|
|
<category><![CDATA[<%= posts[postID]['tags'][tag_index] %>]]></category>
|
|
<% } %>
|
|
</entry>
|
|
<% } %>
|
|
<% } %>
|
|
<% } %>
|
|
</feed>
|