evoleasing-public/index.php
2021-12-16 13:12:04 +03:00

51 lines
1.1 KiB
PHP

<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("Эволюция автолизинга. Лизинг автомобилей");
?>
<? $APPLICATION->IncludeComponent(
"evolution:slider.main",
"",
Array()
); ?>
<section id="filter">
<div class="container">
<? $APPLICATION->IncludeComponent(
"evolution:form.catalog.filter",
"",
Array(
"SELECTED" => []
)
); ?>
</div>
</section>
<? $APPLICATION->IncludeComponent(
"evolution:calculator",
"",
Array(
"car_price" => 2500000,
"initial_payment" => 20,
"lease_period" => 15,
"redemption_payment" => 5,
"CAR_PRICE_MIN" => 500000,
"CAR_PRICE_MAX" => 20000000,
"INITIAL_PAYMENT_MIN" => 5,
"INITIAL_PAYMENT_MAX" => 50,
"LEASE_PERIOD_MIN" => 7,
"LEASE_PERIOD_MAX" => 60,
"REDEMPTION_PAYMENT_MIN" => 1,
"REDEMPTION_PAYMENT_MAX" => 5,
)
); ?>
<? $APPLICATION->IncludeComponent(
"evolution:news.list.main",
"",
Array()
); ?>
<? $APPLICATION->IncludeComponent(
"evolution:form.leasing",
"",
Array()
); ?>
<?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>