templates/pub/home.html.twig line 1

Open in your IDE?
  1. {% extends 'pub/base.html.twig' %}
  2. {% block stylesheets %}
  3.     <style>
  4.         body {
  5.             background: #f0f0f0;
  6.             height: 100%;
  7.             text-align: center;
  8.         }
  9.         img {
  10.             display: inline-block;
  11.             text-align: center;
  12.         }
  13.     </style>
  14. {% endblock %}
  15. {% block body %}
  16.     <img src="logo.png" />
  17. {% endblock %}