Tagged Questions
5
votes
1answer
136 views
Differences betwen HTML templating systems
I'm looking at backbone.js and noticed that it supports various templating systems (they specifically refer to Mustache.js, Haml-js, and Eco, but I understand it can support even more)(like Pure and ...
1
vote
1answer
121 views
which template engines support inheritance? [closed]
I want to develop an static web site and I'm searching for a template engine that supports template inheritance or other forms of code reuse, has a community behind it (is being maintained and has ...
1
vote
1answer
456 views
Ideal way to define a table or grid in XML?
HTML
<table border="1" width="400">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
...