-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
32 lines (28 loc) · 892 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
echo '<title>tabletop character tracker - ' . $page_title . '</title>';
?>
<!-- Standard Metadata -->
<meta name="author" content="Adam Hollock" />
<meta name="description" content="Character Tracker" />
<meta name="keywords" content="Jimi, JimiofEden, Adam Hollock, D&D5e, World of Darkness, NWoD, WoD, Shadowrun" />
<!-- Load in the style sheet -->
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- Load in the fonts -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans|Droid+Sans|Arimo|Pontano+Sans">
</head>
<body>
<?php
echo '
<div class="bodywrapper">
<div class="headerWrapper">
<h3 class="header">
<div class="title">
tabletop character tracker - ' . $page_title . '
</div>
</h3>
';
?>