Template.html 313 B

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