templates/home/_blog.twig line 1

Open in your IDE?
  1. <section class="komili-home-blog">
  2.     <div class="komili-wrapper">
  3.         <h2 class="text-center bold text-color-p">BLOG</h2>
  4.         <ul class="komili-home-blog-posts">
  5.             {% for blog in blogPaginator.result %}
  6.             <li>
  7.                 <a href="{{ path('blog_detail', {'titleSlug': blog.slug }) }}">
  8.                     <figure class="mb-16">
  9.                         <img src="{{ blog.image.url }}" alt="{{ blog.title }}" loading="lazy" width="350"
  10.                              height="350">
  11.                     </figure>
  12.                     <h4 class="h6 bold text-color-p mb-10">{{ blog.title }}</h4>
  13.                     <p class="text-14 mb-0 text-black">{{ blog.shortContent }}</p>
  14.                 </a>
  15.             </li>
  16.             {% endfor %}
  17.         </ul>
  18.         <div class="text-center mt-60">
  19.             <a href="{{ path('blog') }}" class="btn color-p">{{ 'ALL BLOG POSTS'|trans }}</a>
  20.         </div>
  21.     </div>
  22. </section>