Skip to content

Commit

Permalink
framework
Browse files Browse the repository at this point in the history
  • Loading branch information
David Tuite committed Sep 9, 2011
0 parents commit 21b8345
Show file tree
Hide file tree
Showing 6 changed files with 11,035 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -0,0 +1,5 @@
*.swp
*.swo
node_modules/
.DS_Store
.bin/
19 changes: 19 additions & 0 deletions public/index.html
@@ -0,0 +1,19 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Todos</title>
<script src="js/jquery.js"></script>
<script src="js/underscore.js"></script>
<script src="js/backbone.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<script type="html/template" id="todo-template">
<span><%= name %></span>
</script>
<script type="html/template" id="list-template">
<section class="todos"></section>
</script>
</body>
</html>

0 comments on commit 21b8345

Please sign in to comment.