templates/resources/data-sheets.twig line 1

Open in your IDE?
  1. {% set title='Data Sheets | Resources' %}
  2. {% set metaDescription='Resources for your use: Download data sheets on the Invoiced A/R Cloud suite of products. | Invoiced' %}
  3. {% set canonicalUrl=url('data_sheets') %}
  4. {% extends "parent.twig" %}
  5. {% block header %}
  6.     <script>
  7.         $(function() {
  8.             $('.data-sheet-download').click(function() {
  9.                 (dataLayer || []).push({
  10.                     event: 'download',
  11.                     event_category: 'Downloaded Data Sheet',
  12.                     event_label: $(this).data('label'),
  13.                 });
  14.             });
  15.         })
  16.     </script>
  17. {% endblock %}
  18. {% block content %}
  19.     <section class="content">
  20.         <div class="container">
  21.             <h1 class="title">Invoiced Accounts Receivable Automation Data Sheets</h1>
  22.             <h2 class="subtitle">Invoiced A/R Cloud Data Sheets</h2>
  23.             <div class="row resource-items-list">
  24.                 <div class="col-sm-4">
  25.                     <a href="{{ asset('/data-sheets/Invoiced Full Data Sheet 2H 2020.pdf') }}" class="resource-tile data-sheet-download" target="_blank" data-label="Invoiced Full Data Sheet">
  26.                         <h3>Invoiced A/R Cloud Data Sheet</h3>
  27.                         <div class="description">The #1 rated A/R automation solution, combining everything businesses need for advanced billing, automated collections, payment acceptance, cash application, predictive collections analytics and more.</div>
  28.                         <div class="visit-link">Download &darr;</div>
  29.                     </a>
  30.                 </div>
  31.                 <div class="col-sm-4">
  32.                     <a href="{{ asset('/data-sheets/Invoiced Module Data Sheet - Subscription Billing - Q12021.pdf') }}" class="resource-tile data-sheet-download" target="_blank" data-label="Invoiced Module Data Sheet - Subscription Billing">
  33.                         <h3>Subscription Billing Data Sheet</h3>
  34.                         <div class="description">Whether collecting advertising retainers or managing SaaS subscriptions, generating consistent revenue from services and products helps a business to establish and maintain financial stability.</div>
  35.                         <div class="visit-link">Download &darr;</div>
  36.                     </a>
  37.                 </div>
  38.                 <div class="col-sm-4">
  39.                     <a href="{{ asset('/data-sheets/Invoiced Data Sheet - ARintelligence - Oct2021.pdf') }}" class="resource-tile data-sheet-download" target="_blank" data-label="Invoiced Module Data Sheet - Reporting">
  40.                         <h3>A/R Analytics Data Sheet</h3>
  41.                         <div class="description">Invoiced offers powerful reporting on everything finance, treasury and A/R teams need to know about the current state and future of A/R performance.</div>
  42.                         <div class="visit-link">Download &darr;</div>
  43.                     </a>
  44.                 </div>
  45.             </div>
  46.             <div class="row resource-items-list">
  47.                 <div class="col-sm-4">
  48.                     <a href="{{ asset('/data-sheets/Invoiced Module Data Sheet - Cash Application - Q12021.pdf') }}" class="resource-tile data-sheet-download" target="_blank" data-label="Invoiced Module Data Sheet - Cash Application">
  49.                         <h3>Cash Application Data Sheet</h3>
  50.                         <div class="description">With Invoiced’s CashMatch AI, you can now automatically have unapplied payments matched with open invoices.</div>
  51.                         <div class="visit-link">Download &darr;</div>
  52.                     </a>
  53.                 </div>
  54.             </div>
  55.             <div class="row resource-items-list">
  56.                 <div class="col-sm-4">
  57.                     <a href="{{ asset('/data-sheets/Invoiced Module Data Sheet - Salesforce - Q12021.pdf') }}" class="resource-tile data-sheet-download" target="_blank" data-label="Invoiced Module Data Sheet - Salesforce">
  58.                         <h3>Salesforce Integration Data Sheet</h3>
  59.                         <div class="description">Integrate Invoiced with Salesforce to align finance, sales, and customer success teams on billing and accounts receivable.</div>
  60.                         <div class="visit-link">Download &darr;</div>
  61.                     </a>
  62.                 </div>
  63.                 <div class="col-sm-4">
  64.                     <a href="{{ asset('/data-sheets/Invoiced Module Data Sheet - Intacct - Q12021.pdf') }}" class="resource-tile data-sheet-download" target="_blank" data-label="Invoiced Module Data Sheet - Intacct">
  65.                         <h3>Intacct Integration Data Sheet</h3>
  66.                         <div class="description">Integrate Invoiced with the Sage Intacct ERP platform.</div>
  67.                         <div class="visit-link">Download &darr;</div>
  68.                     </a>
  69.                 </div>
  70.                 <div class="col-sm-4">
  71.                     <a href="{{ asset('/data-sheets/Invoiced Module Data Sheet - NetSuite - Q12021.pdf') }}" class="resource-tile data-sheet-download" target="_blank" data-label="Invoiced Module Data Sheet - NetSuite">
  72.                         <h3>NetSuite Integration Data Sheet</h3>
  73.                         <div class="description">Integrate Invoiced with the NetSuite ERP platform.</div>
  74.                         <div class="visit-link">Download &darr;</div>
  75.                     </a>
  76.                 </div>
  77.             </div>
  78.         </div>
  79.     </section>
  80.     <!-- Call to Action -->
  81.     <section class="call-to-action-dark">
  82.         <div class="container">
  83.             <h2>Get paid faster</h2>
  84.             <p>Interested in learning how to put your billing on autopilot?</p>
  85.             <div class="buttons">
  86.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="Webinars">
  87.                     Schedule a Demo
  88.                 </a>
  89.             </div>
  90.         </div>
  91.     </section>
  92. {% endblock %}