homegrade_theme_production/template-components/heading-box--job.php

35 lines
878 B
PHP

<?php
$title = $args['title'];
$description = $args['description'];
$subtitle = $args['subtitle'] ?? null;
$thumbnail = $args['thumbnail'] ?? null;
$modified = $args['modified'] ?? null;
$subtitle = $args['subtitle'] ?? null;
?>
<div class="heading-box heading-box--news ">
<div class="heading-box--news__content">
<?php if ($subtitle) : ?>
<h2 class="heading-box__subtitle heading-box--news__type"><?php echo $subtitle ?></h2>
<?php endif; ?>
<h1 class="heading-box__title heading-box--news__title"> <?php echo $title ?></h1>
<?php
get_template_part("template-components/post-infos-capsule", null, array(
"postID" => get_the_ID(),
"modified" => $modified
));
?>
</div>
<?php if ($thumbnail) echo $thumbnail ?>
<!-- <img class="news-heading-box__thumbnail" src="<?php echo $thumbnail ?>" alt=""> -->
</div>