diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2023-08-02 03:24:42 -0700 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2023-08-02 03:24:42 -0700 |
commit | c5ef1b6370d3229f52b292fa72c5b4700a77e32f (patch) | |
tree | 299e03f01a24a45a19a98b7e733d5e49e022342b /src/etc/employment/index.php | |
parent | e2a5476389ef350aed3857ccd5a5cafc51acbbbf (diff) |
fixed dpi scaling
Diffstat (limited to 'src/etc/employment/index.php')
-rw-r--r-- | src/etc/employment/index.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/etc/employment/index.php b/src/etc/employment/index.php new file mode 100644 index 0000000..c41b29d --- /dev/null +++ b/src/etc/employment/index.php @@ -0,0 +1,12 @@ +<?php
+$title = "Employment";
+require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
+require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
+?>
+<p>
+ This page is a list of things you could pay me to do. Isn't that fun?
+</p>
+<ul>
+ <li><h3><a href="techsupport.php">Tech Support</a></h3></li>
+</ul>
+<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|