templates/about.twig line 1

Open in your IDE?
  1. {% set title='Learn About Us and How We Can Help You' %}
  2. {% set metaDescription='Invoiced: automated electronic invoicing software helping companies get paid faster, waste less collection time, and provide a better customer experience.' %}
  3. {% set canonicalUrl=url('about') %}
  4. {% extends "parent.twig" %}
  5. {% block content %}
  6.     <section class="content about-us">
  7.         <div class="container">
  8.             <h1 class="title">About Us</h1>
  9.             <h2 class="subtitle">We are on a mission to help your business get paid.</h2>
  10.             <div class="about">
  11.                 <p>Invoiced helps companies get paid faster, waste less time on collections and provide a better customer experience. With thousands of customers and more than $40 billion in receivables processed, Invoiced is pioneering the field of Accounts Receivable Automation. Based in Austin, Texas, Invoiced is ranked as the #1 accounts receivable solution by G2 Crowd and rated #1 in both ease-of-use and value by Capterra.</p>
  12.             </div>
  13.             <div class="row badges about-badges new-badges narrow-column">
  14.                 {% for i in range(0, 9) %}
  15.                     <div class="single-icon">
  16.                         <img src="{{ asset(badges[i].img) }}" alt="{{ badges[i].name }} Badge" title="{{ badges[i].name }}" />
  17.                     </div>
  18.                 {% endfor %}
  19.             </div>
  20.             <hr/>
  21.             <h3>Recent Press</h3>
  22.             <div class="press">
  23.                 <p>
  24.                     <strong>Forbes</strong><br/>
  25.                     <a href="https://www.forbes.com/sites/forbesfinancecouncil/2019/11/08/what-changes-are-coming-to-the-cfo-role-10-experts-weigh-in/#26382768276a">
  26.                         What Changes Are Coming To The CFO Role?
  27.                     </a>
  28.                 </p>
  29.                 <p>
  30.                     <strong>Forbes</strong><br/>
  31.                     <a href="https://www.forbes.com/sites/forbesfinancecouncil/2019/09/24/five-ways-cfos-are-rethinking-accounts-receivable/">
  32.                         Five Ways CFOs Are Rethinking Accounts Receivable
  33.                     </a>
  34.                 </p>
  35.                 <p>
  36.                     <strong>CFO Dive</strong><br/>
  37.                     <a href="https://www.cfodive.com/press-release/20191001-invoiced-announces-powerful-new-accounts-receivable-automation-capabilities/">
  38.                         Invoiced Announces Powerful New Accounts Receivable Automation Capabilities for Mid-Market and Enterprise Companies
  39.                     </a>
  40.                 </p>
  41.                 <p>
  42.                     <strong>Pymnts</strong><br/>
  43.                     <a href="https://www.pymnts.com/news/b2b-payments/2019/invoiced-adds-recurring-billing-support-ar-platform/">
  44.                         Invoiced Adds Recurring Billing Support To AR Platform
  45.                     </a>
  46.                 </p>
  47.                 <p>
  48.                     <strong>Accounting Web</strong><br/>
  49.                     <a href="https://www.accountingweb.com/practice/clients/the-3-essentials-for-mastering-client-cash-flow-management">
  50.                         The 3 Essentials for Mastering Client Cash Flow Management
  51.                     </a>
  52.                 </p>
  53.                 <br/>
  54.                 <p>
  55.                     <a href="{{ path('press') }}">
  56.                         See All Media Coverage
  57.                     </a>
  58.                 </p>
  59.             </div>
  60.             <hr/>
  61.             <div class="link">
  62.                 <a href="{{ path('contact') }}" style="text-decoration: none;">
  63.                     <h3>Contact Us &rarr;</h3>
  64.                 </a>
  65.             </div>
  66.         </div>
  67.     </section>
  68.     <section class="customer-testimonials">
  69.         <div class="container">
  70.             <h4>We put our customers first.</h4>
  71.             <h2>That's why thousands of businesses &#9829; Invoiced.</h2>
  72.             <div class="customer-logos clearfix center-logos">
  73.                 {% for i in range(0, 11) %}
  74.                     <div class="customer-logo">
  75.                         <img src="{{ asset(logos[i].img) }}" alt="{{ logos[i].name }} Logo" title="{{ logos[i].name }}" />
  76.                     </div>
  77.                 {% endfor %}
  78.             </div>
  79.         </div>
  80.     </section>
  81. {% endblock %}