19 lines
383 B
PHP
19 lines
383 B
PHP
<?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 } ?>
|