Skip to content

Instantly share code, notes, and snippets.

@rizkylab
Created December 1, 2014 10:43
Show Gist options
  • Save rizkylab/2be97e162f5bf61c1053 to your computer and use it in GitHub Desktop.
Save rizkylab/2be97e162f5bf61c1053 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<% include header %>
<body>
<% include navbar %>
<div class="container">
<div class="page-header">
<h1>
About <small>What we aim for!</small>
</h1>
</div>
<div class="panel panel-default">
<div class="panel-heading">About Us</div>
<div class="panel-body">
<p>My tutorial on how to use bootstrap to create a responsive
website.</p>
</div>
</div>
<hr>
<% include footer %>
</div>
<!-- /container -->
<script type="text/javascript">
$(document).ready(function() {
$('#about').addClass("active");
});
</script>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script
src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment