-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
53 lines (40 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* The template for displaying the header
*
**/
?><!doctype html>
<html <?php language_attributes(); ?>>
<head>
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '-', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " $site_description";
?>
</title>
<meta name="author" content="Lamtha2 Web Design, Aylesbury">
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
<meta charset="utf-8">
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- bootstrap -->
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/bootstrap-3.3.1/css/bootstrap.min.css" >
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/font-awesome-4.2.0/css/font-awesome.min.css" >
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'>
<!-- stylesheets -->
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/css/style.css">
<?php wp_head(); ?>
</head>