-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.php
46 lines (32 loc) · 1.02 KB
/
header.php
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
42
43
44
45
46
<!doctype html>
<html class="no-js" <?php language_attributes(); ?>>
<head
data-wpurl="<?php echo esc_attr( get_bloginfo( 'url' ) ); ?>"
data-project="<?php echo esc_attr( get_theme_directory_name() ); ?>">
<meta charset="utf-8">
<?php wp_head(); ?>
<script>
document.documentElement.classList.add( 'js' );
document.documentElement.classList.remove( 'no-js' );
</script>
<meta
name="description"
content="<?php echo esc_attr( getPageDescription() ); ?>">
<meta
name="viewport"
content="width=device-width, initial-scale=1">
<?php getPart( 'Head/Icons' ); ?>
<?php getPart( 'Head/Social' ); ?>
</head>
<body <?php body_class(); ?>>
<div class="Shell">
<section
class="Header"
role="banner">
<?php getPart( 'Header/Title' ); ?>
<?php getPart( 'Header/Nav' ); ?>
</section><!-- end .head -->
<section
class="Content"
role="main"
id="content">