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

{{ page.subtitle }}

{% endif %}
{#
#} {# {% if page.imagePath is not null %}#} {# Banner #} {# {% endif %}#} {#
#}
{{ page.content|raw }} {% if page.document is not null %}

View PDF Document

{% endif %} {#

#} {# Read More About {{ system_name }}#} {#

#}
{% else %}

Oops! Looks like you found this page after it had been removed. Please try again later

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