+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ {% if description is defined and description %}
+ <meta name="description" content="{{ description }}" />
+ {% endif %}
+ {% if keywords is defined and keywords %}
+ <meta name="keywords" content="{{ keywords|join(', ') }}" />
+ {% endif %}
+ {% if icon is defined and icon %}
+ <link rel="shortcut icon" type="image/x-icon" href="{{ asset(icon.ico) }}" />
+ <link rel="icon" type="image/svg+xml" href="{{ asset(icon.svg) }}" />
+ {% for size, icon in icon.png %}
+ {# Apple #}
+ {% if size in [120, 152, 167, 180] %}
+ {% if size == 180 %}
+ <link rel="apple-touch-icon" href="{{ asset(icon) }}" />
+ {% endif %}
+ <link rel="apple-touch-icon" sizes="{{ size }}x{{ size }}" href="{{ asset(icon) }}" />
+ {# Windows #}
+ {% elseif size in [70, 150, 310] %}
+ <meta name="msapplication-square{{ size }}x{{ size }}logo" content="{{ asset(icon) }}" />
+ {# Others #}
+ {% else %}
+ <link rel="icon" type="image/png" sizes="{{ size }}x{{ size }}" href="{{ asset(icon) }}" />
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+ {# stylesheet '//fonts.googleapis.com/css?family=Irish+Grover' '//fonts.googleapis.com/css?family=La+Belle+Aurore' '@RapsysAirBundle/Resources/public/css/{reset,screen}.css' #}
+ {% stopwatch 'stylesheet' %}
+ {% stylesheet '@RapsysAir/css/{reset,droidsans,lemon,notoemoji,screen}.css' %}
+ <link rel="stylesheet" type="text/css" href="{{ asset_url }}?20221024100144" />
+ {% endstylesheet %}
+ {% endstopwatch %}
+ {% if canonical is defined and canonical %}
+ <link rel="canonical" href="{{ canonical }}"{% if locale is defined and locale %} hreflang="{{ locale }}"{% endif %} />
+ {% endif %}
+ {% if alternates is defined and alternates %}
+ {% for lang, alternate in alternates %}
+ <link rel="alternate" href="{{ alternate.absolute }}" hreflang="{{ lang }}" />
+ {% endfor %}
+ {% endif %}
+ {% if facebook is defined and facebook %}
+ {% for property, contents in facebook %}
+ {% if contents is iterable %}
+ {% for content in contents %}
+ <meta property="{{ property }}" content="{{ content }}" />
+ {% endfor %}
+ {% else %}
+ <meta property="{{ property }}" content="{{ contents }}" />
+ {% endif %}
+ {% endfor %}
+ {% endif %}