ProfouzorsLinx/templates/display/video.html

18 lines
647 B
HTML
Raw Normal View History

{% extends "base.html" %}
2022-01-12 02:48:19 +01:00
{% block opengraph %}
<meta property="og:title" content="{{ filename }} ({{ size }})" />
2021-02-11 05:22:49 +01:00
<meta property="og:type" content="video.other">
2022-01-12 02:48:19 +01:00
<meta property="og:url" content="{{ siteurl }}{{ sitepath }}{{ filename }}" />
2021-02-11 04:20:59 +01:00
<meta property="og:video" content="{{ siteurl }}{{ sitepath }}{{ selifpath }}{{ filename }}" />
{% endblock %}
2022-01-12 02:48:19 +01:00
{% block twittercard %}{% endblock %}
{% block main %}
<video class="display-video" controls autoplay>
<source src="{{ sitepath }}{{ selifpath }}{{ filename }}" />
2019-01-14 23:51:02 +01:00
<a href='{{ sitepath }}{{ selifpath }}{{ filename }}'>Download it instead</a>
</video>
2022-01-12 02:48:19 +01:00
{% endblock %}