templates/components/BigTitle/index.twig line 1

Open in your IDE?
  1. {% set titleLevelCSS = titleLevelCSS ?? '1' %}
  2. {% set titleLevelSEO = titleLevelSEO ?? '1' %}
  3. {% set description = description ?? false %}
  4. <div class="big-title">
  5.     {% include 'components/Others/Title/index.twig' %}
  6.     {% if description %}
  7.         <p class="text no-margin">
  8.             {{ description }}
  9.         </p>
  10.     {% endif %}
  11. </div>