{% extends 'base.html.twig' %} {% block content %}
{% if paste.author %} {{ paste.author }} {% else %} anonymous {% endif %}
{{ paste.language }}
{{ paste.datePublished | date('Y.m.d H:i') }}
{% if paste.dateExpire %} {{ paste.dateExpire | date('Y.m.d H:i') }} {% endif %}
{% if paste.description %}
{{ paste.description | nl2br }}
{% endif %}
{{ highlighted_text | raw }}
{# This form recieves form_create object from current context #} {% include 'Form/form_paste_create.html.twig' %}
{% endblock %}