2020-06-10 16:58:55 +00:00
|
|
|
<?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
|
|
|
|
*
|
2020-07-29 17:44:19 +00:00
|
|
|
* @package Seedlet
|
2020-06-10 16:58:55 +00:00
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
?><!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="https://gmpg.org/xfn/11" />
|
|
|
|
<?php wp_head(); ?>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body <?php body_class(); ?>>
|
2020-06-17 19:30:33 +00:00
|
|
|
<?php wp_body_open(); ?>
|
2020-06-10 16:58:55 +00:00
|
|
|
<div id="page" class="site">
|
2020-08-20 18:40:29 +00:00
|
|
|
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'seedlet' ); ?></a>
|
2020-06-10 16:58:55 +00:00
|
|
|
|
2021-01-11 12:32:15 +00:00
|
|
|
<?php get_template_part( 'template-parts/header/header-content' ); ?>
|
2020-06-10 16:58:55 +00:00
|
|
|
|
|
|
|
<div id="content" class="site-content">
|