templates/common/components/timeline.html.twig line 1

Open in your IDE?
  1. {% import 'common/macros/elements.html.twig' as elements %}
  2. {% macro item(title, subtitle, media, text = '') %}
  3.     <div class="timeline-item">
  4.         <span class="title">{{ title|upper }}</span>
  5.         {{ elements.heading(subtitle, 4, 'subtitle') }}
  6.         <div class="image">
  7.             {{ media|raw }}
  8.         </div>
  9.         {% if text != '' %}
  10.             <p>
  11.                 <strong>{{ text }}</strong>
  12.             </p>
  13.         {% endif %}
  14.         <span class="indicator">
  15.             <span class="indicator-h"></span>
  16.             <span class="indicator-v"></span>
  17.         </span>
  18.     </div>
  19. {% endmacro %}
  20. <div class="timeline">
  21.     {% block timeline %}{% endblock %}
  22. </div>