templates/pub/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <link rel="shortcut icon" href="{{ asset('favicon.png') }}" />
  6.     <title>{% block title %}Breaking Ice{% endblock %}</title>
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8.     <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
  9.     <style>
  10.         html {
  11.             min-height: 100%;
  12.             background: linear-gradient(#fca963, #e99887, #da8aa8, #b285cd, #80a1cb, #52bcc9);
  13.             color: #000;
  14.         }
  15.         body {
  16.             color: #fff;
  17.         }
  18.         body a {
  19.             color: #fff;
  20.             text-decoration: underline;
  21.         }
  22.     </style>
  23.     {% block stylesheets %}{% endblock %}
  24. </head>
  25. <body>
  26.     <div class="container mx-auto my-10 px-10">
  27.         {% block body %}{% endblock %}
  28.     </div>
  29. </body>
  30. </html>