- {% stylesheet '@rapsys_air_bundle/css/{reset,irishgrover,labelleaurore,screen}.css' %}
- <link rel="stylesheet" type="text/css" href="{{ asset_url }}" />
- {% endstylesheet %}
+ {% stopwatch 'stylesheet' %}
+ {% stylesheet '@rapsys_air_bundle/css/{reset,droidsans,screen}.css' %}
+ <link rel="stylesheet" type="text/css" href="{{ asset_url }}" />
+ {% endstylesheet %}
+ {% endstopwatch %}
+ {% if canonical is defined and canonical %}
+ <link rel="canonical" href="{{ canonical }}"{% if app.request.locale is defined and app.request.locale %} hreflang="{{ app.request.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 ogps is defined and ogps %}
+ {% for property, content in ogps %}
+ <meta property="og:{{ property }}" content="{{ content }}" />
+ {% endfor %}
+ {% for property, contents in facebooks %}
+ {% if contents is iterable %}
+ {% for content in contents %}
+ <meta property="fb:{{ property }}" content="{{ content }}" />
+ {% endfor %}
+ {% else %}
+ <meta property="fb:{{ property }}" content="{{ contents }}" />
+ {% endif %}
+ {% endfor %}
+ {% endif %}