OpenSlides/openslides/projector/templates/projector.html

46 lines
1.7 KiB
HTML
Raw Normal View History

2012-02-20 20:35:12 +01:00
{% load tags %}
{% load i18n %}
{% load staticfiles %}
2012-02-20 20:35:12 +01:00
<!DOCTYPE html>
<html lang="{{LANGUAGE_CODE}}">
2012-02-20 20:35:12 +01:00
<head>
<link href="{% static 'styles/projector.css' %}" type="text/css" rel="stylesheet">
<link href="{% static 'styles/bootstrap.min.css' %}" type="text/css" rel="stylesheet">
<link href="{% static 'img/favicon.png' %}" type="image/png" rel="shortcut icon">
<title>{% trans 'Projector' %} {{ 'event_name'|get_config }}</title>
2012-02-20 20:35:12 +01:00
</head>
<body>
<div id="header">
<a title="Startseite" id="logo" href="/"><img alt="Logo" src="/static/img/logo.png"></a>
<div class="pull-right"></div>
2012-02-20 20:35:12 +01:00
</div>
2011-07-31 10:46:29 +02:00
<div id="overlays">
{{ overlays }}
</div>
<div id="content" {% if reload %}class="reload"{% endif %}>
{{ content }}
2012-02-20 20:35:12 +01:00
</div>
<div id="footer">
<div class="event_name_description">
{{ 'event_name'|get_config }} | {{ 'event_description'|get_config }}
</div>
<div class="event_date_location">
{% if 'event_date'|get_config %}
{{ 'event_date'|get_config }}{% if 'event_location'|get_config %}, {{ 'event_location'|get_config }}{% endif %}
{% endif %}
</div>
</div>
<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>