templates/resources/videos.twig line 1

Open in your IDE?
  1. {% set resourcesPage=true %}
  2. {% set canonicalUrl=url('videos') %}
  3. {% set title='Videos | Resouces' %}
  4. {% set metaDescription = 'Resources for your use: Watch customer interviews and video how-tos for getting the most out of Invoiced. | Invoiced' %}
  5. {% extends "parent.twig" %}
  6. {% block content %}
  7.     <section class="content">
  8.         <div class="container">
  9.             <h1 class="title">Invoiced Accounts Recievable Automation Videos</h1>
  10.             <h2 class="subtitle">Watch customer interviews and video how-tos for getting the most out of Invoiced.</h2>
  11.             <div class="row resource-items-list">
  12.                 {% for video in videos %}
  13.                     <div class="col-md-4">
  14.                         <a href="{% if video.link is defined %}{{ video.link }}{% else %}{{ path('video', {id: video.slug}) }}{% endif %}" class="resource-tile video-tile">
  15.                             <div class="resource-thumbnail">
  16.                                 <img src="{{ asset('/img/videos/' ~ video.slug ~ '.png') }}" alt="{{ video.title }}" />
  17.                             </div>
  18.                             <h3 class="fixed-height">{{ video.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="videos">
  32.                     Schedule a Demo
  33.                 </a>
  34.             </div>
  35.         </div>
  36.     </section>
  37. {% endblock %}