-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.php
More file actions
47 lines (38 loc) · 1.58 KB
/
Copy pathheader.php
File metadata and controls
47 lines (38 loc) · 1.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
<?php wp_title( ' - ', true, 'right' );
bloginfo('name');
if (is_home()) {
$description = get_bloginfo('description');
if ($description != "") {
echo " - " . $description;
}
}
?>
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- styles -->
<link href="<?php echo THEME_CSS; ?>/style.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- fav and touch icons -->
<link rel="shortcut icon" href="<?php echo THEME_IMAGES; ?>/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="<?php echo THEME_IMAGES; ?>/Buzz_114x114">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="<?php echo THEME_IMAGES; ?>/Buzz_72x72">
<link rel="apple-touch-icon-precomposed" href="<?php echo THEME_IMAGES; ?>/Buzz_57x57">
<?php wp_head(); ?>
</head>
<body>
<div class="container">
<!-- Main site header (RJ banner) -->
<header id="siteheader" class="row">
<div class="span12" style="text-align: center;">
<a href="<?php echo HOME_URI; ?>"><img src="<?php echo THEME_IMAGES; ?>/banner.png" alt="" /></a>
</div>