blob: 255cbad0b3263f2045269a30fa65b66a65b82215 [file] [log] [blame]
Scott Baker1dd345e2014-07-07 17:06:07 -07001{% load mustache %}
2{% load straight_include %}
3
Scott Baker62faabc2014-07-13 10:37:26 -07004<script src="{{ STATIC_URL }}/js/vendor/underscore-min.js"></script>
5<script src="{{ STATIC_URL }}/js/vendor/backbone-min.js"></script>
6<script src="{{ STATIC_URL }}/js/vendor/ICanHaz.min.js"></script>
Scott Baker1dd345e2014-07-07 17:06:07 -07007
Scott Baker62faabc2014-07-13 10:37:26 -07008<script src="{{ STATIC_URL }}/js/xoslib/xos-backbone.js"></script>
Scott Baker1dd345e2014-07-07 17:06:07 -07009<script src="{{ STATIC_URL }}/js/sliverListTest.js"></script>
10
11<script type="text/html" id="sliverTemplate">
12 {% straight_include "mustache/sliverTemplate.mustache" %}
13</script>
14
15<script type="text/html" id="listApp">
16 {% straight_include "mustache/listApp.mustache" %}
17</script>
18
19<script type="text/html" id="detailApp">
20 {% straight_include "mustache/detailApp.mustache" %}
21</script>
22
23<div id="app">
24 {% mustache "mustache/listApp" %}
25</div>