';
echo '';
echo get_bloginfo( 'name' );
echo '';
echo '';
}
}
/**
* Logo Tablet Preview
*
* @since 1.3.9
* @return mixed
*/
function preview_logo_tablet() {
$tablet = esc_url( get_theme_mod( 'agama_tablet_logo' ) );
if( $tablet ) {
agama_logo();
} else {
echo '
';
}
}
/**
* Logo Mobile Preview
*
* @since 1.3.9
* @return mixed
*/
function preview_logo_mobile() {
$mobile = esc_url( get_theme_mod( 'agama_mobilelogo' ) );
if( $mobile ) {
agama_logo();
} else {
echo '';
}
}
/**
* Header Image
*
* The Agama theme header image partial.
*
* @since 1.5.3
* @access public
* @return mixed
*/
public function header_image() { ?>