templates/Content/Public/Blog/index.ajax.twig line 1

Open in your IDE?
  1. <h3 class="text-uppercase blog-headline font-28 font-weight-medium text-center background-light-blue color-primary mb-3">Blog</h3>
  2. <h1 class="text-capitalize d-flex justify-content-center font-90 font-weight-bold line-height-102">{{ 'blog.latest-news'|trans }}</h1>
  3. <p class="text-color-grey d-flex mw-73 text-center ml-auto mr-auto font-26 line-height-113 mt-27 mb-3">
  4. {{ 'blog.description'|trans }}
  5. </p>
  6. <div class="row grid-2-3">
  7. {% for post in blog %}
  8. {% include 'Content/Public/Blog/post_' ~ post.type ~ '.html.twig' %}
  9. {% endfor %}
  10. </div>