diff options
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" />
|