{% extends 'base.html.twig' %}
{% block title %}
{{ post.title }} – Николай Макаров
{% endblock %}
{% block head %}
<meta name="description" content="{{ description }}">
<meta property="og:title" content="{{ post.title }} – Николай Макаров">
<meta property="og:description" content="{{ description }}">
<meta property="og:image" content="{{ asset('photos/' ~ photo) }}">
<meta property="og:type" content="article">
{{ parent() }}
{% endblock %}
{% block body %}
<div class="flex justify-center">
<div class="max-w-3xl w-full bg-white dark:bg-neutral-700 shadow-lg rounded-lg p-8">
{% if photo %}
<div class="float-left m-4">
<img src="{{ asset('photos/' ~ photo) }}" alt="Изображение к статье '{{ post.title }}'" class="object-cover w-full h-full rounded-lg rounded-b-none">
</div>
{% else %}
<div class="flex justify-center">
<img src="/photos/abstract.jpg" alt="Заглушка – изображение отсутствует" class="object-cover w-full h-full rounded-lg rounded-b-none">
</div>
{% endif %}
{% if post %}
<div class="mt-4">
<h1 class="text-3xl font-bold mb-4 text-center dark:text-white">{{ post.title }}</h1>
<p class="text-lg mx-5 dark:text-white">{{ post.body|nl2br }}</p>
<p class="text-center mt-4">
Дата создания: {{ post.createdAt|date('d/m/Y') }}
</p>
<p class="text-center">
Жанр:
<a href="{{ path('post_by_genre', {'genre': post.genre}) }}" class="text-blue-500 underline hover:text-red-500 cursor-pointer" aria-label="Перейти к жанру {{ post.genre }}">{{ post.genre }}</a>
</p>
</div>
{% else %}
<p class="text-center">Статья не найдена.</p>
{% endif %}
</div>
</div>
{% endblock %}