Files
pcinv/src/main/resources/templates/fragments.html

22 lines
586 B
HTML

<html lang="en" xmlns:th="http://www.thymeleaf.org" th:fragment="base(title, content)">
<head>
<meta charset="UTF-8">
<title>PC Inventory</title>
</head>
<body>
<h1>PC Inventory - <span th:text="${title}"></span>
</h1>
<hr>
<a href="/">Home</a>
<a href="/browse">Browse</a>
<a href="/create">Create</a>
<hr>
<div th:replace="${content}">
</div>
<hr>
<p>
<small>Rendered in <span th:text="${#execInfo.getNow().getTimeInMillis() - time}">25</span>ms on <span th:text="${#dates.format(#execInfo.getNow(), 'dd/MM/yyyy HH:mm')}"></span>.</small>
</p>
</body>
</html>