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

32 lines
794 B
PHP

<?php
$title = $args['title'];
$description = $args['description'];
$news_type = $args['news_type'] ?? null;
$thumbnail = $args['thumbnail'] ?? null;
$published = $args['published'] ?? null;
?>
<div class="news-heading-box ">
<div class="news-heading-box__content">
<?php if ($news_type) : ?>
<h2 class="news-heading-box__type"><?php echo $news_type[0]->name ?></h2>
<?php endif; ?>
<h1 class="news-heading-box__title"> <?php echo $title ?></h1>
<?php
get_template_part("template-components/post-infos-capsule", null, array(
"postID" => get_the_ID(),
"published" => $published
));
?>
</div>
<?php if ($thumbnail) echo $thumbnail ?>
<!-- <img class="news-heading-box__thumbnail" src="<?php echo $thumbnail ?>" alt=""> -->
</div>