diff options
Diffstat (limited to 'photography/index.php')
-rw-r--r-- | photography/index.php | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/photography/index.php b/photography/index.php index be57783..07d4655 100644 --- a/photography/index.php +++ b/photography/index.php @@ -1,12 +1,9 @@ -<head>
- <link rel="stylesheet" href="/style.css">
- <link rel="icon" type="image/x-icon" href="/favicon.ico">
-</head>
-
-<body>
- <div class="contentpane">
- <h1>Photography | <a class="backbutton" href="../">[Back]</a></h1>
- <p>There's nothing here, yet.
- </p>
- </div>
-</body>
\ No newline at end of file +<?php
+$title = "Photography";
+require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
+require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
+?>
+<p>
+ There's nothing here, yet.
+</p>
+<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
\ No newline at end of file |