~bnrubin/bantrackertwo/devel

« back to all changes in this revision

Viewing changes to templates/bt/base.html

  • Committer: Benjamin Rubin
  • Date: 2009-08-10 16:53:45 UTC
  • Revision ID: bnrubin@romulus-20090810165345-c6en6tdw7k6rydfh
- Comments now are part of the parent Event to make templating easier
- Began some basic template work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
2
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
4
<head>
 
5
    <link rel="stylesheet" href="/site_media/irc.css" />
 
6
    <title>Ubuntu IRC</title>
 
7
</head>
 
8
<body>
 
9
    <div id="container">
 
10
        <div id="header">
 
11
        {% block header %}
 
12
        <ul>        
 
13
            <li class="right">
 
14
                <a href="/logout/">Logout</a>
 
15
            </li>
 
16
            <li class="right">
 
17
                <a href="#">Settings</a>
 
18
                |     
 
19
            </li>
 
20
            <li class="right">
 
21
                {{ user }}
 
22
                |
 
23
            </li>
 
24
            <li>
 
25
                Ban Tracker
 
26
                |
 
27
            </li>
 
28
            <li>
 
29
                <a href="#">Issue Tracker</a>
 
30
            </li>
 
31
        </ul>
 
32
        {% endblock header %}
 
33
        </div>
 
34
        <div id="content">
 
35
            {% block content %} {% endblock content %}
 
36
        </div>
 
37
    </div>
 
38
</body>
 
39
</html>