add the damn thing

This commit is contained in:
biglyderv 2025-02-08 00:52:59 -05:00
parent 0bba9f885d
commit 65cbda1b2e
Signed by: biglyderv
GPG key ID: 1398543B9746192C
6 changed files with 464 additions and 0 deletions

19
libs/header.php Normal file
View file

@ -0,0 +1,19 @@
<?php
function page_header()
{
?>
<!DOCTYPE html>
<html>
<head>
<title>Scraftia</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<?php }
function page_footer()
{ ?>
<script src='/map.js'></script>
</body>
</html>
<?php } ?>