aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/block.html8
-rw-r--r--templates/cl.html21
2 files changed, 29 insertions, 0 deletions
diff --git a/templates/block.html b/templates/block.html
new file mode 100644
index 0000000..1e06b7d
--- /dev/null
+++ b/templates/block.html
@@ -0,0 +1,8 @@
+<div xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:py="http://genshi.edgewall.org/">
+<h3>${block.package} (${block._raw_version}) ${block.distributions}; urgency=${block.urgency}${block.urgency_comment}</h3>
+<pre>${Markup(block.body)}</pre>
+<p py:if="not block._no_trailer">
+ -- ${block.author} ${block._trailer_separator} ${block.date}
+</p>
+</div>
diff --git a/templates/cl.html b/templates/cl.html
new file mode 100644
index 0000000..293862f
--- /dev/null
+++ b/templates/cl.html
@@ -0,0 +1,21 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:py="http://genshi.edgewall.org/">
+ <head>
+ <title>$title</title>
+ </head>
+ <body class="index">
+ <div id="header">
+ <h1>$title</h1>
+ </div>
+
+ <py:for each="block in blocks">
+ ${markup_block(block)}
+ </py:for>
+
+ <div id="footer">
+ <hr/>
+ <p>Genrated via <a href="/cl2vcs">cl2vcs</a> -- © 2008 Guido Günther <a href="mailto:agx@sigxcpu.org">&lt;agx@sigxcpu.org&gt;</a></p>
+ </div>
+ </body>
+</html>
+