{% extends 'base_front.html.twig' %}
{% block body %}
<section class="bg-light-grey post-single">
<div class="text-center col-md-12 pt-5 pb-5">
<h2 class="red">{{ post.title }}</h2>
</div>
<div class="col-md-10 col-xl-8 m-auto row justify-content-between single-post pt-5">
<div class="col-12 col-md-12 col-lg-5 img-post">
<img src="{{ asset(constant('App\\Services\\UploadFileService::POST_IMAGE_DIR') ~ post.image) }}">
<div class="row pl-3 mt-4">
<div class="share-social d-flex">
<span class="grey">Partager</span>
<ul class="d-flex">
<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>
<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>
<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>
<li class="ml-3"><button class="p-0" onclick="navigator.clipboard.writeText(window.location.href);"><img src="{{ asset('img/social/link.svg') }}"></button></li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6" id="postContent">
<div class="date-post green mb-5">
{{ post.createdAt|date('d-m-Y') }}
</div>
{{ post.content|raw }}
</div>
</div>
</section>
{% endblock %}