{% extends 'base.html.twig' %}
{% block css_plugins %}
<link href="{{ asset('public/plugins/datepicker/css/bootstrap-datepicker.min.css') }}" rel="stylesheet"/>
<link href="{{ asset('public/plugins/slickcarousel/slick.css') }}" rel="stylesheet"/>
<link href="{{ asset('public/plugins/slickcarousel/slick-theme.css') }}" rel="stylesheet"/>
{% endblock %}
{% block title %}
{% trans %} homeh1 {% endtrans %}
{% endblock %}
{% block body %}
{# locale js variable #}
<script>
var erasmusLocale = '{{ lang_locale }}';
</script>
{% include 'public/_main_menu.html.twig' with {'menuclass': 'mainpage'} %}
<div class="container-fluid homebanner">
{% include 'public/_home_search.html.twig' %}
</div>
{# latest listings #}
{% if rooms | length == 12 %}
<p class="text-center pad2_20">
{% trans %} latestlistings {% endtrans %}: {% trans %} rooms {% endtrans %} <br>
<i class="fas fa-arrows-alt-h"></i>
</p>
{% include 'public/_home_latest_listings.html.twig' with {'listing':rooms, 'listingtype':'room'} %}
{% endif %}
{# latest listings #}
{% if flats | length == 12 %}
<p class="text-center pad2_20">
{% trans %} latestlistings {% endtrans %}: {% trans %} flats {% endtrans %} <br>
<i class="fas fa-arrows-alt-h"></i>
</p>
{% include 'public/_home_latest_listings.html.twig' with {'listing':flats, 'listingtype':'flat'} %}
{% endif %}
{# end latest listings #}
{% if lang_locale == 'es' %}
{% include 'public/content/_home_es.html.twig' %}
{% endif %}
{% include 'public/_footer.html.twig' %}
{% include 'public/modals/_preview_modal.html.twig' %}
{% endblock %}
{% block custom_js %}
<script src="{{ asset('public/plugins/datepicker/js/bootstrap-datepicker.min.js') }}"></script>
<script src="{{ asset('public/plugins/slickcarousel/slick.js') }}"></script>
<script src="{{ asset('public/js/homepage.js') }}"></script>
{% endblock %}