UNPKG

jsin

Version:

JSIN - template engine. Server and client side. Includes, layouts. Async compiling. Pre-compiling for browser.

22 lines 527 B
<!doctype html> <html> <head> <title>JSIN - Javascript Include</title> <style> div { padding-left: 1.5em; } </style> </head> <body> <div id="res"></div> <script src="jsin.compiled.js"></script> <script> var res = jsin.include('mytemplate', { boo: 'booooo' }); document.getElementById('res').innerHTML = res; console.log(res); </script> </body> </html>