First Local Commit - After Clean up.
Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
28
app/Views/inc/footer.php
Normal file
28
app/Views/inc/footer.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user