-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
25 lines (25 loc) · 971 Bytes
/
header.php
File metadata and controls
25 lines (25 loc) · 971 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="fb:app_id" content="363735137130472">
<title><?php bloginfo('name'); ?></title>
<link rel='stylesheet' href="<?php echo get_template_directory_uri(); ?>/style.css">
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Person",
"name": "Matthew Ames",
"jobTitle": "Systems Administrator",
"url": "https://matty.digital"
}
</script>
<?php wp_head(); ?>
</head>
<body>
<div class="main shadow-light">
<div class="head">
<a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a>
</div>
<div class="navi">
<?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'menu_class' => 'list list-inline' ) ); ?>
</div>