22 lines
514 B
HTML
22 lines
514 B
HTML
|
<!DOCTYPE html>
|
|||
|
<html xmlns:th="http://www.thymeleaf.org">
|
|||
|
<head>
|
|||
|
<title>Уведомление о событии</title>
|
|||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|||
|
<link rel="shortcut icon" th:href="@{|${baseUrl}/favicon.ico|}"/>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<p>
|
|||
|
Уважаемый <span th:text="${user.firstName + ' ' + user.lastName}">Ivan Ivanov</span>
|
|||
|
</p>
|
|||
|
<p th:text="${description}">
|
|||
|
some text
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
Regards,
|
|||
|
<br/>
|
|||
|
<em>Balance Team.</em>
|
|||
|
</p>
|
|||
|
</body>
|
|||
|
</html>
|