-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
22 lines (21 loc) · 1.05 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<title><?php wp_title(); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="wrapper">
<header class="primary" role="banner">
<div class="container">
<h1><a href="<?php echo esc_url(home_url('/')); ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>"><?php bloginfo('name'); ?></a></h1>
<p class="description"><?php bloginfo('description'); ?></p>
<div class="fb-like" data-href="https://www.facebook.com/terrycoxallautorepairs" data-send="false" data-width="450" data-show-faces="false" data-action="recommend" data-colorscheme="dark" data-font="arial"></div>
<nav class="primary" role="navigation">
<?php wp_nav_menu(array('theme_location' => 'primary')); ?>
</nav>
</div>
</header>