18 lines
517 B
PHP
18 lines
517 B
PHP
<div class="graduation__packet">
|
|
<div class="text">
|
|
<h3><?php echo $template_args[title] ?></h2>
|
|
<p><span><?php echo $template_args[price] ?></span> ₽ / <span>человек</span></p>
|
|
</div>
|
|
<div class="packet_description">
|
|
<ul>
|
|
<?php
|
|
if ($template_args['description']) foreach ($template_args['description'] as &$point) {
|
|
?>
|
|
<li><?php echo $point; ?></li>
|
|
<?php
|
|
}
|
|
?>
|
|
</ul>
|
|
</div>
|
|
<button class="graduation-btn" id="offer-btn">Заказать</button>
|
|
</div>
|