Skip to content

Instantly share code, notes, and snippets.

@mnowakowski
Created November 17, 2013 15:03
Show Gist options
  • Save mnowakowski/7514411 to your computer and use it in GitHub Desktop.
Save mnowakowski/7514411 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script src="http://documentcloud.github.io/underscore/underscore-min.js"></script>
<script src="http://documentcloud.github.io/backbone/backbone-min.js"></script>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<meta name="description" content="jsBin template - Backbone, Twitter Bootstrap" />
<meta name="viewport" content="initial-scale=1.0 ,maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta charset=utf-8 />
<title>jsBin template - Backbone, Twitter Bootstrap</title>
</head>
<body>
<h1>jsBin template</h1>
<h2>Backbone, Twitter Bootsrap</h2>
<div class="content">
<p>content here</p>
</div>
</body>
</html>
(function($){
// Object declarations goes here
$(document).ready(function () {
// Start application code goes here
console.log('Works perfect!');
});
})(jQuery);
.content {
p {
color: gray;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment