fair-parent-theme/header.php
Joe Dolson 94b3c1ff6d Remove custom localization functions from source theme
Signed-off-by: Joe Dolson <design@joedolson.com>
2025-05-16 22:36:24 -05:00

36 lines
872 B
PHP

<?php
/**
* Template for header
*
* <head> section and everything up until <div id="content">
*
* @package fair-parent
*/
namespace Fair_Parent;
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class( 'no-js' ); ?>>
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'fair-parent-theme' ); ?></a>
<?php wp_body_open(); ?>
<div id="page" class="site">
<header class="site-header">
<?php get_template_part( 'template-parts/header/branding' ); ?>
<?php get_template_part( 'template-parts/header/navigation' ); ?>
</header>
<div class="site-content">