27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<?php $page = $b->ls_get_key("page"); ?>
|
|
<?php $b->script_add(array("src" => "https://api-maps.yandex.ru/2.1/?apikey=68f9a0ea-6fba-4a6e-9f0a-5a716b0b30d5&lang=ru_RU")); ?>
|
|
<?php $this->ls_set_key("breadcrumbs", array(array($page->get_item_name(), $b->router_get_canonical_uri()))); ?>
|
|
<?php $this->template_load("head.php"); ?>
|
|
<?php $this->template_load("header.php"); ?>
|
|
|
|
<main class="main">
|
|
<div class="policy">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 position-relative">
|
|
<a href="/" class="back-home">główna</a>
|
|
<h1 class="title-text"><span><?= $page->get_item_name(); ?></span></h1>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="default-box">
|
|
<?= $page->get_item_content(); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php $this->template_load("footer.php"); ?>
|