phantasma/app/templates/film_play.html

8 lines
285 B
HTML
Raw Normal View History

2021-09-28 13:10:22 +00:00
{% extends "base.html" %}
{% block main %}
<h1>{{ film.data.title }}</h1>
{% if film.vimeo_id %}
<iframe src="https://player.vimeo.com/video/{{ film.vimeo_id }}" width="640" height="564" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
{% endif %}
{% endblock %}