deblan.tv/app/Resources/views/mail.html.twig
2015-03-02 21:57:49 +01:00

62 lines
823 B
Twig

{% set host = app.request.getSchemeAndHttpHost() %}
<!DOCTYPE HTML>
<html lang="fr">
<head>
<meta charset="UTF-8">
<style type="text/css">
td, th {
text-align: left;
}
body {
background: #eee;
font-family: Verdana;
}
#deblan, #footer {
background: #333;
padding: 10px;
font-size: 20px;
color: #fff;
}
#deblan a, #footer a {
color: #fff;
text-decoration: none;
}
#footer {
font-size: 11px;
text-align: center;
}
table {
background: #fff;
border: 1px solid #333;
}
td, th {
padding: 10px;
font-size: 12px;
}
td a {
color: #4D6198;
}
</style>
</head>
<body>
<div id="deblan">
{% block title %}<a href="http://www.deblan.tv">www.deblan.tv</a>{% endblock %}
</div>
<table width="100%">
{% block body %}{% endblock %}
</table>
<div id="footer">
{% block footer %}{% endblock %}
</div>
</body>
</html>