#Basic Backbone I have provided you with the skeleton for a basic backbone app. You will be using cross-domain requests so that you don't have to setup your own server. This is a little unusual, so I have taken care of this for you. I have also provided the router (and names for your collection and model classes).
##Instructions:
- Write a collection that gets its data from 'http://www.jengascript.com/data/'
- Write a view (and Template) that displays basic info from all the models in this collection with links to an individual view
- Write this individual view that displays a form for updating an individual model
- Make that form update the correct property on the correct model when an input in the form is changed.
- Add a save button that saves the correct individual model (with the properties properly changed per step 2).
- BONUS: Add some CSS to make it look not horrible.