summaryrefslogtreecommitdiff
path: root/programming
diff options
context:
space:
mode:
Diffstat (limited to 'programming')
-rw-r--r--programming/index.php21
1 files changed, 9 insertions, 12 deletions
diff --git a/programming/index.php b/programming/index.php
index 86b2be2..88d4f6c 100644
--- a/programming/index.php
+++ b/programming/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>Programming | <a class="backbutton" href="../">[Back]</a></h1>
- <p>There's nothing here, yet, but some things I have programmed are available on github.com/kaistevenson.
- </p>
- </div>
-</body> \ No newline at end of file
+<?php
+$title = "Programming";
+require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
+require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
+?>
+<p>
+ There's nothing here, yet, but you can see some of my code at github.com/kaistevenson
+</p>
+<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?> \ No newline at end of file