{% extends '@RapsysAir/base.html.twig' %} {% block metas %} <meta charset="UTF-8" /> {% endblock %} {% block stylesheets %} <meta name="viewport" content="width=device-width, initial-scale=1" /> {% if page.description is defined and page.description %} <meta name="description" content="{{ page.description }}" /> {% endif %} {% if keywords is defined and keywords %} <meta name="keywords" content="{{ keywords|join(', ') }}" /> {% endif %} {% if site is defined and site %} <link rel="shortcut icon" type="image/x-icon" href="{{ asset(site.ico) }}" /> <link rel="icon" type="image/svg+xml" href="{{ asset(site.svg) }}" /> {% for size, icon in site.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 '@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 %} {% endblock %} {% block javascripts %} {% stopwatch 'javascript' %} {#{% javascript '@RapsysAir/js/*.js' %} <script type="text/javascript" src="{{ asset_url }}"></script> {% endjavascript %}#} {% endstopwatch %} {% endblock %} {% block title %}{{ [site.title, page.section, page.title]|filter(v => v)|join(' - ') }}{% endblock %} {% block body %} {% block header %} <header id="header"> {% if site is defined and site %} {% 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 %} {% endif %} {% block header_nav %} <nav> <h2>{% trans %}Navigation{% endtrans %}</h2> <ul> <li><a href="{{ path('rapsys_air') }}" rel="home">{% trans %}Home{% endtrans %}</a></li> <li><a href="{{ path('rapsys_air_contact') }}" rel="contact">{% trans %}Contact{% endtrans %}</a></li> <li><a href="{{ path('rapsys_air_frequently_asked_questions') }}">{% trans %}Frequently asked questions{% endtrans %}</a></li> <li><a href="{{ path('rapsys_air_user') }}">{% trans %}Users{% endtrans %}</a></li> {% if is_granted('ROLE_GUEST') %} <li><a href="{{ path('rapsys_air_organizer_regulation') }}">{% trans %}Organizer regulation{% endtrans %}</a></li> {% endif %} {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %} <li><a href="{{ path('rapsys_air_user_view', {id: app.user.id}) }}">{% trans %}My account{% endtrans %}</a></li> <li><a href="{{ path('rapsys_user_logout') }}">{% trans %}Logout{% endtrans %}</a></li> {% else %} <li><a href="{{ path('rapsys_user_login') }}">{% trans %}Login{% endtrans %}</a></li> <li><a href="{{ path('rapsys_user_register') }}">{% trans %}Register{% endtrans %}</a></li> {% endif %} </ul> </nav> {% endblock %} {# {% block site_subtitle %}{% endblock %} {% block site_tagline %} {% if tags is defined and tags %} <ul> {% for id, tag in tags %} <li><h2><a href="#{{id}}">{{tag}}</a></h2></li> {% endfor %} </ul> {% endif %} {% endblock %} #} </header> {% endblock %} {% block message %} {# pass an array argument to get the messages of those types (['warning', 'error']) #} {% for label, messages in app.flashes %} {% if messages %} <div class="message {{label}}"> <ul> {% for message in messages %} <li>{{ message }}</li> {% endfor %} </ul> </div> {% endif %} {% endfor %} {% endblock %} {# {% block sidebar %}<aside id="sidebar"></aside>{% endblock %} #} {% block content %} <section id="content"> <h2><a href="{{ path('rapsys_air_homepage') }}">{{ section }}</a></h2> <p>{% trans %}Outdoor space reservation system{% endtrans %}</p> </section> {% endblock %} {% block footer %} <footer id="footer"> <a href="{{ path('rapsys_air_about') }}">{% trans %}About{% endtrans %}</a> {% if copy is defined and copy %} <details><summary>{{ copy.long }}</summary><span>{{ copy.short }} <a href="{{ copy.link }}" title="{{ copy.title }}" rel="author">{{ copy.by }}</a></span></details> {% endif %} <a href="{{ path('rapsys_air_terms_of_service') }}">{% trans %}Terms of service{% endtrans %}</a> {% if alternates is defined and alternates %} {% set langs = alternates|keys|filter(v => v|length == 5) %} {% if langs|length > 1 %} <ul> {% for lang in langs %} <li><a href="{{ alternates[lang].relative }}" hreflang="{{ lang }}" title="{{ alternates[lang].title }}">{{ alternates[lang].translated }}</a></li> {% endfor %} </ul> {% else %} {% set lang = langs|first %} <a href="{{ alternates[lang].relative }}" hreflang="{{ lang }}" title="{{ alternates[lang].title }}">{{ alternates[lang].translated }}</a> {% endif %} {% else %} <span> </span> {% endif %} </footer> {% endblock %} {% endblock %}