Files
CWC/header.php
Keith Solomon 8c3284399e
Deploy to Dreamhost (dev) / build (push) Successful in 33s
Sync TODOs with Issues / sync_todos (push) Successful in 6s
🐞 fix: Remove Chrome tint implementation
2026-07-12 15:30:54 -05:00

59 lines
1.9 KiB
PHP

<?php
/**
* Theme header template
*
* @package CWC
* @since 1.0.0
*/
namespace CWC;
global $views;
$headerLogo = getFieldValue( 'header.header_logo.url' ) ? getFieldValue( 'header.header_logo.url' ) : get_theme_file_uri( '/static/img/logo.svg' );
// Check conditions for displaying the hero section.
// The inner-page hero renders only on the Services page, its direct children,
// and its grandchildren. All other views (blog index, archives, single posts,
// search, 404) render without the hero.
$services = get_page_by_path( 'services' )->ID;
$showHero = $post->post_parent === $services ? true : false;
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<?php wp_head(); ?>
</head>
<body <?php echo body_class(); ?>>
<a class="skip-link" href="#maincontent">
<?php echo esc_html__( 'Skip to main content' ); ?>
</a>
<header role="banner" class="site-header bg-secondary flex flex-col items-center justify-start">
<?php get_template_part( 'views/components/nav-aux' ); ?>
<div class="header__nav-main container px-0! py-4 items-center grid gap-x-8 gap-y-0 grid-cols-[437px_auto] grid-rows-[1fr] justify-between">
<a href="<?php bloginfo( 'url' ); ?>" class="site-header__logo block">
<img class="h-full w-auto" src="<?php echo esc_url( $headerLogo ); ?>" alt="<?php bloginfo( 'name' ); ?> logo"/>
</a>
<?php get_template_part( 'views/components/nav-main' ); ?>
</div>
</header>
<main id="maincontent" class="overflow-hidden min-h-[78dvh]">
<?php
if ( $showHero ) :
get_template_part( 'views/partials/page-hero-services' );
elseif ( ! is_front_page() && ! is_page( 'contact' ) ) :
get_template_part( 'views/partials/page-hero' );
endif;
?>