{% extends 'frontend/front-end-base.html.twig' %} {% block title %} {{ page_title|default('News Article')|raw|striptags }} {% endblock %} {% block body %} {% set title = 'Content has been removed' %} {% if blogArticle is not null %} {% set title = blogArticle.title|default('News Article') %} {% endif %} {% embed "frontend/panel/content-page-title.html.twig" %} {% block pageTitle %} {{ page_title|raw|default('News Article') }} {% endblock %} {% block bannerImage %} {% if blogArticle is not null and blogArticle.imagePath is not null %} {% set imagePath = asset(imageDirectory ~ blogArticle.imagePath) %} background: url('{{ imagePath }}') top center no-repeat; background-size: cover; {% endif %} {% endblock %} {% block headerFontClass %} text-white {% endblock %} {% endembed %}
{% if blogArticle.subtitle is defined and blogArticle.subtitle is not null %}

{{ blogArticle.subtitle }}

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

Oops! The article you are trying to access is currently not available. Please try again later

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