22 lines
533 B
HTML
22 lines
533 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<div id="welcome">
|
|
<h3>
|
|
欢迎使用
|
|
<span th:text="${project}">- Powered By <span th:text="${author}"></span></span>
|
|
</h3>
|
|
|
|
<span style="text-align: center; padding: 10px">
|
|
<a href="#" style="text-decoration: none" target="_blank" th:href="@{${url}}">
|
|
<strong>Spring Boot入门首选</strong>
|
|
</a>
|
|
</span>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |