templates/post/by-id.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}
  3.   {{ post.title }} – Николай Макаров
  4. {% endblock %}
  5. {% block head %}
  6.   <meta name="description" content="{{ description }}">
  7.   <meta property="og:title" content="{{ post.title }} – Николай Макаров">
  8.   <meta property="og:description" content="{{ description }}">
  9.   <meta property="og:image" content="{{ asset('photos/' ~ photo) }}">
  10.   <meta property="og:type" content="article">
  11.   {{ parent() }}
  12. {% endblock %}
  13. {% block body %}
  14.   <div class="flex justify-center">
  15.     <div class="max-w-3xl w-full bg-white dark:bg-neutral-700 shadow-lg rounded-lg p-8">
  16.       
  17.       {% if photo %}
  18.         <div class="float-left m-4">
  19.           <img src="{{ asset('photos/' ~ photo) }}" alt="Изображение к статье '{{ post.title }}'" class="object-cover w-full h-full rounded-lg rounded-b-none">
  20.         </div>
  21.       {% else %}
  22.         <div class="flex justify-center">
  23.           <img src="/photos/abstract.jpg" alt="Заглушка – изображение отсутствует" class="object-cover w-full h-full rounded-lg rounded-b-none">
  24.         </div>
  25.       {% endif %}
  26.       {% if post %}
  27.         <div class="mt-4">
  28.           <h1 class="text-3xl font-bold mb-4 text-center dark:text-white">{{ post.title }}</h1>
  29.           <p class="text-lg mx-5 dark:text-white">{{ post.body|nl2br }}</p>
  30.           
  31.           <p class="text-center mt-4">
  32.             Дата создания: {{ post.createdAt|date('d/m/Y') }}
  33.           </p>
  34.           <p class="text-center">
  35.             Жанр:
  36.             <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>
  37.           </p>
  38.         </div>
  39.       {% else %}
  40.         <p class="text-center">Статья не найдена.</p>
  41.       {% endif %}
  42.     </div>
  43.   </div>
  44. {% endblock %}