I want to run ember.js (version 1.0.0 Final) examples provided on their first page.
They divided each handlebar template in separate file with .hbs
extension.
So I just copied all of the code and created files with same names. When I run them nothing hapens. I am trying ROUTING example.
My index.html
:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ember Starter Kit</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
</head>
<body>
<script src="js/libs/jquery-1.9.1.js"></script>
<script src="js/libs/handlebars-1.0.0.js"></script>
<script src="js/libs/ember-1.0.0.js"></script>
<script src="js/libs/bootstrap.js"></script>
<script src="js/app.js"></script>
</body>
</html>
My templates are inside of the root directory and I copied them to /templates
but that didn't help.