Skip to content

Instantly share code, notes, and snippets.

@fakiolinho
Last active December 27, 2015 14:09
Show Gist options
  • Save fakiolinho/7339027 to your computer and use it in GitHub Desktop.
Save fakiolinho/7339027 to your computer and use it in GitHub Desktop.
Bootstrap 3 Template
<!doctype html>
<html lang="en">
<head>
<title>Bootstrap 3.3.2 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1 class="text-center">Hello, world!</h1>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script>
$(function(){
Page.init();
});
var Page = {
init: function(){
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment