{% set resourcesPage=true %}
{% set canonicalUrl=url('video', {id: video.slug}) %}
{% set title=video.title %}
{% set metaDescription = video.metaDescription %}
{% extends "parent.twig" %}
{% block content %}
<section class="content video-video">
<div class="container">
<h1 class="title">{{ video.title }}</h1>
<h2 class="subtitle">{{ video.subtitle }}</h2>
<p>{{ video.description }}</p>
<div class="video-video-holder">
<div class="embed-responsive embed-responsive-16by9">
<iframe src="https://player.vimeo.com/video/{{ video.vimeoId }}?h=7b84fcfa3e&color=0E7162&title=0&byline=0&portrait=0" class="embed-responsive-item" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="call-to-action-dark">
<div class="container">
<h2>Get paid faster</h2>
<p>Interested in learning how to put your billing on autopilot?</p>
<div class="buttons">
<a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="video ({{ video.title }})">
Schedule a Demo
</a>
</div>
</div>
</section>
{% endblock %}