browsersample.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <html>
  2. <head>
  3. <script id="headertmpl" type="text/x-dot-template">
  4. <h1>{{=it.title}}</h1>
  5. </script>
  6. <script id="pagetmpl" type="text/x-dot-template">
  7. <h2>Here is the page using a header template</h2>
  8. {{#def.header}}
  9. {{=it.name}}
  10. </script>
  11. <script id="customizableheadertmpl" type="text/x-dot-template">
  12. {{#def.header}}
  13. {{#def.mycustominjectionintoheader || ''}}
  14. </script>
  15. <script id="pagetmplwithcustomizableheader" type="text/x-dot-template">
  16. <h2>Here is the page with customized header template</h2>
  17. {{##def.mycustominjectionintoheader:
  18. <div>{{=it.title}} is not {{=it.name}}</div>
  19. #}}
  20. {{#def.customheader}}
  21. {{=it.name}}
  22. </script>
  23. <script src="../doT.min.js" type="text/javascript"></script>
  24. </head>
  25. <body>
  26. <div id="content"></div>
  27. <div id="contentcustom"></div>
  28. </body>
  29. <script type="text/javascript">
  30. var def = {
  31. header: document.getElementById('headertmpl').text,
  32. customheader: document.getElementById('customizableheadertmpl').text
  33. };
  34. var data = {
  35. title: "My title",
  36. name: "My name"
  37. };
  38. var pagefn = doT.template(document.getElementById('pagetmpl').text, undefined, def);
  39. document.getElementById('content').innerHTML = pagefn(data);
  40. pagefn = doT.template(document.getElementById('pagetmplwithcustomizableheader').text, undefined, def);
  41. document.getElementById('contentcustom').innerHTML = pagefn(data);
  42. </script>
  43. </html>