Initial stuffing

This commit is contained in:
2020-09-11 11:07:28 -05:00
parent 7446b83a09
commit 92c6e8bb09
32 changed files with 487 additions and 0 deletions

7
src/common-header.php Normal file
View File

@@ -0,0 +1,7 @@
<div class="header logocontainer">
<img class="logo" src="<?php
$files = glob($_SERVER['DOCUMENT_ROOT'].'/images/logo/*');
$message = $files[array_rand($files, 1)];
echo "$message";
?>" alt="logo" width=768 height=768 />
</div>