{% set resourcesPage=true %}
{% set canonicalUrl=url('videos') %}
{% set title='Videos | Resouces' %}
{% set metaDescription = 'Resources for your use: Watch customer interviews and video how-tos for getting the most out of Invoiced. | Invoiced' %}
{% extends "parent.twig" %}
{% block content %}
<section class="content">
<div class="container">
<h1 class="title">Invoiced Accounts Recievable Automation Videos</h1>
<h2 class="subtitle">Watch customer interviews and video how-tos for getting the most out of Invoiced.</h2>
<div class="row resource-items-list">
{% for video in videos %}
<div class="col-md-4">
<a href="{% if video.link is defined %}{{ video.link }}{% else %}{{ path('video', {id: video.slug}) }}{% endif %}" class="resource-tile video-tile">
<div class="resource-thumbnail">
<img src="{{ asset('/img/videos/' ~ video.slug ~ '.png') }}" alt="{{ video.title }}" />
</div>
<h3 class="fixed-height">{{ video.title }}</h3>
</a>
</div>
{% endfor %}
</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="videos">
Schedule a Demo
</a>
</div>
</div>
</section>
{% endblock %}