UNPKG

sodajs

Version:

Light weight but powerful template engine for JavaScript.

18 lines (15 loc) 387 B
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <script src="../dist/soda.min.js"></script> <script> var tpl = '<div soda-if="show">Hello, {{name}}</div>' + '<div soda-if="!show">I\'m hidden!</div>' document.body.innerHTML = soda(tpl,{ name : 'soda',show: true }) </script> </body> </html>