{% extends 'base.html.twig' %}
{% set title = 'public.welcome.page_title.index'|trans %}
{% block title %}{{ title }}{% endblock %}
{% block stylesheets %}
{{ parent() }}
<style>
.prins-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 15px/1.5 sans-serif; }
.prins-wrapper code { background: #F5F5F5; padding: 2px 6px; }
.centered {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.centered img { width: 100%; height: auto; }
.centered h1 {text-align: center; }
</style>
{% endblock %}
{% block body %}
<div class="prins-wrapper">
<div class="centered">
<h1>{{ title }}</h1>
<img src="{{ paths['images'] }}loghi.jpg" alt="PrInS48 loghi">
</div>
</div>
{% endblock %}