{% extends '_parts/realty/print/_base-realty-print.html.twig' %}
{% block print_heading %}
{% set article = layout.article %}
{% set readyDate = get_ready_date(layout) %}
{{ parent() }}
{% endblock %}
{% block info_list %}
{% set features = get_layout_features(layout) %}
{{ parent() }}
{% endblock %}
{% block total_price %}
{% set squarePrice = get_layout_square_price(layout) %}
{% include '_parts/realty/_layout-price-block-print.html.twig' with {
class: 'layout-modal-base-print__price-block',
priceFrom: true,
price: layout.price,
squarePrice: squarePrice
} %}
{% endblock %}
{% block ending %}
{% set apartmentsByPrice = get_apartments_by_price(layout) %}
{% include '_parts/realty/_layout-apartments-print.html.twig' with {
class: 'layout-modal-base-print__apartments',
apartments: apartmentsByPrice
} %}
{% endblock %}