This commit is contained in:
2024-05-20 15:37:46 +03:00
commit 00b7dbd0b7
10404 changed files with 3285853 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<?php
$banner_heading = isset($args['banner_heading']) ? $args['banner_heading'] : 'Зарегистрируйтесь и получите';
$paragraph_text = isset($args['paragraph_text']) ? $args['paragraph_text'] : 'доступ к бесплатным сервисам и 16 страховым компаниям';
?>
<div class="gift-for-registration">
<div class="gift-for-registration__content">
<h2><?php echo $banner_heading ?></h2>
<?php if ($paragraph_text) {
echo '<p>' . $paragraph_text . '</p>';
}
?>
</div>
<a class="btn" href="#">Зарегистрироваться</a>
</div>