Auto – Rendering
Take a node from the HTML template, and add a CLASS attribute...
<div class="who"></div>
... with a name that matches a property in your JSON.
var data = {'who':'Hello Wrrrld!'};
PURE tries to match them and replace the node value by the value of the JSON property
<div class="Hello Wrrrld!"></div>

