# HG changeset patch
# User Jeff Hammel <jhammel@mozilla.com>
# Date 1380904782 25200
# Node ID 6ac606ca9ba5587388fafa0c703e447bb37df4ca
# Parent  a5b4025f24559e9978d91d3803f9db309042085e
adding a template

diff -r a5b4025f2455 -r 6ac606ca9ba5 commitwatcher/web/templates/listing.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/commitwatcher/web/templates/listing.html	Fri Oct 04 09:39:42 2013 -0700
@@ -0,0 +1,20 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+<title>${path}</title>
+</head>
+
+<body>
+<h1>${path}</h1>
+
+<a href="${src}">${src}</a>
+
+<ul>
+{{for listing in sorted(listing)}}
+  <li></li>
+  {{endfor}}
+</ul>
+
+</body>
+</html>