Template.html 245 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <template id="template">
  7. <div id="templatediv">Hello template!</div>
  8. <script>
  9. // I shouldn't be run.
  10. window.templateScriptRan = true;
  11. </script>
  12. </template>
  13. </body>
  14. </html>