Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. string source =
  2. @"<html>
  3. <head>
  4. <style type=""text/css"" href="styles.css">
  5. </head>
  6. <body>
  7. <div>
  8. <h1>{{title}}</h1>
  9. <div class="myclass">
  10. {{body}}
  11. </div>
  12. </div>
  13. </body>
  14. </html>";
  15.  
  16. var template = Handlebars.Compile(source);
  17.  
  18. var data = new {
  19. title = "My new post",
  20. body = "This is my first post!"
  21. };
  22.  
  23. var result = template(data);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement