zeg1jeux/footer.php

22 lines
427 B
PHP
Raw Normal View History

2022-10-21 21:26:41 +02:00
</main>
<footer>
<p>Created by La Bureautique Incorporated, STI (Société Totalement Irresponsable) au capital de 200 000 Ğ1.</p>
</footer>
2022-10-26 13:03:52 +02:00
<?php
$themeJSDir = 'themes/'. $_SESSION['gameId'] . '/js';
$files = scandir($themeJSDir);
$files = array_slice($files, 2);
2022-10-21 21:26:41 +02:00
2022-10-26 13:03:52 +02:00
foreach ($files as $f) {
echo '
<script type="text/javascript" src="'. $themeJSDir . '/' . $f .'"></script>
';
}
?>
2022-10-21 21:26:41 +02:00
</body>
</html>