Files
feedreader-web/src/main/resources/templates/about.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 &amp; feed reader application</p>
<hr />
<div class="foot" th:text="${appName}"></div>
</body>
</html>