Skip to content

Commit 776623a

Browse files
committed
Absolutize URLs in 404 page.
CSS and images were not loading previously.
1 parent f2888dc commit 776623a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

404.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
1717

1818
<!-- Style Sheets -->
19-
<link rel="stylesheet" type="text/css" href="static/css/bootstrap/bootstrap.css">
20-
<link rel="stylesheet" type="text/css" href="static/css/bootstrap/bootstrap-responsive.css">
21-
<link rel="stylesheet" type="text/css" href="static/css/bootstrap/font-awesome.css">
19+
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap/bootstrap.css">
20+
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap/bootstrap-responsive.css">
21+
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap/font-awesome.css">
2222
<style>
2323
/** bootstrap 2.3.2 overrides **/
2424
.alert.alert-success a {color: #3d9400; text-decoration: underline }
2525
</style>
2626

27-
<link rel="shortcut icon" href="favicon.ico" />
27+
<link rel="shortcut icon" href="/favicon.ico" />
2828

2929
<!-- Script tags -->
3030
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
@@ -53,10 +53,10 @@
5353
<div class="nav-collapse">
5454
<ul class="nav">
5555
<li>
56-
<a href="playground/"><span class="icon-beer"></span> Playground</a>
56+
<a href="/playground/"><span class="icon-beer"></span> Playground</a>
5757
</li>
5858
<li>
59-
<a href="learn/"><span class="icon-book"></span> Documentation</a>
59+
<a href="/learn/"><span class="icon-book"></span> Documentation</a>
6060
</li>
6161
<li><a href="#developers"><span class="icon-beaker"></span> Developers</a></li>
6262
<li class="dropdown">
@@ -82,7 +82,7 @@
8282
<li><a href="/spec/">1.0 drafts (historic)</a></li>
8383
</ul>
8484
</li>
85-
<li><a href="images/"><span class="icon-picture"></span> Branding</a></li>
85+
<li><a href="/images/"><span class="icon-picture"></span> Branding</a></li>
8686
</ul>
8787
</div>
8888
<!--/.nav-collapse -->

0 commit comments

Comments
 (0)