2012-02-20 20:35:12 +01:00
|
|
|
{% load tags %}
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
2012-02-20 20:35:12 +01:00
|
|
|
<head>
|
|
|
|
<link type="text/css" rel="stylesheet" href="/static/styles/projector.css">
|
|
|
|
<link rel="shortcut icon" href="/static/images/favicon.png" type="image/png" />
|
|
|
|
<script type="text/javascript" src="/static/javascript/jquery.js"></script>
|
|
|
|
<script type="text/javascript" src="/static/javascript/projector.js"></script>
|
|
|
|
<title>{% block title %} {% get_config 'event_name' %} {% endblock %}</title>
|
|
|
|
{% block header %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="config" style="display:none;">
|
|
|
|
<div id="ajax">{{ ajax }}</div>
|
|
|
|
</div>
|
|
|
|
<div id="ajaxswitcher"></div>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-02-20 20:35:12 +01:00
|
|
|
<div id="header">
|
|
|
|
<div id="logo"><img src="/static/images/logo-projector.png"></div>
|
|
|
|
<div class="event_name">{% get_config 'event_name' %}</div>
|
|
|
|
<div class="event_description">{% get_config 'event_description' %}</div>
|
|
|
|
</div>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-02-20 20:35:12 +01:00
|
|
|
<div id="currentTime">
|
|
|
|
{% now "H:i" %}
|
|
|
|
</div>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-03-16 12:28:42 +01:00
|
|
|
<div id="messages">
|
|
|
|
<ul>
|
|
|
|
{% for message in messages %}
|
|
|
|
<li>{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2011-11-09 21:16:02 +01:00
|
|
|
|
2012-02-20 20:35:12 +01:00
|
|
|
<div id="content">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
2011-07-31 10:46:29 +02:00
|
|
|
</html>
|