templates/pages/blocks/list-application-section.html.twig line 1

Open in your IDE?
  1. <section class=" container_95 py-16 ">
  2.     <div class=" w-full  lg:w-3/4 xl:w-1/2 mx-auto ">
  3.         <div class="press_list ">
  4.             <ul class="list_press_items">
  5.                 {% for item in content.career_list %}
  6.                 <li class=" py-6">
  7.                     <a href="{{ item.url }}" class="flex justify-between  flex-col md:flex-row "> <span
  8.                             class="title_item_press">{{ item.title }}</span>
  9.                         <span class="item2_press">{{ item.date_career }}</span>
  10.                     </a>
  11.                 </li>
  12.                 {% endfor %}
  13.             </ul>
  14.         </div>
  15.     </div>
  16. </section>