aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html21
-rw-r--r--templates/list.html7
2 files changed, 25 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html
index 8d873f9..c496873 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,3 +1,18 @@
-{% for bug in bugs %}
- <p>{{ bug.summary }}</p>
-{% endfor %} \ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html>
+ <head>
+ <title>Cherry Flavored Bugs Everywhere!</title>
+ <link rel="stylesheet" type="text/css" media="screen"
+ href="/static/style/aal.css" />
+ <link rel="stylesheet" type="text/css" media="screen"
+ href="/static/style/cfbe.css" />
+ </head>
+
+ <body>
+ <div id="logo"><p>Cherry Flavored Bugs Everywhere!</p></div>
+ <div id="header"><h1>stevelosh</h1></div>
+ {% block content %}{% endblock %}
+ </body>
+</html>
diff --git a/templates/list.html b/templates/list.html
new file mode 100644
index 0000000..ecb7099
--- /dev/null
+++ b/templates/list.html
@@ -0,0 +1,7 @@
+{% extends "base.html" %}
+
+{% block content %}
+ {% for bug in bugs %}
+ <p>{{ bug.summary }}</p>
+ {% endfor %}
+{% endblock %} \ No newline at end of file