mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-03-01 16:49:59 +00:00
25 lines
521 B
Plaintext
25 lines
521 B
Plaintext
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
|
|
|
|
|
|
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>
|
|
|
|
|
|
#content
|