Merge pull request #15924 from eugenp/email-20022024

Update index.html
This commit is contained in:
Ulisses Lima 2024-02-20 19:03:31 -03:00 committed by GitHub
commit f29936791c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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>