aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/templates/base.html
blob: 3d4fe00ce5e99650908d00cb15ea0c125e76874a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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>
{% block stylesheets %}
<script type="text/javascript" src="/static/style/styleswitcher.js"></script>
<link rel="stylesheet" type="text/css" href="/static/style/default.css" />
<link rel="stylesheet" type="text/css" href="/static/style/commentary.css" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/fixed-sane-sans.css" title="fixed-sane-sans" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/fixed-sane-serif.css" title="fixed-sane-serif" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/fixed-nuts-sans.css" title="fixed-nuts-sans" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/fixed-nuts-serif.css" title="fixed-nuts-serif" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/flexy-sane-sans.css" title="flexy-sane-sans" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/flexy-sane-serif.css" title="flexy-sane-serif" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/flexy-nuts-sans.css" title="flexy-nuts-sans" />
<link rel="alternate stylesheet" type="text/css" 
    href="/static/style/flexy-nuts-serif.css" title="flexy-nuts-serif" />
{% endblock %}
{% block externaljs %} {% endblock %}
<title>{% block windowtitle %}bryannewbold.com{% endblock %}</title>
</head>
<body>
<div id="top_bar">
    <div id="top_bar_content">
        <span class="righty"><a href="/knowledge">knowledge</a>&nbsp;
            <a href="/photos">photos</a>&nbsp;
            <a href="/code">code</a></span>
           <!-- <a href="/projects">projects</a> -->
        <span class="lefty"><a href="/">bryannewbold.com</a></span>
    </div>
</div>
<div class="content" id="main_title">
<div class="right_stuff">
<form name="search" action="#">
<br/>
<input class="search_box" type="text" size="21" value="&nbsp;search!" 
    name="search_text" id="search_text" 
    onfocus="if (this.value == this.defaultValue) this.value=''; return;" />
<br />&nbsp;&nbsp;style: &nbsp;
    <a onclick="swapstyle('font');return;" href="#" 
        id="style_font" class="subtle">
    <span class="style_font_first" id="style_font_first">
    a</span><span class="style_font_second" id="style_font_second">A
    </span></a>
    &nbsp;<a onclick="swapstyle('width');return;" href="#"
        id="style_width" class="subtle">fixed</a>
    &nbsp;<a onclick="swapstyle('site');return;" href="#"
        id="style_site" class="subtle">sane</a>
<span class="righty"></span>
</form>
</div>
<span class="path">
{% block path %}{% endblock %}
</span>
<h1>{% block title %}Hey Hey Hey!{% endblock %}</h1>
<div class="right_stuff">
{% block right_stuff %}
{% endblock %}
</div>
</div>


<div class="content" id="main_content">
{% block content %}
Here lies content!
{% endblock %}
</div>
{% block commentary %} {% endblock %}
<div class="content_footer" id="footer">
<b>
&nbsp;
<a href="/">home</a> &nbsp;&nbsp;
<a href="/about">about</a> &nbsp;&nbsp;
<a href="/credits">credits</a> &nbsp;&nbsp;
<a href="mailto:webmeisterATbryannewbold.com">email the webmaster</a>
<!--
&nbsp;&nbsp;
<a href="http://web.mit.edu/">hosted by MIT</a> &nbsp; -->
</b>
<br />
produced in 2007 by <a href="/k/BryanNewbold">bryan newbold</a>, <a href="/copyright">all rights ignored</a>
</div>
</body>
</html>