templates/press.twig line 1

Open in your IDE?
  1. {% set title='Press Mentions: Invoiced in the News | Invoiced' %}
  2. {% set noTitleAppend=true %}
  3. {% set metaDescription='Invoiced: automated electronic invoicing software helping companies get paid faster, waste less collection time, and provide a better customer experience.' %}
  4. {% set canonicalUrl=url('press') %}
  5. {% extends "parent.twig" %}
  6. {% block content %}
  7.     <section class="content press">
  8.         <div class="container">
  9.             <h1 class="title">Press</h1>
  10.             <h2 class="subtitle">Invoiced in the News</h2>
  11.             <hr />
  12.             <div class="press-list">
  13.                 <div class="article">
  14.                     <div class="title">
  15.                         <a href="https://www.intuitiveaccountant.com/in-the-news/people-and-business/invoiced-named-to-the-inc-5000-list-of-america%E2%80%99s-fastest-gro/">
  16.                             Invoiced Named to The Inc. 5000 List of America’s Fastest-Growing Private Companies
  17.                         </a>
  18.                     </div>
  19.                     <div class="publication">
  20.                         Intuitive Accountant
  21.                         <span class="date">&mdash; 8/17/2021</span>
  22.                     </div>
  23.                 </div>
  24.                 <div class="article">
  25.                     <div class="title">
  26.                         <a href="https://www.cpapracticeadvisor.com/accounting-audit/news/21233525/invoiced-named-leader-in-ar-automation-for-6th-consecutive-quarter">
  27.                             Invoiced Named Leader in AR Automation for 6th Consecutive Quarter
  28.                         </a>
  29.                     </div>
  30.                     <div class="publication">
  31.                         CPA Practice Advisor
  32.                         <span class="date">&mdash; 8/9/2021</span>
  33.                     </div>
  34.                 </div>
  35.                 <div class="article">
  36.                     <div class="title">
  37.                         <a href="https://www.dentaleconomics.com/practice/systems/article/14208179/6-reasons-to-automate-your-dental-practices-accounts-receivable">
  38.                             6 reasons to automate your dental practice's accounts receivable
  39.                         </a>
  40.                     </div>
  41.                     <div class="publication">
  42.                         Dental Economics
  43.                         <span class="date">&mdash; 8/5/2021</span>
  44.                     </div>
  45.                 </div>
  46.                 <div class="article">
  47.                     <div class="title">
  48.                         <a href="https://www.nerdwallet.com/article/small-business/accounts-receivable-software">
  49.                             Best Accounts Receivable Software for 2021
  50.                         </a>
  51.                     </div>
  52.                     <div class="publication">
  53.                         NerdWallet
  54.                         <span class="date">&mdash; 7/27/2021</span>
  55.                     </div>
  56.                 </div>
  57.                 <div class="article">
  58.                     <div class="title">
  59.                         <a href="https://www.forbes.com/sites/forbesfinancecouncil/2021/07/19/15-tips-to-help-financial-leaders-manage-the-pl-fallout-from-covid-19/?sh=59863a915952">
  60.                             15 Tips To Help Financial Leaders Manage The P&amp;L Fallout From Covid-19
  61.                         </a>
  62.                     </div>
  63.                     <div class="publication">
  64.                         Forbes
  65.                         <span class="date">&mdash; 7/19/2021</span>
  66.                     </div>
  67.                 </div>
  68.             </div>
  69.         </div>
  70.     </section> 
  71.     <!-- Call to Action -->
  72.     <section class="call-to-action-dark">
  73.         <div class="container">
  74.             <h2>Get paid faster</h2>
  75.             <p>Interested in learning how to automate your company's invoice-to-cash cycle?</p>
  76.             <div class="buttons">
  77.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="Press">
  78.                     Schedule a Demo
  79.                 </a>
  80.             </div>
  81.         </div>
  82.     </section>
  83. {% endblock %}