templates/terms/terms_base.html.twig line 1

Open in your IDE?
  1. {% set body_classes = ['terms-and-conditions'] %}
  2. {% set title = 'terms.title'|trans %}
  3. {% set description = 'terms.description'|trans %}
  4. {% set keywords = 'terms.keywords'|trans %}
  5. {% extends 'base.html.twig' %}
  6. {% block stylesheets %}
  7.     {{ parent() }}
  8.     {{ encore_entry_link_tags('terms') }}
  9. {% endblock stylesheets %}
  10. {% block content %}
  11.     <main class="maincontent">
  12.         <div class="container">
  13.             <div class="terms-and-conditions-text-container cms-text-article">
  14.                 {% block terms %}{% endblock terms %}
  15.             </div>
  16.         </div>
  17.         {% include '_partials/check-company-cta.html.twig' %}
  18.     </main>
  19. {% endblock content %}