15 lines
381 B
PHP
15 lines
381 B
PHP
<?php
|
|
|
|
/**
|
|
* Page header template.
|
|
*
|
|
* @package ThemeStarter
|
|
*/
|
|
|
|
?>
|
|
|
|
<section class="page-header" style="background-image: url('<?= get_the_post_thumbnail_url(get_the_ID(), 'full') ?>')">
|
|
<div class="max-w-7xl mx-auto flex items-center h-28 lg:h-44 py-8 px-4">
|
|
<h1 class="text-2xl lg:text-4xl text-white font-bold"><?= get_the_title() ?></h1>
|
|
</div>
|
|
</section>
|