{%- import (components or "manhattan/manage/emails/components.html") as _email -%}
|
{{ _email.spacer(class='tab-hide') }}
{#
Header
--
The top part of the email containing the logo and a button
link to the project.
#}
{% block header %}
{% endblock %}
{#
Main
--
The middle part of the email and the outer container of the
email content.
#}
{% block main %}
|
|
{#
Content
--
All content specicic to this email should be
placed inside of the `content` block.
#}
{% block content %}{% endblock %}
|
|
|
{% endblock %}
{#
Footer
--
The bottom part of the email containing some text about the
project and why the user received the email.
#}
{% block footer %}
{% endblock %}
|
{{ _email.spacer(class='tab-hide') }}
|
|
|