15 lines
516 B
PHP
15 lines
516 B
PHP
<?php
|
|
|
|
$title = $args['title'];
|
|
$description = $args['description'];
|
|
$pageIcon = $args['pageIcon'] ?? null;
|
|
|
|
?>
|
|
|
|
<div class="heading-box heading-box--classic ">
|
|
<?php if ($pageIcon) : ?>
|
|
<img class="heading-box--classic__page-icon" src="<?php echo $pageIcon['url'] ?>" alt="" />
|
|
<?php endif; ?>
|
|
<h1 class="heading-box__subtitle heading-box--classic__subtitle"><?php echo $title ?></h1>
|
|
<p class="heading-box__description heading-box--classic__description"> <?php echo $description ?></p>
|
|
</div>
|