Skip to content

Instantly share code, notes, and snippets.

@bballentine
Created July 7, 2017 17:03
Show Gist options
  • Save bballentine/19f907f1fcd9dae67ed4aec9a0b95d4e to your computer and use it in GitHub Desktop.
Save bballentine/19f907f1fcd9dae67ed4aec9a0b95d4e to your computer and use it in GitHub Desktop.
<html
xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/>
<system-page-meta-keywords/>
<system-page-meta-description/>
<meta content="Pellissippi State Webmaster" name="author"/>
<title>Pellissippi State Community College</title>
<!-- Bootstrap CSS -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">-->
<link href="http://pstcc15t.pstcc.edu/cmsdev/home/_files/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<link href="http://pstcc15t.pstcc.edu/cmsdev/home/_files/bootstrap/css/pscc.css" rel="stylesheet"/>
<link href="http://pstcc15t.pstcc.edu/cmsdev/home/_files/bootstrap/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Lato|Oswald" rel="stylesheet"/>
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
</head>
<body>
<nav class="navbar navbar-toggleable-md navbar-inverse fixed-top" id="pscc-primary-nav">
<?php
$primarynav = file_get_contents('http://pstcc15t.pstcc.edu/cmsdev/home/_components/rendered/primary-nav.html');
echo $primarynav;
?>
</nav>
<nav class="navbar navbar-default navbar-toggleable-md" id="pscc-secondary-nav">
<?php
$secondarynav = file_get_contents('http://pstcc15t.pstcc.edu/cmsdev/home/_components/rendered/secondary-navigation.html');
echo $secondarynav;
?>
</nav>
<div class="container-fluid">
<div class="row py-5">
<div class="col-12">
<h2>Name of Form</h2>
<p>Page content goes here</p>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container-fluid actioncall">
<?php
$footer = file_get_contents('http://pstcc15t.pstcc.edu/cmsdev/home/_components/rendered/footer.html');
echo $footer;
?>
</div>
<!-- /.row -->
</footer>
<!-- /.container -->
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script crossorigin="anonymous" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" type="text/javascript"></script>
<script crossorigin="anonymous" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment