16 lines
410 B
Plaintext
16 lines
410 B
Plaintext
<!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> |