summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Lukin <sergej.lukin@gmail.com>2016-03-24 11:43:09 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-03-24 11:27:53 +0100
commita5e6f4df2125b10fa40f35d365e1d70d09b7de75 (patch)
tree3617934014a01e259a9f0e478a72f20176b73354
parentefd03f50552cd72abcfc67112dd2c60fdaeb9fac (diff)
downloadalpine-mksite-a5e6f4df2125b10fa40f35d365e1d70d09b7de75.tar.bz2
alpine-mksite-a5e6f4df2125b10fa40f35d365e1d70d09b7de75.tar.xz
atom.xml: fix for passing atom validation
-rwxr-xr-x_atom.template.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/_atom.template.xml b/_atom.template.xml
index f75a2b4..1198a12 100755
--- a/_atom.template.xml
+++ b/_atom.template.xml
@@ -1,14 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
- <title>{{title}}</title>
+ <title>Alpine Linux News</title>
<id>http://alpinelinux.org/atom.xml</id>
+ <link href="http://alpinelinux.org/atom.xml" rel="self" type="application/rss+xml" />
<updated>{{updated}}</updated>
{{#entries}}
<entry>
<title>{{title}}</title>
- <updated>{{updated}}</updated>
<link href="http://alpinelinux.org/posts/{{html}}"/>
+ <id>http://alpinelinux.org/posts/{{html}}</id>
+ <updated>{{updated}}</updated>
+ <author>
+ <name>{{author}}</name>
+ </author>
+ <summary>{{title}}</summary>
</entry>
{{/entries}}
</feed>