templates/front/_partials/blog.html.twig line 1

  1. <section class="section" id="blog">
  2.   <div class="container">
  3.     <div class="row justify-content-center">
  4.       <div class="col-12">
  5.         <div class="section-title text-center mb-4 pb-2">
  6.           {% if app.request.locale == 'fr' %}
  7.           <h4 class="title mb-4">Derniers blogs et nouvelles</h4>
  8.           <p class="text-muted para-desc mx-auto mb-0">
  9.             Suivez nos dernières actualités et restez informé des meilleurs
  10.             conseilles.
  11.           </p>
  12.           {% endif %} {% if app.request.locale == 'ar_DZ' %}
  13.           <h4 class="title mb-4">أحدث المدونات والأخبار</h4>
  14.           <p class="text-muted para-desc mx-auto mb-0">
  15.             تابع آخر أخبارنا وابق على اطلاع بأفضل النصائح
  16.           </p>
  17.           {% endif %}
  18.         </div>
  19.       </div>
  20.     </div>
  21.     <div class="row justify-content-end">
  22.       {% for post in posts %}
  23.       <div class="col-lg-4 col-md-6 col-12 mb-4 pb-2">
  24.         <div class="card blog-post border-0 rounded overflow-hidden shadow">
  25.           <a target="_blank" href="{{ post.link }}">
  26.             {# <img src="{{
  27.               post._embedded["wp:featuredmedia"][0].media_details.sizes.medium
  28.                 .source_url
  29.             }}" class="img-fluid" alt=" {{ post.title.rendered | raw }} - Clever
  30.             Nursery" style="max-height: 300px; min-height: 250px;object-fit:
  31.             contain;" /> #}
  32.           </a>
  33.           <div class="card-body p-4 text-end">
  34.             <h5 class="mb-3">
  35.               <a target="_blank" href="{{ post.link }}" class="text-dark title">
  36.                 {{ post.title.rendered | raw }}
  37.               </a>
  38.             </h5>
  39.             <p class="text-muted">{{ post.excerpt.rendered | raw }}</p>
  40.             <h6 class="card-subtitle text-muted text-start">
  41.               <span>
  42.                 <i data-feather="calendar" class="fea icon-sm"></i>
  43.                 {{ post.date|format_datetime('medium','none' ,locale='fr' ) }}
  44.               </span>
  45.             </h6>
  46.             <a target="_blank" href="{{ post.link }}" class="text-primary h6">
  47.               <i data-feather="arrow-left" class="fea icon-sm"></i>
  48.               {% trans %} Lire {% endtrans %}
  49.             </a>
  50.           </div>
  51.         </div>
  52.       </div>
  53.       {% endfor %}
  54.     </div>
  55.   </div>
  56. </section>
  57. {# {% include "/front/_partials/mobile-app.html.twig" %} #}