Use relative paths so index is unaffected by its context path

Previously, index.html used absolute paths to load its CSS and
JavaScript. This meant that it had to be deployed to /. This commit
updates the HTML to use relative paths for its CSS and JavaScript,
thereby ensuring that they can be loaded irrespective of the context
path to which the application is deployed.

Closes gh-1988
This commit is contained in:
Andy Wilkinson 2014-11-24 10:55:37 +00:00
parent 3bad634915
commit ccbc606dad

View File

@ -4,11 +4,11 @@
<title>Static</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css"
href="/webjars/bootstrap/3.0.3/css/bootstrap.min.css" />
href="webjars/bootstrap/3.0.3/css/bootstrap.min.css" />
</head>
<body>
<script type="text/javascript"
src="/webjars/jquery/2.0.3/jquery.min.js"></script>
src="webjars/jquery/2.0.3/jquery.min.js"></script>
<div id="navbar" class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
@ -22,7 +22,7 @@
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/"> Home </a></li>
<li><a href="./"> Home </a></li>
</ul>
</div>
</div>
@ -34,6 +34,6 @@
</p>
</div>
<script type="text/javascript"
src="/webjars/bootstrap/3.0.3/js/bootstrap.min.js"></script>
src="webjars/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</body>
</html>