Created
May 28, 2012 19:16
-
-
Save pangratz/2820774 to your computer and use it in GitHub Desktop.
Sample Ember.js app
This file contains 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
App = Ember.Application.create(); |
This file contains 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>Ember.js app</title> | |
<link rel="stylesheet" href="style.css" media="screen" /> | |
</head> | |
<body> | |
</body> | |
<script src="app.js"></script> | |
</html> |
This file contains 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
body { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment