{% extends "base.html.twig" %}
{% block metaTags %}
<meta name="description" content="{{ post.metaDescription }}">
<title>{{ post.metaTitle }}</title>
{% endblock %}
{% block body %}
<div class="container">
{% if asbtemplate.post.title %}
<h1>{{ post.title }}</h1>
{% endif %}
<hr/>
{% if asbtemplate.post.intro %}
<p>{{ post.intro|raw }}</p>
{% endif %}
{% if asbtemplate.post.date %}
<p>{{ post.date|date("d/m/Y") }}</p>
{% endif %}
{% if asbtemplate.post.paragraphs %}
{% for key, paragraph in paragraphs %}
<div>
{% if asbtemplate.paragraph.content and paragraph.content %}
<div>
{{ paragraph.content|raw }}
</div>
{% endif %}
{% if asbtemplate.paragraph.paragraphFile and paragraph.paragraphFileName %}
<div class="text-center">
<img src="{{ asset(vich_uploader_asset(paragraph, 'paragraphFile')) }}"
{% if asbtemplate.paragraph.legend and paragraph.legend %}
alt="{{ paragraph.legend }}"
{% endif %}
/>
</div>
{% if asbtemplate.paragraph.legend and paragraph.legend %}
<p>{{ paragraph.legend }}</p>
{% endif %}
{% endif %}
</div>
{% endfor %}
{% endif %}
</div>
{% endblock %}