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

16 lines
357 B
Twig
Executable File

{% block title %}
{% if title is defined %}
<h1>{{ title }}</h1>
{% else %}
<h1>{{ WEBSITE_NAME }} - email</h1>
{% endif %}
<hr>
{% endblock %}
{% block stylesheets %}{% endblock %}
{% block content %}
{% endblock %}
{% block footer %}
{% include 'emails/footer.html.twig' %}
{% endblock %}