15 lines
323 B
PHP
15 lines
323 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/components/head.php') ?>
|
|
|
|
<body>
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/components/nav.php') ?>
|
|
<h1>Test</h1>
|
|
<p>This is a test commit</p>
|
|
</body>
|
|
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/components/footer.php') ?>
|
|
|
|
</html>
|