{% extends 'html/base.html' %}
{% block styles %}
{{ super() }}
{% endblock %}
{% block body_classes %}booking-page{% endblock %}
{% block body %}
{% include "html/header/booking.html" %}
{% include "html/listings/booking.html" %}
{% include "html/footer/booking.html" %}
{% endblock %}
{% block javascripts %}
{{ super() }}
{% endblock %}