Fix 404 page pointing to wrong css

This commit is contained in:
Tyler Perkins 2022-11-26 14:52:15 -05:00
parent fd3b45af7a
commit 0085c3ae88

View File

@ -1,12 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<?php include 'common/include.php' ?>
<?php include '/common/include.php' ?>
<title>Tyler Perkins - 404</title>
<link rel="stylesheet" href="error.css">
</head>
<body>
<?php include 'common/header.php' ?>
<?php include '/common/header.php' ?>
<div class="error-div top-fade">
<div class="error-message">
@ -19,6 +19,6 @@
</div>
</div>
<?php include 'common/footer.php' ?>
<?php include '/common/footer.php' ?>
</body>
</html>