-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathheader.php
More file actions
24 lines (21 loc) · 747 Bytes
/
header.php
File metadata and controls
24 lines (21 loc) · 747 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head() ?>
</head>
<body <?php body_class('flex flex-col h-screen') ?>>
<?php wp_body_open(); ?>
<header class="flex-0 bg-slate-100 px-4 border shadow-md">
<div class="max-w-screen-lg mx-auto flex justify-between items-center min-h-[40px]">
<div class="">
<a href="<?php echo home_url() ?>">Logo</a>
</div>
<div>
<?php echo wp_nav_menu() ?>
</div>
</div>
</header>
<main class="flex-grow px-4 py-4">