Added experimental about page, updated more Rome code, first preparations to adapt feed fetcher code

This commit is contained in:
2024-02-12 17:41:04 +01:00
parent 3a23ac4503
commit 87f05e6894
22 changed files with 1700 additions and 1484 deletions

View File

@@ -0,0 +1,13 @@
<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>