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 %}Fiscoo{% 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.             color: #000;
  13.         }
  14.         body {
  15.         }
  16.         body a {
  17.             text-decoration: underline;
  18.         }
  19.     </style>
  20.     {% block stylesheets %}{% endblock %}
  21. </head>
  22. <body>
  23.     <div class="container mx-auto my-10 px-10">
  24.         {% block body %}{% endblock %}
  25.     </div>
  26. </body>
  27. </html>