~registry/ubuntu-teamreports/trunk

« back to all changes in this revision

Viewing changes to teamreports/templates/base.html

  • Committer: Daniel Holbach
  • Date: 2010-04-13 16:29:38 UTC
  • Revision ID: daniel.holbach@canonical.com-20100413162938-o7lw12hi3rfi9mw0
make project name more appropriate

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
<head>
6
6
  <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
7
  <title>{% block title %} {% trans "Ubuntu Team Reports" %} {% endblock %}</title>
8
 
<link rel="shortcut icon" href="http://www.ubuntu.com/sites/all/themes/ubuntu09/favicon.ico" type="image/x-icon" /> 
9
 
<link type="text/css" rel="stylesheet" media="all" href="http://www.ubuntu.com/sites/all/themes/ninesixty/styles/framework/text.css?3" /> 
10
 
<link type="text/css" rel="stylesheet" media="all" href="http://www.ubuntu.com/sites/all/themes/ninesixty/styles/framework/960.css?3" /> 
11
 
<link type="text/css" rel="stylesheet" media="all" href="http://www.ubuntu.com/sites/all/themes/ubuntu09/styles/classes.css?3" /> 
12
 
<link type="text/css" rel="stylesheet" media="all" href="http://www.ubuntu.com/sites/all/themes/ubuntu09/styles/ubuntu09.css?3" /> 
 
8
  <link rel="shortcut icon" href="/media/img/favicon.ico" type="image/x-icon" />
 
9
  <style type="text/css" media="all">@import "/media/css/style.css";</style>
13
10
{% block extrahead %}{% endblock %}
14
11
</head>
15
12
 
16
 
<body class="ubuntu09 front not-logged-in page-node node-type-page no-sidebars">
17
 
  <div id="page" class="container-16 clear-block"> 
18
 
    <div id="container">
19
 
      <div id="site-header" class="clear-block"> 
20
 
        <div id="branding" class="container-16 clear-block"> 
21
 
          <div id="site-subheader" class="clear-block"> 
22
 
            <div id="header-region" class="region grid-16 clear-block"> 
23
 
              <div id="block-block-46" class="block block-block"> 
24
 
                <div class="content"> 
25
 
                  <div id="topNav">
26
 
                    <ul>
27
 
                      {% if user.is_authenticated %}
28
 
                        {{ user.username }}&nbsp;<a href="/logout">{% trans "Log out" %}</a>
29
 
                      {% else %}
30
 
                        <a href="/openid/login?next={{login_next}}">{% trans "Log in" %}</a>
31
 
                      {% endif %}
32
 
                    </ul>
33
 
                    <a href="/" id="ubuntulogo">Ubuntu</a> 
34
 
                    <div class="clear"><img src="http://www.ubuntu.com/themes/ubuntu07/images/spacer.gif" width="1" height="1" alt="" /></div> 
35
 
                  </div> 
36
 
                </div>
37
 
              </div>
38
 
              <div id="block-block-58" class="block block-block"> 
39
 
                <div class="content">
40
 
                  <div id="homemasthead"> 
41
 
                    <div class="headings"> 
 
13
<body>
 
14
<div id="container">
 
15
  <div id="content">
 
16
    <div id="topNav">
 
17
    <ul>
 
18
        {% if user.is_authenticated %}
 
19
          {{ user.username }}
 
20
          &nbsp;
 
21
                  <a href="/logout">{% trans "Log out" %}</a>
 
22
        {% else %}
 
23
                <a href="/openid/login?next={{login_next}}">{% trans "Log in" %}</a>
 
24
        {% endif %}
 
25
      </ul>
 
26
      <a href="/"><img id="ubuntulogo" src="/media/img/ubuntulogo.png" alt="Ubuntu" /></a>
 
27
    </div>
 
28
    <div id="body">
 
29
      <div class="content">
42
30
{% if messages %}
43
31
{% for message in messages %}
44
32
<p>{{ message }}</p>
45
33
{% endfor %}
46
34
{% endif %}
47
 
                    </div>
48
 
                  </div>
49
 
                </div>
50
 
              </div>
51
 
              <div id="homemiddle"> 
52
 
                <div id="main" class="column grid-16 "> 
53
 
                  <div id="main-content" class="region clear-block"> 
 
35
 
54
36
{% block content %}
55
37
{% endblock %}
56
 
                   </div>
57
 
                 </div>
58
 
               </div>
59
 
            </div>
60
 
          </div> 
61
 
          <div id="footer" class="clear-block clear"> 
62
 
            <div id="footer-region" class="region grid-16 clear-block"> 
63
 
              <div id="block-block-50" class="block block-block"> 
64
 
                <div class="content"> 
65
 
                  <div id="copyright" class="grid-9">&copy; {% now "Y" %} Canonical Ltd., Ubuntu Community. See <a href="https://launchpad.net/ubuntu-teamreports">Team Reports Project</a> for details.  Ubuntu is a registered trademark of Canonical Ltd.</div> 
66
 
                </div> 
67
 
              </div> 
68
 
              <div id="bg-right">&nbsp;</div><div id="bottom-right">&nbsp;</div>
69
 
            </div>
70
 
            <div id="bg-left">&nbsp;</div><div id="bottom-left">&nbsp;</div>
71
 
          </div>
72
 
        </div>
73
 
      </div>
74
 
    </div>
 
38
      </div>
 
39
 
 
40
    </div>
 
41
 
 
42
    <div id="footer">
 
43
      <div class="wrapper">
 
44
        <p>&copy; {% now "Y" %} Canonical Ltd., Ubuntu Community. See <a href="https://launchpad.net/ubuntu-teamreports">Team Reports Project</a> for details.  Ubuntu is a registered trademark of Canonical Ltd.</p>
 
45
      </div>
 
46
    </div>
 
47
    <div id="bg-right">&nbsp;</div><div id="bottom-right">&nbsp;</div> 
75
48
  </div>
 
49
  <div id="bg-left">&nbsp;</div><div id="bottom-left">&nbsp;</div> 
 
50
 
 
51
</div>
76
52
</body>
77
53
</html>