springboot-angular-app-demo/target/classes/templates/greeting.html

11 lines
307 B
HTML

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>I'm the Greeting.html</h1>
<p th:text="'Hello, ' + ${name} + '!'" />
</body>
</html>