📜 ⬆️ ⬇️

Pure template engine - PURE

Most recently discovered an interesting template engine called PURE .

It’s convenient to use, it has a good website , and also supports a wide variety of JavaScript libraries (Prototype, jQuery, MooTools, Sizzle, Dojo soon).
< table id ="players1" class ="players 1" >
< thead >
< tr >< th class ="player" > Player </ th ></ tr >
</ thead >
< tbody >
< tr class ="context" >
< td class ="player context" > Chloe </ td >
</ tr >
</ tbody >
</ table >


* This source code was highlighted with Source Code Highlighter .
var context = [ "Alice Keasler" , "Charles LeGrand" , "Gary Bitemning" , "Helen Moren" ];
$( '#players1' ).autoRender(context);


* This source code was highlighted with Source Code Highlighter .

')

Source: https://habr.com/ru/post/53853/


All Articles