-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A page template if you wish to display some info to users.
- Loading branch information
hjone72
authored and
hjone72
committed
Oct 17, 2016
1 parent
927c353
commit 80b83e8
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Meta --> | ||
<?php require_once 'inc/meta.php'; ?> | ||
<title>TEMPLATE - Your Tech Base</title> | ||
<!-- CSS --> | ||
<?php require_once 'inc/css.php'; ?> | ||
</head> | ||
<body class="grey lighten-5"> | ||
<!-- Nav --> | ||
<?php require_once 'inc/nav.php'; ?> | ||
<main class="valign-wrapper"> | ||
<div class="container valign"> | ||
<div class="section"> | ||
<div class="row"> | ||
<div class="col s12"> | ||
|
||
<h1>Join YTB</h1> | ||
<p>CONTENT GOES HERE</p> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
<!-- Footer --> | ||
<?php require_once 'inc/footer.php'; ?> | ||
<!-- Scripts --> | ||
<?php require_once 'inc/javascripts.php'; ?> | ||
</body> | ||
</html> |