templates/resources/white-papers.twig line 1

Open in your IDE?
  1. {% set resourcesPage=true %}
  2. {% set canonicalUrl=url('whitepapers') %}
  3. {% set title='Guides on Billing and Accounts Receivable' %}
  4. {% set metaDescription = 'Our experts have made invaluable reports and guides to help you better navigate billing and accounts receivable.' %}
  5. {% extends "parent.twig" %}
  6. {% block content %}
  7.     <section class="content">
  8.         <div class="container">
  9.             <h1 class="title">Invoiced Accounts Recievable Automation White Papers</h1>
  10.             <h2 class="subtitle">Guides and Reports on Billing and Accounts Receivable</h2>
  11.             <div class="row resource-items-list">
  12.                 {% for whitepaper in whitepapers %}
  13.                     <div class="col-md-4">
  14.                         <a href="{% if whitepaper.link is defined %}{{ whitepaper.link }}{% else %}{{ path('white_paper', {id: whitepaper.slug}) }}{% endif %}" class="resource-tile whitepaper-tile">
  15.                             <div class="resource-thumbnail">
  16.                                 <img src="{{ asset('/img/whitepapers/' ~ whitepaper.slug ~ '.png') }}" alt="{{ whitepaper.title }}" />
  17.                             </div>
  18.                             <h3 class="fixed-height">{{ whitepaper.title }}</h3>
  19.                         </a>
  20.                     </div>
  21.                 {% endfor %}
  22.             </div>
  23.         </div>
  24.     </section>
  25.     <!-- Call to Action -->
  26.     <section class="call-to-action-dark">
  27.         <div class="container">
  28.             <h2>Get paid faster</h2>
  29.             <p>Interested in learning how to put your billing on autopilot?</p>
  30.             <div class="buttons">
  31.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="whitepapers">
  32.                     Schedule a Demo
  33.                 </a>
  34.             </div>
  35.         </div>
  36.     </section>
  37. {% endblock %}