First Local Commit - After Clean up.
Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
31
app/Views/inc/head.php
Normal file
31
app/Views/inc/head.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php namespace App\Views\inc;
|
||||
/******************************************************************************************************************
|
||||
* RPSLS - Rock, Paper, Scissors, Lizard, Spock Game
|
||||
*
|
||||
* @file app/views/inc/head.php
|
||||
* @package App\Views\inc
|
||||
* @description
|
||||
* View - Head portion of the Main View Pages. Includes Meta and CSS Loads.
|
||||
* @author Rick Hays
|
||||
* @date 11/15/2019
|
||||
* @license MIT
|
||||
* @copyright Copyright © 2019 - Rick Hays, All Rights Reserved.
|
||||
*
|
||||
* Revisions:
|
||||
* YYYY-MM-DD XX Description
|
||||
******************************************************************************************************************/
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>Rock, Paper, Scissors, Lizard, Spock</title>
|
||||
<meta name="description"
|
||||
content="Simple game of Rock, Paper, Scissors, Lizard, Spock. Written in HTML and Javascript">
|
||||
<meta name="author" content="Rick Hays">
|
||||
<link href="assets/css/bootstrap/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="assets/css/sticky-footer-navbar.css" rel="stylesheet">
|
||||
<link href="assets/css/game.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
Reference in New Issue
Block a user