Main video pages now slowly coming online from the backend
This commit is contained in:
16
service/templates/index.html.tera
Normal file
16
service/templates/index.html.tera
Normal 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>
|
||||
Reference in New Issue
Block a user