diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2012-01-29 22:45:44 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2012-01-29 22:45:44 -0800 |
commit | 4128c64ea51911602a4deda9ae515664bf43480e (patch) | |
tree | 13efe1659e824742b2b29357502286bdedc276b6 /includes/header.php | |
parent | af8bcf8c2cb0944c47f028d8022cf2733d261fca (diff) | |
download | pathery-4128c64ea51911602a4deda9ae515664bf43480e.tar.xz |
Custom titles for pages.
Diffstat (limited to 'includes/header.php')
-rw-r--r-- | includes/header.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/header.php b/includes/header.php index 86329a9..69df6f8 100644 --- a/includes/header.php +++ b/includes/header.php @@ -1,12 +1,12 @@ <?php
-function htmlHeader($css = array()) {
+function htmlHeader($css = array(), $title = 'Pathery') {
?>
<!DOCTYPE html>
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <title>pathery.com</title>
+ <title><? echo $title; ?></title>
<link href="css/page.css" rel="stylesheet" type="text/css" />
<link href="css/maps.css" rel="stylesheet" type="text/css" />
|