Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mulderp
Created February 24, 2014 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mulderp/9186648 to your computer and use it in GitHub Desktop.
Save mulderp/9186648 to your computer and use it in GitHub Desktop.
basic HTML template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PAGE TITLE</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/normalize.css" rel="stylesheet" media="all">
<link href="css/styles.css" rel="stylesheet" media="all">
</head>
<body>
</body>
</html>
@mulderp
Copy link
Author

mulderp commented Mar 4, 2014

For Backbone use:

 <script src="./node_modules/jquery/dist/jquery.js"></script>
 <script src="./node_modules/backbone/node_modules/underscore/underscore.js"></script>
 <script src="./node_modules/backbone/backbone.js"></script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment