Update pages with changes to /common/

The building block PHP files have been moved.
This commit is contained in:
2022-07-07 22:40:11 -04:00
parent b692b22935
commit 8302028049
5 changed files with 15 additions and 15 deletions

View File

@@ -3,8 +3,8 @@ function display_file($license_file){
$out = file_get_contents($license_file);
echo "<pre><code>".$out."</code></pre>";
}
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/header.php');
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/menu.php');
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/header.php');
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/menu.php');
?>
<article>
<p>A summery of all licenses that apply to this website.</p>
@@ -57,4 +57,4 @@ You can learn more on <a href="https://prismjs.com/">prismjs.com</a>.</p></block
Prism is <a href="/license/MIT.php">MIT Licensed</a>.</p>
<?php display_file("MIT_License.txt"); ?>
</article>
<?php include_once ($_SERVER['DOCUMENT_ROOT'].'/common/footer.php');?>
<?php include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/footer.php');?>