Skip to content

Commit 2774240

Browse files
committed
fix 404 template string
1 parent 7191443 commit 2774240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h1>Not Found</h1>
1111
<script>
1212
if (window.location.href.indexOf('/songs/') == -1) {
1313
let url = window.location.href.replace('.io/','.io/songs/');
14-
document.write(`See if <a href="{url}">{url}</a> works.`)
14+
document.write(`See if <a href="${url}">${url}</a> works.`)
1515
}
1616
</script>
1717
</p>

0 commit comments

Comments
 (0)