app/Resources/views/blog_post/_single.html.twig line 1

Open in your IDE?
  1. <a href="{{ path('blog_post_show', {'uid': post.uid}) }}" class="layout-post">
  2.     <div class="layout-post__image" style="background-image:url('{{ post.imageUrl }}');">
  3.     </div>
  4.   <div class="layout-post__text">
  5.             <h4 class="layout-post__title">
  6.                 {{ post.title }}
  7.             </h4>
  8.             <p class="layout-post__subtitle">
  9.           {{ post.subtitle|length > 60 ? post.subtitle|slice(0, 60) ~ '...' : post.subtitle}}
  10.             </p>
  11.       <p class="layout-post__date">
  12.                     {{ post.published_at}}
  13.             </p>
  14.     </div>
  15. </a>