aboutsummaryrefslogtreecommitdiff
path: root/templates/main.html
diff options
context:
space:
mode:
authorFranoosh <uinarf@autistici.org>2025-07-25 17:13:38 +0200
committerFranoosh <uinarf@autistici.org>2025-10-15 14:33:59 +0200
commit68bd1bd052a7cd6438b92cb1059ef5e58b8d022c (patch)
tree5a7eab3022a7593bd3d9dbdcc99a1590ab0fc3bc /templates/main.html
downloadZeroMQ_Video_Streaming-68bd1bd052a7cd6438b92cb1059ef5e58b8d022c.tar.gz
ZeroMQ_Video_Streaming-68bd1bd052a7cd6438b92cb1059ef5e58b8d022c.tar.bz2
ZeroMQ_Video_Streaming-68bd1bd052a7cd6438b92cb1059ef5e58b8d022c.zip
Initial commit. Proof of concept message passing between client <-> router <-> worker with rudimentary caching
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>