-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
30 lines (25 loc) · 895 Bytes
/
header.php
File metadata and controls
30 lines (25 loc) · 895 Bytes
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
<?php
/**
* The template for the site header, including:
*
* 1. The beginnings of a head section.
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package NorthParkMD
* @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, maximum-scale=1, user-scalable=no">
<link rel="icon" type="image/x-icon" href="<?php echo THEME_URI . "/assets/images/favicon_io/favicon.ico" ?>">
<?php wp_head() ?>
</head>
<body <?php body_class() ?>>
<?php get_template_part("template-parts/core/search-display"); ?>
<?php get_template_part("template-parts/core/navbar"); ?>
<?php get_template_part("template-parts/terms/notification"); ?>
<?php get_template_part("template-parts/core/back-to-top"); ?>