{% extends 'front-end-base.html.twig' %} {% block title %} {{ page_title|default('Blog Article') }} {% endblock %} {% block body %} {% set title = 'Content has been removed' %} {% if blogArticle is not null %} {% set title = blogArticle.title|default('Blog Article') %} {% endif %}

{{ title }}

{% if blogArticle is not null and blogArticle.summary|length>0%}

{{ blogArticle.summary }}

{% endif %}
{% if blogArticle is not null %}
{% if blogArticle.imagePath is not null %} Banner {% endif %}
{{ blogArticle.content|raw }}
{% else %}

Oops! Looks like this page may have been removed or unpublished for editing. Please try again later

{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}