26 lines
686 B
PHP
26 lines
686 B
PHP
<?php
|
|
/**
|
|
* The header for our theme
|
|
*
|
|
* @package HomeProz
|
|
*/
|
|
|
|
?>
|
|
<!doctype html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo('charset'); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="view-transition" content="same-origin">
|
|
<link rel="profile" href="https://gmpg.org/xfn/11">
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
<?php wp_body_open(); ?>
|
|
|
|
<div id="page" class="site">
|
|
<a class="skip-link sr-only" href="#primary"><?php esc_html_e('Skip to content', 'homeproz'); ?></a>
|
|
|
|
<?php get_template_part('template-parts/header/site-header'); ?>
|