Handlebars static helpers - html
{{greeting}}
examples/handlebars/handlebars_helper_static.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> <script src="jquery.js"></script> <script src="handlebars.min.js"></script> <script src="handlebars_helper_static.js"></script> <script src="handlebars_data.js"></script> <script src="handlebars_process.js"></script> <script id="text-template" type="text/x-handlebars-template"> <h3>{{greeting}}</h3> </script> </head> <body> <div id="text"></div> </body> </html>