mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
13 lines
290 B
HTML
13 lines
290 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
|
|
<title th:text="#{welcome.title}">Welcome!</title>
|
|
</head>
|
|
<body>
|
|
<h1 th:text="#{welcome.title}">Welcome!</h1>
|
|
<p th:text="#{welcome.text}"></p>
|
|
</body>
|
|
</html>
|