Currently I have my main.jade file which is served using Express.js on Node.js. In the head of the jade file, I have all of my templates. As you can probably understand, this got unruly very quickly. I load the templates from Backbone.js using:
template:_.template($("#phone-tmplt-taskRow").html())
My app will have three versions: mobile, tablet, and desktop. I was wondering what the best way to organize my templates should be. I do not want to have ~30 templates listed in the head of my html file. How should I organize my templates? I would prefer to have 3 files somehow, one for each version. I do not want to serve a different URL from node.js/express.js depending on the version.
<script type="text/template">this gives me best readability and place i can look for the templates. a C# parser that strips all the<script type="text/template">then mush them to Hash in javascript – Deeptechtons Jul 13 '12 at 4:58