carhop__carhop-theme__DEV/template-parts/page-header.php

34 lines
1.1 KiB
PHP

<?php
$title = $args['title'];
$subtitle = $args['subtitle'];
$description = $args['description'];
$cover = $args['cover'];
$background_style = $args['background_style'] ?? 'normal';
$cta = $args['cta'];
?>
<section class="page-header content-section content-section--full-width page-header--<?php echo $background_style; ?>-background">
<div class="content-section__inner page-header__inner">
<div class="page-header__content">
<h1 class="page-header__title title-small "><?php echo $title; ?></h1>
<?php if ($subtitle) : ?>
<p class="page-header__subtitle subtitle-big"><?php echo $subtitle; ?></p>
<?php endif; ?>
<?php if ($description) : ?>
<p class="page-header__description"><?php echo $description; ?></p>
<?php endif; ?>
<?php if ($cta) : ?>
<a href="<?php echo $cta['url']; ?>" class="page-header__cta"><?php echo $cta['title']; ?></a>
<?php endif; ?>
</div>
<div class="page-header__image">
<?php if ($cover) : ?>
<img src="<?php echo $cover['url']; ?>" alt="<?php echo $title; ?>">
<?php endif; ?>
</div>
</div>
</section>