You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
28 lines
1.2 KiB
<?php namespace App\Views\inc;
|
|
/******************************************************************************************************************
|
|
* RPSLS - Rock, Paper, Scissors, Lizard, Spock Game
|
|
*
|
|
* @file app/views/inc/footer.php
|
|
* @package App\Views\inc
|
|
* @description
|
|
* View - Footer portion of the Main View Pages. Includes Javascript Loads
|
|
* @author Rick Hays
|
|
* @date 11/15/2019
|
|
* @license MIT
|
|
* @copyright Copyright © 2019 - Rick Hays, All Rights Reserved.
|
|
*
|
|
* Revisions:
|
|
* YYYY-MM-DD XX Description
|
|
******************************************************************************************************************/
|
|
?>
|
|
<footer id="footer" class="footer mt-auto py-3">
|
|
<div class="container">
|
|
<span class="text-muted">Copywrite © 2019 - Rick Hays, All Rights Reserved.</span>
|
|
<?php echo (ENVIRONMENT === 'development') ? '<br> <span class="text-muted">Page rendered in {elapsed_time} seconds. Environment: ' . ENVIRONMENT . '</span>' : ''; ?>
|
|
</div>
|
|
</footer>
|
|
<script src="assets/js/jquery/jquery-3.4.1.min.js"></script>
|
|
<script src="assets/js/bootstrap/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/game.js"></script>
|
|
</body>
|
|
</html>
|