snippet.txt 283 B

12345678910111213
  1. Core templating
  2. <h1>Just static text</h1>
  3. <p>Interpolation {{=it.f1 + it.f3}} </p>
  4. <div> JavaScript block evaluation
  5. {{ for(var i=0; i < it.f2; i++) {
  6. console.log("Pass\t" + i);
  7. }}
  8. <div>{{=it.f3}}</div>
  9. {{ } }}
  10. </div>
  11. <div> Encoding {{!'<a href="http://github.com"></a>'}}</div>