templates/mails/base.html.twig line 1

Open in your IDE?
  1. {% apply inline_css(source('mails/theme.css')) %}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6.     <title>{% block title %}ORES{% endblock %}</title>
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.     <link rel="stylesheet" href="//cdn.jsdelivr.net/gh/lucaburgio/iconoir@master/css/iconoir.css">
  9. </head>
  10. <body>
  11. <table align="center" cellpadding="0" cellspacing="0" width="600">
  12.     <tbody>
  13.         <tr>
  14.             <td>
  15.                 {% include 'mails/layout/header.html.twig' %}
  16.             </td>
  17.         </tr>
  18.         <tr>
  19.             <td>
  20.                 {% block body %}{% endblock %}
  21.             </td>
  22.         </tr>
  23.         <tr>
  24.             <td>
  25.                 {% include 'mails/layout/footer.html.twig' %}
  26.             </td>
  27.         </tr>
  28.     </tbody>
  29. </table>
  30. </body>
  31. </html>
  32. {% endapply %}