2012-02-20 20:35:12 +01:00
|
|
|
{% load tags %}
|
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-01-18 22:10:00 +01:00
|
|
|
<script type="text/javascript" src="{% static 'javascript/jquery.min.js' %}"></script>
|
2012-04-14 14:51:56 +02:00
|
|
|
<script type="text/javascript" src="{% static 'javascript/projector.js' %}"></script>
|
2013-02-05 17:05:40 +01:00
|
|
|
<title>{% block title %} {% get_config 'event_name' %} {% endblock %}</title>
|
2012-02-20 20:35:12 +01:00
|
|
|
{% 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">
|
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-02-20 20:35:12 +01:00
|
|
|
<div id="currentTime">
|
|
|
|
{% now "H:i" %}
|
|
|
|
</div>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-04-16 16:35:30 +02:00
|
|
|
<div id="overlays">
|
|
|
|
{% for overlay in overlays %}
|
2013-04-15 10:40:47 +02:00
|
|
|
<div id="overlay_{{ overlay.name }}">
|
|
|
|
{{ overlay.html|safe }}
|
|
|
|
</div>
|
2012-03-16 12:28:42 +01:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2011-11-09 21:16:02 +01:00
|
|
|
|
2012-04-24 22:27:16 +02:00
|
|
|
<div id="contentwrapper">
|
|
|
|
<div id="content">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div id="scrollcontentcontainer">
|
|
|
|
<div id="scrollcontent">
|
|
|
|
{% block scrollcontent %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-02-20 20:35:12 +01:00
|
|
|
</div>
|
|
|
|
</body>
|
2011-07-31 10:46:29 +02:00
|
|
|
</html>
|