Update index.html

This commit is contained in:
Ana Peterlic 2024-02-20 08:31:33 +01:00
parent 536ffe9106
commit b4107947fc

View File

@ -1,7 +1,7 @@
<html> <html>
<head> <head>
<title>WebJars Demo</title> <title>WebJars Demo</title>
<link rel="stylesheet" href="/webjars/bootstrap/3.3.7-1/css/bootstrap.min.css" /> <link rel="stylesheet" th:href="@{/webjars/bootstrap/3.3.7-1/css/bootstrap.min.css}" />
</head> </head>
<body> <body>
<h1>Welcome Home</h1> <h1>Welcome Home</h1>
@ -12,8 +12,8 @@
</div> </div>
</div> </div>
<script src="/webjars/jquery/3.1.1/jquery.min.js"></script> <script th:src="@{/webjars/jquery/3.1.1/jquery.min.js}"></script>
<script src="/webjars/bootstrap/3.3.7-1/js/bootstrap.min.js"></script> <script th:src="@{/webjars/bootstrap/3.3.7-1/js/bootstrap.min.js}"></script>
</body> </body>
</html> </html>