| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/coopermain/wp-content/themes/cooper/components/title-block/ |
Upload File : |
<?php
/** @var \LambAgency\Components\TitleBlock $this */
$subtitle = $this->getSubtitle();
$title = $this->getTitle();
$intro = $this->getIntro();
?>
<?php if ($this->showTitleBlock()) : ?>
<div class="title-block" data-autoload-component="title-block">
<?php if (!empty($subtitle)) : ?>
<p class="title-block-subtitle small-label"><?php echo esc_html($subtitle); ?></p>
<?php endif; ?>
<?php if (!empty($title)) : ?>
<h2 class="title-block-title h2"><?php echo esc_html($title); ?></h2>
<?php endif; ?>
<?php if (!empty($intro)) : ?>
<p class="title-block-intro lead"><?php echo wp_kses_post($intro); ?></p>
<?php endif; ?>
</div>
<?php endif; ?>