Initial commit
This commit is contained in:
19
playarea/templates/productCategory/about.php
Normal file
19
playarea/templates/productCategory/about.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php $page = $b->ls_get_key("page"); ?>
|
||||
<?php $about_title = $page->get_prop_render_value("about_title"); ?>
|
||||
<?php $about_block_left = $page->get_prop_render_value("about_block_left"); ?>
|
||||
<?php $about_block_right = $page->get_prop_render_value("about_block_right"); ?>
|
||||
<?php if(!$about_title || !$about_block_left) return; ?>
|
||||
|
||||
<section class="textblock section post">
|
||||
<div class="container">
|
||||
<h2 class="textblock__heading little"><?= $about_title; ?></h2>
|
||||
<div class="textblock__cont">
|
||||
<div class="textblock__left">
|
||||
<?= $about_block_left; ?>
|
||||
</div>
|
||||
<div class="textblock__right">
|
||||
<?= $about_block_right; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user