aboutsummaryrefslogtreecommitdiff
path: root/templates/main.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/main.html')
-rw-r--r--templates/main.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/main.html b/templates/main.html
new file mode 100644
index 0000000..e0eaa52
--- /dev/null
+++ b/templates/main.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Live Streaming</title>
+</head>
+<body>
+ <h1>Streaming live.</h1>
+ {% for client_id in clients.keys() %}
+ <h2>Client {{ client_id }}</h2>
+ <li>
+ <a href="/clients/{{ client_id }}"> Client {{ client_id }} streams
+ </a>
+ <li>
+ {% endfor %}
+</body>
+</html>