1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-05-08 02:08:17 +00:00
pretalx-plugin-broadcast-tools/pretalx_broadcast_tools/templates/pretalx_broadcast_tools/lower_thirds.html

22 lines
781 B
HTML
Raw Normal View History

2021-11-20 08:05:08 +00:00
{% load static %}
{% load compress %}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="UTF-8">
<title>{{ request.event.name }} lower thirds</title>
{% compress js %}
2021-11-21 07:06:35 +00:00
<script src="{% static "vendored/jquery-3.1.1.js" %}"></script>
2021-11-20 08:05:08 +00:00
{% endcompress %}
<script src="{% static "pretalx_broadcast_tools/update.js" %}"></script>
<link rel="stylesheet" href="{% static "pretalx_broadcast_tools/frontend.css" %}" />
2021-11-20 08:05:08 +00:00
</head>
<body>
<div id="box">
<p id="title">Loading ...</p>
<p id="speaker">Content should appear soon. If not, please verify you have Javascript enabled.</p>
<p id="info_line"></p>
2021-11-20 08:05:08 +00:00
</div>
</body>
</html>