homegrade_theme_production/template-components/heading-box.php

15 lines
418 B
PHP

<?php
$title = $args['title'];
$description = $args['description'];
$pageIcon = $args['pageIcon'] ?? null;
?>
<div class="heading-box ">
<?php if ($pageIcon) : ?>
<img class="heading-box__page-icon" src="<?php echo $pageIcon['url'] ?>" alt="" />
<?php endif; ?>
<h1 class="heading-box__title"><?php echo $title ?></h1>
<p class="heading-box__description"> <?php echo $description ?></p>
</div>