You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
412 B

9 years ago
  1. <head>
  2. <link rel="stylesheet" href="/css/style.css">
  3. </head>
  4. <h1>Single Page App</h1>
  5. <h2>Location: <span></span></h2>
  6. <ul>
  7. <li><a href="/login">/login</a></li>
  8. <li><a href="/search">/search</a></li>
  9. </ul>
  10. <p>Found asset: <img src="image.jpg" /></p>
  11. <p>Missing asset (should 404): <img src="sdafsadf.jpg" /></p>
  12. <script>
  13. document.querySelector('h2 span').textContent = window.location.pathname
  14. </script>