Last active
December 21, 2015 02:18
-
-
Save Swelly/6233769 to your computer and use it in GitHub Desktop.
HTML scaffold for JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Title Here</title> | |
<link rel="stylesheet" type="text/css" href="CSS Here"> | |
</head> | |
<body> | |
<div id = "main"> | |
</div> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> | |
<script src="https:////cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0/handlebars.min.js"type="text/javascript"></script> | |
<script src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.5.1/underscore-min.js"></script> | |
<script src="http://ajax.cdnjs.com/ajax/libs/backbone.js/1.0.0/backbone-min.js"></script> | |
<script type="text/javascript" src="JAVASCRIPT here"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTE: Replace the Title, CSS file and Javascript with your own insertions
Also, make sure the scripts appear in the above order and are updated to their current release