templates/molecules/notices/summary-jobs.html.twig line 1

Open in your IDE?
  1. <article class="ml-notice is-jobs {{ modifiers ?? '' }}">
  2.   {% if hasImage is defined and hasImage == true %}
  3.       <div class="banner-media-wrapper has-margin-top">
  4.         <img src="{{ src ?? 'https://picsum.photos/700/394' }}" alt="">
  5.       </div>
  6.   {% endif %}
  7.     <div class="notice-content-wrapper">
  8.         <h2 class="at-title">
  9.           <a href="{{ link ?? path('services-procedure-BIP') }}">{{ title ?? 'Contido do boletín BIP' }}</a>
  10.         </h2>
  11.         <div class="at-text">
  12.           Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
  13.         </div>
  14.         {% if hasTags is defined and hasTags == true %}
  15.             <ul class="ml-tags-list">
  16.                 <li>
  17.                     <a href="" class="at-tag is-primary">{{ category ?? 'Categoría' }}</a>
  18.                 </li>
  19.             </ul>
  20.         {% endif %}
  21.     </div>
  22. </article>