date-poll-api/templates/email-base-plaintext.html.twig

16 lines
357 B
Twig
Raw Normal View History

2020-04-16 16:35:06 +02:00
{% block title %}
{% if title is defined %}
<h1>{{ title }}</h1>
{% else %}
2021-05-21 09:33:31 +02:00
<h1>{{ WEBSITE_NAME }} - email</h1>
2020-04-16 16:35:06 +02:00
{% endif %}
<hr>
{% endblock %}
{% block stylesheets %}{% endblock %}
{% block content %}
{% endblock %}
{% block footer %}
{% include 'emails/footer.html.twig' %}
{% endblock %}