2012-02-20 20:35:12 +01:00
|
|
|
|
{% load tags %}
|
2013-08-04 12:59:11 +02:00
|
|
|
|
{% load i18n %}
|
2012-04-14 14:51:56 +02:00
|
|
|
|
{% load staticfiles %}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
|
2013-05-30 14:41:22 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{LANGUAGE_CODE}}">
|
2012-02-20 20:35:12 +01:00
|
|
|
|
<head>
|
2012-04-14 14:51:56 +02:00
|
|
|
|
<link type="text/css" rel="stylesheet" href="{% static 'styles/projector.css' %}">
|
2013-04-22 19:59:05 +02:00
|
|
|
|
<link rel="shortcut icon" href="{% static 'img/favicon.png' %}" type="image/png" />
|
2013-08-04 12:59:11 +02:00
|
|
|
|
<title>{{ 'event_name'|get_config }} – {% trans 'Projector' %}</title>
|
2012-02-20 20:35:12 +01:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="header">
|
2013-02-05 20:40:55 +01:00
|
|
|
|
<div id="logo"><img src="{% static 'img/logo-projector.png' %}"></div>
|
2012-02-20 20:35:12 +01:00
|
|
|
|
<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-04-16 16:35:30 +02:00
|
|
|
|
<div id="overlays">
|
2013-08-04 12:59:11 +02:00
|
|
|
|
{{ overlays }}
|
2012-03-16 12:28:42 +01:00
|
|
|
|
</div>
|
2011-11-09 21:16:02 +01:00
|
|
|
|
|
2013-08-04 12:59:11 +02:00
|
|
|
|
<div id="content" {% if reload %}class="reload"{% endif %}>
|
|
|
|
|
{{ content }}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
</div>
|
2013-08-04 12:59:11 +02:00
|
|
|
|
<script type="text/javascript" src="{% static 'javascript/jquery.min.js' %}"></script>
|
|
|
|
|
<script type="text/javascript" src="{% static 'javascript/projector.js' %}"></script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
{% for js in overlay_js %}
|
|
|
|
|
projector.update_data({{ js|safe }});
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</script>
|
2012-02-20 20:35:12 +01:00
|
|
|
|
</body>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
</html>
|