clippable/service/templates/video.html.tera

16 lines
409 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 }}" type="video/{{ kind }}">
</video>
{% else %}
<p>Nothing to see here</p>
{% endif %}
</div>
</body>