templates/resources/video.twig line 1

Open in your IDE?
  1. {% set resourcesPage=true %}
  2. {% set canonicalUrl=url('video', {id: video.slug}) %}
  3. {% set title=video.title %}
  4. {% set metaDescription = video.metaDescription %}
  5. {% extends "parent.twig" %}
  6. {% block content %}
  7.     <section class="content video-video">
  8.         <div class="container">
  9.             <h1 class="title">{{ video.title }}</h1>
  10.             <h2 class="subtitle">{{ video.subtitle }}</h2>
  11.             <p>{{ video.description }}</p>
  12.             <div class="video-video-holder">
  13.                 <div class="embed-responsive embed-responsive-16by9">
  14.                     <iframe src="https://player.vimeo.com/video/{{ video.vimeoId }}?h=7b84fcfa3e&color=0E7162&title=0&byline=0&portrait=0" class="embed-responsive-item" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
  15.                 </div>
  16.             </div>
  17.         </div>
  18.     </section>
  19.     <!-- Call to Action -->
  20.     <section class="call-to-action-dark">
  21.         <div class="container">
  22.             <h2>Get paid faster</h2>
  23.             <p>Interested in learning how to put your billing on autopilot?</p>
  24.             <div class="buttons">
  25.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="video ({{ video.title }})">
  26.                     Schedule a Demo
  27.                 </a>
  28.             </div>
  29.         </div>
  30.     </section>
  31. {% endblock %}