diff options
Diffstat (limited to 'bn_django/templates/base.html')
-rw-r--r-- | bn_django/templates/base.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/bn_django/templates/base.html b/bn_django/templates/base.html new file mode 100644 index 0000000..a87d0a5 --- /dev/null +++ b/bn_django/templates/base.html @@ -0,0 +1,51 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<link rel="STYLESHEET" type="text/css" href="style/default.css"> +<link rel="STYLESHEET" type="text/css" href="/style/default.css"> +<title>bryannewbold.com</title> +</head> +<body> +<div id="top_bar"> + <div id="top_bar_content"> + <span class="lefty"><a href="/">bryannewbold.com</a></span> + <span class="righty"><a href="/knowledge">knowledge</a> + <a href="/photos">photos</a> + <a href="/code">code</a> + <a href="/projects">projects</a> + </div> +</div> +<div class="content" id="main_title"> +<span class="path"> +{% block path %}{% endblock %} +</span> +<h1>{% block title %}Hey Hey Hey!{% endblock %}</h1> +<div class="right_stuff"> +{% block right_stuff %} + +hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey +hey hey hey +{% endblock %} +</div> +</div> + + +<div class="content" id="main_content"> +{% block content %} +Here lies content! +{% endblock %} +</div> +<div class="content_footer" id="footer" name="footer"> +<b> +<a href="/">home</a> +<a href="/about">about</a> +<a href="/credits">credits</a> +<a href="mailto:webmeisterATbryannewbold.com">email the webmaster</a> +<a href="http://web.mit.edu/">hosted by MIT</a> +</b> +<br /> +produced in 2007 by <a href="/k/BryanNewbold">bryan newbold</a>, <a href="/copyright">all rights ignored</a> +</div> +</body> +</html> |