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
|
{% load i18n %}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{ LANGUAGE_CODE }}" lang="{{ LANGUAGE_CODE }}">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>{% block title %}{% trans "Harvest" %}{% endblock %}</title>
<link rel="stortcut icon" href="{{ MEDIA_URL }}img/favicon.ico" type="image/x-icon" />
<link href='http://fonts.googleapis.com/css?family=Molengo' rel='stylesheet' type='text/css' />
<link rel="stylesheet" href="{{ MEDIA_URL }}css/reset.css" />
<link rel="stylesheet" href="{{ MEDIA_URL }}css/style.css" />
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.query-2.1.7.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.placeheld.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/harvest.js"></script>
{% block extrahead %}{% endblock %}
</head>
<body>
<div id="container">
<div id="header">
<span id="pagetitle">
<img id="sitelogo" src="{{ MEDIA_URL }}img/logo_humanity-search-icon.png" />
<h1 id="sitename">Harvest</h1>
{% if harvest_version_name %}<span id="releasename">{{harvest_version_name}}</span>{% endif %}
</span>
<span id="userdata">
{% if user.is_authenticated %}
<span class="username">{{ user.username }}</span>
<br /><a class="loginbutton" href="/logout" tabindex="1">Log out</a>
{% else %}
<a class="loginbutton" href="/openid/login">Log in</a>
{% endif %}
</span>
</div>
<div id="content">
{% if messages %}
<div id="messages"><ul>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul></div>
{% endif %}
{% block content %}
{% endblock %}
</div>
{#
#}
<div id="footer">
<div id="footnav"><nav>
<a class="title" href="" tabindex="2">Harvest</a> <a href="" tabindex="2">Help</a> <a href="" tabindex="2">Bugs</a> <a href="" tabindex="2">Code</a>
</nav></div>
<div id="smallprint" tabindex="3">
<span id="copyright">
© 2008-2009 Canonical Ltd.
<br />Ubuntu and Canonical are registered
trademarks of Canonical Ltd.
</span>
<span id="techdetails">
Generated in ###TODO###
<br />{% trans "Harvest" %} {{ harvest_version }}
{% if translator_credits %}
<br />{% trans "Translated by:" %} {{ translator_credits|join:", " }}
{% endif %}
</span>
<div style="clear:both"></div>
</div>
</div>
</div>
</body>
</html>
|