Initial commit

This commit is contained in:
Ivan Petrov
2025-12-24 19:19:01 +03:00
commit a7097c6178
19493 changed files with 94306 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php $page = $b->ls_get_key("page"); ?>
<?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">
<?php $this->template_load("breadcrumbs.php"); ?>
<h1 class="title-text"><span><?= $page->get_item_name(); ?></span></h1>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="policy-box text-center">
<?= $page->get_item_content(); ?>
</div>
</div>
</div>
</div>
</div>
</main>
<?php $this->template_load("footer.php"); ?>