symposion_app/pinaxcon/templates/streaming/overview.html
Joel Addison 05f324dff7 Improve streaming
Replace hard-coded URL on dashboard.
Fix styling of room selector on streaming page.
2024-04-16 22:14:20 +10:00

28 lines
924 B
HTML

{% extends "site_base.html" %}
{% load registrasion_tags %}
{% load lca2018_tags %}
{% load static %}
{% block head_title %}Live Streaming{% endblock %}
{% block page_title %}Live Streaming{% endblock %}
{% block content %}
<p>Live Streaming is available to everyone attending the conference.</p>
<p>We encourage you to join in the chat via the <a href="https://matrix.to/#/#everything-open:matrix.org" target="_blank">Everything Open Matrix Space</a>.</p>
<div id="holding-frame">
<p>There are currently no live streams available. Please check back soon.</p>
</div>
<div id="rooms-frame">
<h2>Available Rooms</h2>
<ul class="nav nav-pills room-buttons">
</ul>
</div>
<div id="streaming-frame">
</div>
{% endblock %}
{% block extra_script %}
<script src="https://cdn.jsdelivr.net/npm/@mux/mux-player"></script>
<script src="{% static 'js/streaming.js' %}" type="text/javascript"></script>
{% endblock %}