diff options
author | Frankie B <floppydisk05@aol.com> | 2022-11-15 22:20:35 +0000 |
---|---|---|
committer | Frankie B <floppydisk05@aol.com> | 2022-11-15 22:20:35 +0000 |
commit | 41efcbfbe5be1aafea665332f55cce74b27d6a3d (patch) | |
tree | 948cd688a7530d45c00d7c79f79e50e22027d5f6 /projects/index.php | |
parent | d750dcc4d266ed5576599fcca4c9a996efc83ec4 (diff) |
Move header and footer to .inc.php
Diffstat (limited to 'projects/index.php')
-rwxr-xr-x | projects/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/projects/index.php b/projects/index.php index cd58291..03483ec 100755 --- a/projects/index.php +++ b/projects/index.php @@ -3,7 +3,7 @@ <html lang="en"> <head> <!-- Global --> - <?php require('../inc/head.html'); ?> + <?php require('../inc/header.inc.php'); ?> <!-- Page-specific --> <title>Projects</title> @@ -14,7 +14,7 @@ </head> <body> <div class="page"> -<?php require('../inc/nav.php') ?> +<?php require('../inc/nav.inc.php') ?> <div id="pagebody"> <div id="content"> @@ -39,7 +39,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <?php $file = __FILE__;require('../inc/footer.php'); ?> + <?php $file = __FILE__;require('../inc/footer.inc.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> |