Main video pages now slowly coming online from the backend

This commit is contained in:
2025-08-15 16:20:56 -07:00
parent ac200c0c0d
commit 61b3a5fe80
8 changed files with 2614 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<head lang="en-us">
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="content">
<h1 class="title">{{ title }}</h1>
{% if video %}
<video controls>
<source src="/video/{{ video }}" type="{{ kind }}">
</video>
{% else %}
<p>Nothing to see here</p>
{% endif %}
</div>
</body>