Current File : /var/www/kurt6690.2978.w2868/site96340/wp-content/themes/hopeui/template-parts/header/branding.php
<?php

/**
 * Template part for displaying the header branding
 *
 * @package hopeui
 */

namespace HopeUI\Utility;

?>

<div class="site-branding">
	<div class="container">
		<?php the_custom_logo(); ?>
		<div class="site-branding-text">
			<?php if (is_front_page()) : ?>
				<h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
			<?php else : ?>
				<p class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></p>
			<?php endif; ?>
			<?php
			$description = get_bloginfo('description', 'display');
			if ($description || is_customize_preview()) :
			?>
				<p class="site-description"><?php echo esc_html($description); ?></p>
			<?php endif; ?>
		</div><!-- .site-branding-text -->
	</div><!-- .container -->
</div><!-- .site-branding -->