templates/resources/tools.twig line 1

Open in your IDE?
  1. {% set title='Free Accounts Receivable Tools | Resources' %}
  2. {% set metaDescription='Resources for your use: Free tools and software to help you improve your accounts receivable. | Invoiced' %}
  3. {% set canonicalUrl=url('tools') %}
  4. {% extends "parent.twig" %}
  5. {% block header %}
  6.     <script>
  7.         $(function() {
  8.             $('.tool-link').click(function() {
  9.                 (dataLayer || []).push({
  10.                     event: 'click',
  11.                     event_category: 'Tool',
  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">Free Accounts Receivable Tools</h1>
  22.             <h2 class="subtitle">We developed these tools to help your A/R efforts</h2>
  23.             <div class="row resource-items-list">
  24.                 <div class="col-sm-4">
  25.                     <a href="https://invoice-generator.com" class="resource-tile tool-link" target="_blank" data-label="Invoice Generator">
  26.                         <div class="resource-thumbnail">
  27.                             <img src="{{ asset('img/tools/invoice-generator.png') }}" alt="Invoice Generator Template" />
  28.                         </div>
  29.                         <h3>Invoice Generator</h3>
  30.                         <div class="description">Invoice Generator is a free invoice template to quickly make invoices.</div>
  31.                         <div class="visit-link">Visit &rarr;</div>
  32.                     </a>
  33.                 </div>
  34.                 <div class="col-sm-4">
  35.                     <a href="https://invoiced.network" class="resource-tile tool-link" target="_blank" data-label="Invoiced Business Network">
  36.                         <div class="resource-thumbnail">
  37.                             <img src="{{ asset('img/tools/invoiced-business-network.png') }}" alt="Free E-invoicing Network" />
  38.                         </div>
  39.                         <h3>Invoiced Business Network</h3>
  40.                         <div class="description">Send and receive e-invoices and pay vendors for free. Helpful for A/R and A/P teams.</div>
  41.                         <div class="visit-link">Visit &rarr;</div>
  42.                     </a>
  43.                 </div>
  44.                 <div class="col-sm-4">
  45.                     <a href="{{ path('savings_calculator') }}" class="resource-tile tool-link" data-label="A/R Automation ROI Calculator">
  46.                         <div class="resource-thumbnail">
  47.                             <img src="{{ asset('img/tools/savings-calculator.png') }}" alt="A/R Automation ROI Calculator" />
  48.                         </div>
  49.                         <h3>A/R Automation ROI Calculator</h3>
  50.                         <div class="description">Calculate the hidden opportunities in your accounts receivable operation.</div>
  51.                         <div class="visit-link">Visit &rarr;</div>
  52.                     </a>
  53.                 </div>
  54.             </div>
  55.         </div>
  56.     </section>
  57.     <!-- Call to Action -->
  58.     <section class="call-to-action-dark">
  59.         <div class="container">
  60.             <h2>Get paid faster</h2>
  61.             <p>Interested in learning how to put your billing on autopilot?</p>
  62.             <div class="buttons">
  63.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="Webinars">
  64.                     Schedule a Demo
  65.                 </a>
  66.             </div>
  67.         </div>
  68.     </section>
  69. {% endblock %}