Skip to content

Instantly share code, notes, and snippets.

@visualjeff
Created May 24, 2015 22:07
Show Gist options
  • Save visualjeff/0a060a18db52b312e134 to your computer and use it in GitHub Desktop.
Save visualjeff/0a060a18db52b312e134 to your computer and use it in GitHub Desktop.
Ember Starter Kit // source http://jsbin.com/kogure
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ember Starter Kit</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://builds.emberjs.com/tags/v1.12.0/ember-template-compiler.js"></script>
<script src="http://builds.emberjs.com/tags/v1.12.0/ember.debug.js"></script>
</head>
<body>
<script type="text/x-handlebars">
<h2>Welcome to Ember.js</h2>
{{outlet}}
</script>
<script id="jsbin-javascript">
App = Ember.Application.create();
App.Router.map(function() {
// put your routes here
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">App = Ember.Application.create();
App.Router.map(function() {
// put your routes here
});</script></body>
</html>
App = Ember.Application.create();
App.Router.map(function() {
// put your routes here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment