diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 21 |
1 files changed, 18 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> |