13 lines
411 B
HTML
13 lines
411 B
HTML
<html lang="en">
|
|
<head>
|
|
<title th:text="'About ' + ${appName}"></title>
|
|
<link th:href="@{/styles/stylesheet.css}" rel="stylesheet" />
|
|
<link th:href="@{/favicon.ico}" rel="shortcut icon" type="image/x-icon" />
|
|
</head>
|
|
<body>
|
|
<h1>About <a href="/" th:text="${appName}"></a></h1>
|
|
<p>This is a feed aggregator & feed reader application</p>
|
|
<hr />
|
|
<div class="foot" th:text="${appName}"></div>
|
|
</body>
|
|
</html> |