JSFiddle - React, Tailwind, and code Playground
by rlivsey
HTML
<script src="https://github.com/downloads/emberjs/ember.js/ember-0.9.5.min.js"></script>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>simple table test</title>
<script type="text/x-handlebars" data-template-name="simple-table">
<table>
<tr>
<td>it works! </td>
</tr>
</table>
</script>
</head>
<body>
<div>
Test:<br/>
<script type="text/x-handlebars">
{{view App.myView}}
</script>
</div>
</body>
</html>
JavaScript
var App = Ember.Application.create();
App.myView = Ember.View.extend({
templateName: 'simple-table'
});