templates/front/post/single.html.twig line 1

Open in your IDE?
  1. {% extends 'base_front.html.twig' %}
  2. {% block body %}
  3.     <section class="bg-light-grey post-single">
  4.         <div class="text-center col-md-12 pt-5 pb-5">
  5.             <h2 class="red">{{ post.title }}</h2>
  6.         </div>
  7.         <div class="col-md-10 col-xl-8 m-auto row justify-content-between single-post pt-5">
  8.             <div class="col-12 col-md-12 col-lg-5 img-post">
  9.                 <img src="{{ asset(constant('App\\Services\\UploadFileService::POST_IMAGE_DIR') ~ post.image) }}">
  10.                 <div class="row pl-3 mt-4">
  11.                     <div class="share-social d-flex">
  12.                         <span class="grey">Partager</span>
  13.                         <ul class="d-flex">
  14.                             <li><a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u={{ app.request.getSchemeAndHttpHost() ~ '/news/' ~ post.slug }}"><img src="{{ asset('img/social/facebook.svg') }}"></a></li>
  15.                             <li class="ml-3"><a target="_blank" href="https://twitter.com/share?url={{ app.request.getSchemeAndHttpHost() ~ '/news/' ~ post.slug }}"><img src="{{ asset('img/social/twitter.svg') }}"></a></li>
  16.                             <li class="ml-3"><a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url={{ app.request.getSchemeAndHttpHost() ~ '/news/' ~ post.slug }}&title={{ post.title|replace({' ': '%20'}) }}"><img src="{{ asset('img/social/linkedin.svg') }}"></a></li>
  17.                             <li class="ml-3"><button class="p-0" onclick="navigator.clipboard.writeText(window.location.href);"><img src="{{ asset('img/social/link.svg') }}"></button></li>
  18.                         </ul>
  19.                     </div>
  20.                 </div>
  21.             </div>
  22.             <div class="col-12 col-md-12 col-lg-6" id="postContent">
  23.                 <div class="date-post green mb-5">
  24.                     {{ post.createdAt|date('d-m-Y') }}
  25.                 </div>
  26.                 {{ post.content|raw }}
  27.             </div>
  28.         </div>
  29.     </section>
  30. {% endblock %}