{# HTML email framing Based on a template by Lee Munroe * https://github.com/leemunroe/responsive-html-email-template Takes in template context variable ``email_css`` that is a template name for CSS code to be included within ```` block. #} {{subject}} {% if email_css %} {% else %} {% endif %} {% block extra_head %} {% endblock %}
{% block header %} {% include "email/header.html" %} {% endblock %}
{% block content %} ... {% endblock content %}
{% block footer %} {% include "email/footer.html" %} {% endblock %}