Skip to content

Commit

Permalink
Page template
Browse files Browse the repository at this point in the history
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.
32 changes: 32 additions & 0 deletions inc/pages/template.page.php
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>

0 comments on commit 80b83e8

Please sign in to comment.