HEX
Server: LiteSpeed
System: Linux s12873.lon1.stableserver.net 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: jairicem (1242)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/jairicem/basicconceptenergy.com/wp-content/themes/greenly/header.php
<?php
/**
 * The header for our theme
 *
 * This is the template that displays all of the <head> section and everything up until <div id="content">
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package WordPress
 * @subpackage Greenly
 * @since 1.0
 * @version 1.0
 */

?><!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js no-svg">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php if( !function_exists('btc_get_color') ){ ?>
<?php $global_color = cspt_get_base_option('global-color'); ?>
<!-- browser-theme-color for WordPress -->
<meta name="theme-color" content="<?php echo esc_attr($global_color); ?>">
<meta name="msapplication-navbutton-color" content="<?php echo esc_attr($global_color); ?>">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<?php } ?>
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<?php cspt_preloader(); ?>
<?php
if ( function_exists( 'wp_body_open' ) ) {
    wp_body_open();
} else {
    do_action( 'wp_body_open' );
}?>

<div id="page" class="site">
	<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'greenly' ); ?></a>
	<header id="masthead" class="site-header cspt-header-style-<?php echo esc_attr(cspt_get_base_option('header-style')); ?>  <?php cspt_check_sticky_logo_class(); ?>">
	<div class="cspt-sticky-header <?php cspt_sticky_class(); ?>"></div>
	<?php get_template_part( 'theme-parts/header/header-style',	cspt_get_base_option('header-style') ); ?>
		<?php cspt_header_slider(); ?>
		<?php get_template_part( 'theme-parts/header/title-bar',	cspt_get_base_option('header-style') ); ?>
	</header><!-- #masthead -->
	<div class="site-content-contain">
		<div id="content" class="site-content container">
			<?php if( cspt_check_sidebar() == true ){ ?>
				<div class="row multi-columns-row">
			<?php } ?>

			<?php
			$placeholder = cspt_get_base_option('header-search-placeholder');
			$btn_text    = cspt_get_base_option('header-search-btn-text');
			?>

			<div class="cspt-header-search-form-wrapper">
				<div class="cspt-search-close"><i class="cspt-base-icon-cancel"></i></div>
				<?php $unique_id = esc_attr( uniqid( 'search-form-' ) ); ?>
				<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
					<label for="<?php echo esc_attr($unique_id); ?>">
						<span class="screen-reader-text"><?php echo _x( 'Search for:', 'label', 'greenly' ); ?></span>
					</label>
					<input type="search" id="<?php echo esc_attr($unique_id); ?>" class="search-field" placeholder="<?php echo esc_attr($placeholder); ?>" value="<?php echo get_search_query(); ?>" name="s" />
					<button type="submit" title="<?php echo esc_html_x( 'Search', 'submit button', 'greenly' ); ?>" class="search-submit"><?php echo esc_html($btn_text); ?></button>
				</form>
			</div>