{% set resourcesPage=true %}
{% set canonicalUrl=url('whitepapers') %}
{% set title='Guides on Billing and Accounts Receivable' %}
{% set metaDescription = 'Our experts have made invaluable reports and guides to help you better navigate billing and accounts receivable.' %}
{% extends "parent.twig" %}
{% block content %}
<section class="content">
<div class="container">
<h1 class="title">Invoiced Accounts Recievable Automation White Papers</h1>
<h2 class="subtitle">Guides and Reports on Billing and Accounts Receivable</h2>
<div class="row resource-items-list">
{% for whitepaper in whitepapers %}
<div class="col-md-4">
<a href="{% if whitepaper.link is defined %}{{ whitepaper.link }}{% else %}{{ path('white_paper', {id: whitepaper.slug}) }}{% endif %}" class="resource-tile whitepaper-tile">
<div class="resource-thumbnail">
<img src="{{ asset('/img/whitepapers/' ~ whitepaper.slug ~ '.png') }}" alt="{{ whitepaper.title }}" />
</div>
<h3 class="fixed-height">{{ whitepaper.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="whitepapers">
Schedule a Demo
</a>
</div>
</div>
</section>
{% endblock %}