templates/content/torqService.html.twig line 1

Open in your IDE?
  1. {% extends 'layouts/layout.html.twig' %} 
  2. {% block body %}
  3. {% set maxWidth = torqService.getMaxWidth() ? ' style=max-width:' ~ torqService.getMaxWidth()|raw ~ 'px;' : '' %}
  4. {% set imageMaxWidth = torqService.getImageMaxWidth() ? ' style=max-width:' ~ torqService.getImageMaxWidth()|raw ~ 'px;' : '' %}
  5. <div id="main-content" class="content">
  6.     <div class="section top-bottom-padding">
  7.         <div class="inner position-relative">
  8.             <div class="row gutter-space--lg">
  9.                 <div class="col {% if torqService.getImage() is not empty %}col-lg-8 col-md-8 {% else %}col-lg-12 col-md-12 {% endif %}col-sm-12 col-xs-12"{{ maxWidth }}>
  10.                     {{ torqService.getContent()|raw }}
  11.                     {% if torqService.getLink() %}
  12.                     <a class="btn dark" href="{% if torqService.getLink().path and torqService.getLink().anchor %}{{ torqService.getLink().path|lower|join('-') ~ '#' ~ torqService.getLink().anchor }}{% elseif torqService.getLink().path %}{{ torqService.getLink().path|lower|join('-') }}{% elseif torqService.getLink().anchor %}{{ '#' ~ torqService.getLink().anchor }}{% endif %}"{% if torqService.getLink().target %}{{' target=' ~ torqService.getLink().target }}{% endif %}>{{ torqService.getLink().text }}</a>
  13.                     {% endif %}
  14.                 </div>
  15.                 {% if torqService.getImage() is not empty %}
  16.                 <div class="col col-lg-4 col-md-4 col-sm-12 col-xs-12">
  17.                     <img class="full-width" data-aos="fade-up" src="{{ torqService.getImage() }}"{{ imageMaxWidth }} />
  18.                 </div>
  19.                 {% endif %}
  20.             </div>
  21.         </div>
  22.     </div>
  23.     <section class="section top-bottom-padding bg-color--red light">
  24.         <div class="inner text-align-center">
  25.             <div class="row gutter-space--md center-lg center-md center-sm center-xs">
  26.                 <div class="cta-display-flex no-bottom-margin col-lg-12 col-md-12 col-sm-12 col-xs-12">
  27.                     <div data-aos="fade-up">
  28.                         <h1 data-aos="fade-up" class="h2--lg aos-init aos-animate">Ready to get started?</h1>
  29.                     </div>
  30.                     <div data-aos="fade-up">
  31.                         <a href="{% if torqService.getShowForm() %}#contact{% else %}/contact{% endif %}" class="btn btn--dark">Talk to an expert</a>
  32.                     </div>
  33.                 </div>
  34.             </div>
  35.         </div>
  36.     </section>
  37.     {% if torqService.getShowForm() %}
  38.     {% include 'content/includes/footer-form.html.twig' %}
  39.     {% endif %}
  40. </div>
  41. {% endblock %}