From 17bd39c87dc4133d4e31ec0fd11e155f3fe209a9 Mon Sep 17 00:00:00 2001 From: Steve Losh Date: Thu, 29 Jan 2009 21:31:29 -0500 Subject: Very basic working skeleton. Gets stuff from the bug directory, renders with Jinja. --- templates/base.html | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 templates/base.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..8d873f9 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,3 @@ +{% for bug in bugs %} +

{{ bug.summary }}

+{% endfor %} \ No newline at end of file -- cgit