diff options
author | Steve Losh <steve@stevelosh.com> | 2009-01-30 17:43:07 -0500 |
---|---|---|
committer | Steve Losh <steve@stevelosh.com> | 2009-01-30 17:43:07 -0500 |
commit | 56ea256123ddee86d517cc5904c6898a094cda5a (patch) | |
tree | bcf0fb4f576e81fdfaa39f0797bb3682829b8407 /templates/base.html | |
parent | 7b9a7702aa3f49f21260bbe8ee9f1c13cae1cf34 (diff) | |
download | bugseverywhere-56ea256123ddee86d517cc5904c6898a094cda5a.tar.gz |
Started layout work.
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> |