A javascript template engine
$('#test').template({
'firstname' : 'A firstname',
'lastname' : 'A lastname',
'positions' : [
{'title':'A position title', 'year': 'A year'},
{'title':'A position title', 'year': 'A year'},
{'title':'A position title', 'year': 'A year'},
{'title':'A position title', 'year': 'A year'}
],
'age' : false
})
<div id="test">
<p data-replace="firstname"></p>
<ul data-repeat="positions">
<li><span data-replace="title"></span></li>
</ul>
<p data-logic="!age">Guess what no age!</p>
</div>
See demo/index.html
See template.html