{% block content_text %}{% endblock %}
{% block content_html %}{% endblock %}
{% block background_color %}afafaf{% endblock %}
{% block body_text -%}
{%- set _text_content -%}
{{ block('content_text') }}
{%- endset -%}
{%- if _text_content -%}
{{ _text_content|raw }}
{% block text_signature %}
{% include 'SmartCoreBundle:mail:signature.txt.twig' %}
{%- endblock %}
{%- endif -%}
{%- endblock %}
{% block body_html -%}
{%- set _html_content -%}{% apply spaceless %}{{ block('content_html') }}{% endapply %}{%- endset -%}
{%- if _html_content -%}
{{ smart.project_title }}
{% block inner_body_html %}
|
{{ _html_content }}
|
|
{% block html_signature %}
{% include 'SmartCoreBundle:mail:signature.html.twig' %}
{%- endblock %}
|
{% endblock %}
{%- endif -%}
{%- endblock %}