templates/public/welcome/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% set title = 'public.welcome.page_title.index'|trans %}
  3. {% block title %}{{ title }}{% endblock %}
  4. {% block stylesheets %}
  5.     {{ parent() }}
  6.     <style>
  7.         .prins-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 15px/1.5 sans-serif; }
  8.         .prins-wrapper code { background: #F5F5F5; padding: 2px 6px; }
  9.         .centered {
  10.             position: absolute;
  11.             left: 50%;
  12.             top: 50%;
  13.             -webkit-transform: translate(-50%, -50%);
  14.             transform: translate(-50%, -50%);
  15.         }
  16.         .centered img { width: 100%; height: auto; }
  17.         .centered h1 {text-align: center; }
  18.     </style>    
  19. {% endblock %}
  20. {% block body %}
  21. <div class="prins-wrapper">
  22.     <div class="centered">
  23.         <h1>{{ title }}</h1>
  24.         <img src="{{ paths['images'] }}loghi.jpg" alt="PrInS48 loghi">
  25.     </div>
  26. </div>
  27. {% endblock %}