X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/3dbbe31ddc43dadbde22d27988935650585f1612..91671b558fea0f751b36a4ae6fb796751af0ca4a:/Resources/views/body.html.twig diff --git a/Resources/views/body.html.twig b/Resources/views/body.html.twig index f551bc9..aba7827 100644 --- a/Resources/views/body.html.twig +++ b/Resources/views/body.html.twig @@ -5,7 +5,7 @@ {% block stylesheets %} <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="shortcut icon" type="image/x-icon" href="{{ asset(site_ico) }}" /> - <link ref="icon" type="image/svg+xml" href="{{ asset(site_svg) }}" /> + <link rel="icon" type="image/svg+xml" href="{{ asset(site_svg) }}" /> {% for size, icon in site_png %} {# Apple #} {% if size in [152, 167, 180] %} @@ -18,7 +18,7 @@ <meta name="msapplication-square{{ size }}x{{ size }}logo" content="{{ asset(icon) }}" /> {# Others #} {% else %} - <link rel="icon" type="image/png" size="{{ size }}x{{ size }}" href="{{ asset(icon) }}" /> + <link rel="icon" type="image/png" sizes="{{ size }}x{{ size }}" href="{{ asset(icon) }}" /> {% endif %} {% endfor %} {# stylesheet '//fonts.googleapis.com/css?family=Irish+Grover' '//fonts.googleapis.com/css?family=La+Belle+Aurore' '@RapsysAirBundle/Resources/public/css/{reset,screen}.css' #} @@ -39,11 +39,11 @@ {% block body %} {% block header %} <header id="header"> - {% block header_title %}<h1><a href="{{ site_url }}"><img src="{{ asset(site_logo) }}" alt="{{ site_title }}" /></a></h1>{% endblock %} + {% block header_title %}<h1><a href="{{ site_url }}" title="{{ site_title }}"><img src="{{ asset(site_logo) }}" alt="{{ site_title }}" width="171" height="32" /></a></h1>{% endblock %} {% block header_nav %} <nav> <h2>{% trans %}Navigation{% endtrans %}</h2> - <a href="{{ path('rapsys_air_location') }}">{% trans %}Locations{% endtrans %}</a> + <a href="{{ path('rapsys_air_session') }}">{% trans %}Sessions{% endtrans %}</a> <a href="{{ path('rapsys_air_user') }}">{% trans %}Users{% endtrans %}</a> <a href="{{ path('rapsys_air_contact') }}">{% trans %}Contact{% endtrans %}</a> <a href="{{ path('rapsys_air_regulation') }}">{% trans %}Regulation{% endtrans %}</a> @@ -73,7 +73,7 @@ {# pass an array argument to get the messages of those types (['warning', 'error']) #} {% for label, messages in app.flashes %} {% if messages %} - <div class="flash {{label}}"> + <div class="message {{label}}"> <ul> {% for message in messages %} <li>{{ message }}</li>