templates/front/blog/list-articles.html.twig line 1

Open in your IDE?
  1. {% extends "front/base.html.twig" %}
  2. {% block title %}{{ 'blog.title' | trans }}
  3. {% endblock %}
  4. {% block body %}
  5.     <section class="mt-0 first-section" id="blog-search">
  6.         <div class="container">
  7.             <div class="row justify-content-center">    
  8.                 <div class="col-lg-8">
  9.                     {{ form_start(form, {'attr': {'class': 'blog-main-search'}}) }}
  10.                         <div class="form-inline">
  11.                             {{ form_widget(form.title, {'attr': {'class': 'input-main-search'}}) }}
  12.                             <button class="btn btn-main-search" type="submit">
  13.                                 <span class="hide-mobile">{{ 'global.search' | trans | capitalize }}</span>
  14.                                 <i class="far fa-search hide-desktop"></i>
  15.                             </button>
  16.                         </div>
  17.                     {{ form_end(form) }}
  18.                 </div>
  19.             </div>
  20.         </div>
  21.     </section>
  22.     <section id="blog" class="pt-0">
  23.         <div class="container">
  24.             <h2 class="section-title-underline">{{ title | trans }}</h2>
  25.             <div class="row">
  26.                 {% if articles | length > 0 %}
  27.                     {% for article in articles %}
  28.                         <div class="col-xl-3 col-lg-4 col-md-6 col-sm-12 blog-col">
  29.                             {% include "front/blog/_blog-card.html.twig" %}
  30.                         </div>
  31.                     {% endfor %}
  32.                 {% else %}
  33.                     <div class="col-lg-12">
  34.                         <div class="blog-box">
  35.                             <p class="empty-blog">{{ "blog.no_articles_found" | trans }}</p>
  36.                         </div>
  37.                     </div>
  38.                 {% endif %}
  39.             </div>
  40.         </div>
  41.     </section>
  42.     {% include "front/blog/_blog-cta.html.twig" %}
  43. {% endblock %}