2015-11-15 14:53:25 +00:00
|
|
|
<head>
|
2015-11-15 23:52:13 +00:00
|
|
|
<link rel="stylesheet" href="/css/style.css">
|
2015-11-15 14:53:25 +00:00
|
|
|
</head>
|
|
|
|
<h1>Single Page App</h1>
|
|
|
|
<h2>Location: <span></span></h2>
|
2015-11-17 16:01:17 +00:00
|
|
|
<ul>
|
|
|
|
<li><a href="/login">/login</a></li>
|
|
|
|
<li><a href="/search">/search</a></li>
|
|
|
|
</ul>
|
2015-11-15 14:53:25 +00:00
|
|
|
<script>
|
|
|
|
document.querySelector('h2 span').textContent = window.location.pathname
|
|
|
|
</script>
|