-
Notifications
You must be signed in to change notification settings - Fork 45
/
header.php
executable file
·39 lines (27 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title(' | ');?></title>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!--Skip to main content-->
<a class="accessibility" href="#main">Skip To Content</a>
<!--Header-->
<header>
<div class="container flex-container">
<a class="logo" href="<?php bloginfo('url');?>"><img src="<?php bloginfo('template_url');?>/svgs/logo.svg" alt="<?php bloginfo('title');?>"/></a>
<button class="mobile-menu">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
<span class="accessibility">Menu</span>
</button>
<nav><?php wp_nav_menu( array('menu' => 'Main', 'container' => false, )); ?></nav>
</div>
</header>
<!--Main Content-->
<main id="main">