templates/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}
  3. <style>
  4. .fullscreenDiv{background-color:#e8e8e8;width:100%;height:auto;bottom:0;top:0;left:0;position:absolute}.center{position:absolute;text-align:center;width:200px;height:80px;top:50%;left:50%;margin-top:-40px;margin-left:-100px}h1{font-family:'Poppins', sans-serif}
  5. </style>
  6. {% endblock %}
  7. {% block body %}
  8. <div class='fullscreenDiv'>
  9.     <div class="center"><h1>{{global_app_name}}</h1></div>
  10. </div>
  11. {% endblock %}
  12. {% block javascripts %}
  13.   {{parent()}}
  14. {% endblock %}