{% extends 'base.html.twig' %} {% block content %} {% if post %}

{% apply markdown_to_html %}{{ post.title }}{% endapply %}

{% apply markdown_to_html %}{{ post.description }}{% endapply %}

{% apply markdown_to_html %}
{{ post.content }}
{% endapply %}
{% else %}

Post not found

I don't have a blog post '{{ slug }}'.

Go back to Blog.

{% endif %} {% endblock %}