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
92
93
94
95
96
97
98
99
100
101
102
|
{% extends "website_base.html" %}
{% block title %}{% block page_name %}Home{%endblock %} | The Summit Scheduler{% endblock %}
{% block logo_href %}
{% if linaro %}
http://connect.linaro.org/events/event/lcq1-12/#schedule
{% else %}
http://uds.ubuntu.com
{% endif %}
{% endblock %}
{% block logo_text %}
{% if linaro %}
{% else %}
Developer Summit
{% endif %}
{% endblock %}
{% block extrahead %}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" media="screen" href="/media/css/layout.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/media/css/style.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/media/css/twidenash.css" />
{% block 960css %}<!--<link rel="stylesheet" type="text/css" href="{{ubuntu_website_media}}/css/960.css" />-->{% endblock %}
{% block head %}
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26810861-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
{% endblock %}
{% endblock %}
{% block top_nav_login_links %}
{% if user.is_authenticated %}
Logged in as:
<a id="whoami" class="top-login-item" href="http://launchpad.net/~{{ user.username }}">{{ user.username }}</a>
<span class="top-login-separator">|</span>
{% if user.is_staff %}
<a class="top-login-item" href="/admin" title="Admin">Admin</a>
<span class="top-login-separator">|</span>
{% endif %}
<a class="top-login-item" href="{% url logout %}" title="Log Out: {{ user.username }}">Log Out</a>
{% else %}
<a class="top-login-item" href="/openid/login/?next={{login_next}}" title="Log In">Log In</a>
{% endif %}
{% endblock %}
{% block main_nav_links %}
{% load menubuilder %}
{% menu main_menu %}
<ul class="clearfix">
{% for item in menuitems %}
<li{% if item.current %} class='active'{% endif %}><a class="main-nav-item" href="{{ item.url }}" title="{{ item.title|escape }}">{{ item.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}
{% block search %}{% endblock %}
{% block sub_nav_links %}
{% endblock %}
{% block messages %}
{% if messages %}
{% for message in messages %}
<div class = 'message' ><div class = 'content-shim' >{{ message }}</div></div>
{% endfor %}
{% endif %}
{% endblock %}
{% block content %}
{% endblock %}
{% block general %}
{% endblock %}
{% block footer %}
<div class="copyright">
<p>© 2008-{% now "Y" %} Canonical Ltd., Ubuntu Community. Ubuntu is a registered trademark of Canonical Ltd.</p>
<p>Problems with Summit? <a href="https://bugs.launchpad.net/summit/+filebug">File a Bug ›</a></p>
<p>Summit {{ summit_version }}</p>
</div>
{% endblock %}
{% block footer_list_1 %}
{% endblock %}
{% block footer_list_2 %}
{% endblock %}
{% block footer_list_3 %}
{% endblock %}
{% block footer_note %}
{% endblock %}
|