home · contact · privacy
Fix tests, improve templates.
[redo-blog] / processor / metadata / index.tmpl.do
index c2a9c21ec3a1847f898c5c28f0b519b5eef78b75..5befb4f20b7ffd066e80e00d9671d4c9dca895ae 100644 (file)
@@ -5,12 +5,18 @@ cat << EOF
 <!DOCTYPE html>
 <html>
 <head>
-<title>%TITLE%</title>
+<meta charset="UTF-8">
+<style type="text/css">
+h1 { font-size: 2em; }
+</style>
+<link rel="alternate" type="application/rss+xml" title="atom feed" href="feed.xml" />
+<title>%BLOG_TITLE%</title>
 </head>
 <body>
-<h1>%TITLE%</h1>
+<h1>%BLOG_TITLE%</h1>
+<p><a href="feed.xml">feed</a></p>
 <ul>
-%LIST%
+%INDEX%
 </ul>
 </body>
 </html>