templates/molecules/events/m.html.twig line 1

Open in your IDE?
  1. <article class="ml-event is-m{% if hasImage is defined and hasImage == true %} has-media{% endif %} {{ modifiers ?? '' }}">
  2.     {% if hasImage is defined and hasImage == true %}
  3.         <div class="event-media-wrapper">
  4.             <img src="https://picsum.photos/700/394" alt="">
  5.         </div>
  6.     {% endif %}
  7.     <div class="event-content-wrapper">
  8.         <div class="date-title-wrapper">
  9.             {% if hasDate is defined and hasDate == true %}
  10.                 <time class="at-date" datetime="2019-06-15">{{ date ?? '15 xuñ' }}</time>
  11.             {% endif %}
  12.             <h2 class="at-title">
  13.                 <a href="{{ link ?? '' }}">{{ title ?? 'Sumario dun contido de axenda talla M' }}</a>
  14.             </h2>
  15.                 <div class="at-text">
  16.                     <p>{{ subtitle ?? 'Conferencia de Marcela Lorcarno' }}</p>
  17.                 </div>
  18.                 <div class="event-location">
  19.                     <p>{{ location ?? 'Facultade de Ciencias da Comunicación' }}</p>
  20.                 </div>
  21.         </div>
  22.         {% if tag is defined %}
  23.             <a href="{{ path('event') }}" class="at-tag is-primary">{{ tag }}</a>
  24.         {% endif %}
  25.     </div>
  26. </article>