templates/email/base.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="{{ locale }}">
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5.     <meta name="viewport" content="width=device-width">
  6.     <title>GetMeBack</title>
  7. </head>
  8. <body>
  9.     {% block content %}
  10.     {% endblock %}
  11. </body>
  12. </html>