<div class="bg-grey py-5" id="video">
<div class="container">
{% if (title is defined) %}
<div class="row">
<div class="col-12">
<h2 class="point light">{{ title }}</h2>
</div>
</div>
{% endif %}
<div class="row d-flex justify-content-center">
<div class="col-12 col-xl-10 mt-5">
<video class="d-block mx-auto" width="800" height="500" controls>
<source src="{{ url }}" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>