UNPKG

snakeskin

Version:

Компилятор блочных шаблонов c поддержкой наследования.

24 lines (20 loc) 518 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Hello world</title> <script src="../dist/snakeskin.min.js"></script> </head> <body> <div id="test"></div> <script type="text/x-snakeskin-template" id="templates"> {template helloWorld(name = 'world')} <h1>Hello {name}!</h1> {/template} </script> <script> Snakeskin.compile(document.getElementById('templates')); document.getElementById('test').innerHTML = helloWorld(); </script> </body> </html>