aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 9dda6cc4b7ccd175af3286acec0f97d6525b7dbc (plain) (blame)
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
<!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"><h1>Cherry Flavored Bugs Everywhere!</h1></div>
        <div id="header">
            <div class="center-column">
                <h1>stevelosh</h1>
            </div>
        </div>
        <div id="content-pane" class="center-column">
            <div id="nav">
                <span id="filters">
                    Just show me:
                    <a href="fixme">Open</a>
                    <a href="fixme">Closed</a>
                    <a href="fixme">Assigned to...</a>
                    <a href="fixme">Scheduled for...</a>
                </span>
                <span id="create">
                    <a href="fixme">Create a new bug</a>
                </span>
            </div>
            <h2>Open Bugs</h2>
            {% block content %}{% endblock %}
        </div>
        <div id="footer" class="center-column">
            Site by <a href="http://stevelosh.com">Steve</a>.
            Built with <a href="http://cherrypy.org">CherryPy</a>.
            Templates by <a href="http://jinja.pocoo.org/2/">Jinja2</a>.
            We asked <a href="http://fecklessmind.com/2009/01/20/aardvark-css-framework/">aardvarks</a> for help.
        </div>
    </body>
</html>