2015-04-10 20:17:03 +00:00
|
|
|
doctype html
|
|
|
|
html
|
|
|
|
head
|
|
|
|
title test
|
|
|
|
script(data-main="/js/main" src="/js/libs/requirejs/require.js")
|
|
|
|
script(type="text/javascript").
|
|
|
|
require(['app/app']);
|
|
|
|
|
|
|
|
body
|
|
|
|
h1 hello world
|
2015-04-12 22:56:47 +00:00
|
|
|
|
2015-05-01 11:11:29 +00:00
|
|
|
|
|
|
|
script#projects-template(type="text/template")
|
|
|
|
| <div class="js-projects">
|
|
|
|
| <% _(projects).each(function(project) { %>
|
|
|
|
| <div class="js-project" data-name="<%= project.name %>">
|
|
|
|
| <span><%= project.name %></span>
|
|
|
|
| <span class="js-run">→</span>
|
|
|
|
| </div>
|
|
|
|
| <% }); %>
|
|
|
|
| </div>
|
|
|
|
|
|
|
|
|
2015-04-12 22:56:47 +00:00
|
|
|
#content
|
2015-05-03 23:04:51 +00:00
|
|
|
|
|
|
|
#react-content
|