-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
30 lines (21 loc) · 888 Bytes
/
header.php
File metadata and controls
30 lines (21 loc) · 888 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
<title><?php the_title(); ?></title>
<link rel="stylesheet" href="<?php echo get_template_directory_uri() . '/public/style.css' ?>">
</head>
<body>
<!-- Navbar -->
<?php include TEMPLATEPATH . '/shared/component.php'; ?>
<div class="nav pt-5 pl-5">
<ul>
<li><a href="<?php the_permalink(10) ?>">Home</a></li>
<li><a href="<?php the_permalink(5) ?>">About</a></li>
<li><a href="<?php the_permalink(2) ?>">My Component page</a></li>
</ul>
</div>