-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathheader.php
More file actions
41 lines (40 loc) · 1.33 KB
/
Copy pathheader.php
File metadata and controls
41 lines (40 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* The header for the Highstarter theme
*
* This is the template that displays all of the <header> section
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Highstarter
*
* @since 1.0
* @version 1.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="http://gmpg.org/xfn/11">
<?php wp_head();?>
</head>
<body <?php body_class();?>>
<?php wp_body_open(); ?>
<header class="site-header">
<a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'highstarter'); ?></a>
<div class="site-header-wrapper">
<div class="site-logo-wrapper">
<?php // Insert logo through WP admin here
highstarter_dark_mode_logo();
highstarter_the_custom_logo(); ?>
</div>
<div class="main-navigation-container">
<?php get_template_part('template-parts/header/navigation');?>
</div>
</div><!-- .header wrapper -->
<?php get_template_part('template-parts/header/site-branding');?>
</header><!-- .site-header -->
<main class="site-content">
<div class="wrapper">