oacpl/templates/email.html

40 lines
1.4 KiB
HTML
Raw Normal View History

2017-09-29 19:00:10 -04:00
{% load static %}
<div style="width: calc(100% - 2px); border: solid 1px rgba(0,0,0,0.2)">
2018-01-12 00:23:09 -05:00
<div style="width: calc(100% - 1rem); background-color: #00305b; color: #ffffff; padding: 0.5rem">
2018-01-14 17:15:28 -05:00
<img src="{{ base_url }}{% static 'main/img/logo.png' %}" width="30" height="30" style="display: inline-block; vertical-align: top; margin: 1em;" alt="">
2018-01-12 00:23:09 -05:00
<div style="display: inline-block; font-size: 1.25rem;">
2017-09-29 19:00:10 -04:00
ONTARIO ASSOCIATION OF
<br>
CHILD PROTECTION LAWYERS
</div>
</div>
2018-01-12 00:23:09 -05:00
<div style="padding: 0.5rem;">
2017-09-29 19:00:10 -04:00
{% if name %}
Hello {{ name }},
<br>
<br>
{% endif %}
{% autoescape off %}
{{ content }}
{% endautoescape %}
{% if signature %}
{{ signature }}
{% else %}
<br>
<br>
--
<br>
<br>
Sincerely,
<br>
The OACPL Team
{% endif %}
</div>
2018-01-12 00:23:09 -05:00
<div style="background-color: #00305b; color: #ffffff; width:100%">
2017-09-29 19:00:10 -04:00
<div style="text-align: center">
2018-01-14 18:37:10 -05:00
<p style="margin-bottom: 0;">© 2017 Ontario Association of Child Protection Lawyers. Created By <a href="http://zakscode.com">Zak Timson</a>{% if unsubscribe %} Unsubscribe <a href="{% url 'unsubscribe' %}">here</a>{% endif %}</p>
2017-09-29 19:00:10 -04:00
</div>
</div>
2017-09-29 19:00:10 -04:00
</div>