{% set resourcesPage=true %}
{% set canonicalUrl=url('webinars') %}
{% set title='Webinars | Resources' %}
{% set metaDescription = 'Resources for your use: Replays of Invoiced-hosted webinars on hot topics in accounts receivable. | Invoiced' %}
{% extends "parent.twig" %}
{% block content %}
<section class="content">
<div class="container">
<h1 class="title">Invoiced Accounts Recievable Automation Webinars</h1>
<h2 class="subtitle">Replays of Invoiced-hosted webinars on hot topics in accounts receivable</h2>
<div class="row resource-items-list">
{% for webinar in webinars %}
<div class="col-md-4">
<a href="{{ path('webinar', {id: webinar.slug}) }}" class="resource-tile webinar-tile">
<div class="resource-thumbnail">
<img src="{{ asset('/img/webinars/' ~ webinar.slug ~ '.png') }}" alt="{{ webinar.title }}" />
</div>
<h3 class="fixed-height">{{ webinar.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="Webinars">
Schedule a Demo
</a>
</div>
</div>
</section>
{% endblock %}