templates/molecules/members/government.html.twig line 1

Open in your IDE?
  1. <article class="ml-member has-position {% if hasImage is defined and hasImage == true %} has-media{% endif %}">
  2.     {% if hasImage is defined and hasImage == true %}
  3.         <div class="member-media-wrapper">
  4.             <img src="{{ src ?? 'https://picsum.photos/700/469' }}" alt="">
  5.         </div>
  6.     {% endif %}
  7.     <div class="member-content-wrapper">
  8.         <span class="member-position">{{ cargo ?? 'Cargo' }}</span>
  9.         <h3 class="at-title"><a href="{{ link ?? '' }}">{{ name ?? 'Nome Apelido Apelido' }}</a></h3>
  10.         <dl class="at-desc-list">
  11.             <dt>TelĂ©fono</dt>
  12.             <dd>
  13.                 <a href="">981 560 250</a><br />
  14.             </dd>
  15.             <dt>Email</dt>
  16.             <dd>
  17.                 <a href="">info@espazo.gal</a>
  18.             </dd>
  19.         </dl>
  20.     </div>
  21. </article>