mirror of
https://framagit.org/tykayn/date-poll-api
synced 2023-08-25 08:23:11 +02:00
39 lines
824 B
Twig
39 lines
824 B
Twig
<div class="email">
|
|
|
|
<style>
|
|
html, body, main, header, footer, div {
|
|
font-family: "Open Sans", "Helvetica Neue", sans-serif;
|
|
}
|
|
.email{
|
|
padding: 1em;
|
|
}
|
|
.footer-content{
|
|
background: #ccc;
|
|
}
|
|
ul {
|
|
border-left: 3px solid #ddd;
|
|
}
|
|
</style>
|
|
<header>
|
|
{% block title %}
|
|
{% if title is defined %}
|
|
<h1>{{ title }}</h1>
|
|
{% else %}
|
|
<h1>Framadate - email</h1>
|
|
{% endif %}
|
|
<hr>
|
|
{% endblock %}
|
|
</header>
|
|
<main>
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
</main>
|
|
<footer>
|
|
{% block footer %}
|
|
{% include 'emails/footer.html.twig' %}
|
|
{% endblock %}
|
|
</footer>
|
|
|
|
</div>
|