20 lines
617 B
HTML

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
<th:block th:insert="~{fragments/head}"></th:block>
</head>
<body>
<th:block th:insert="~{fragments/header}"></th:block>
<main class="container grid" style="grid-template-columns: 1fr 6fr;">
<th:block th:insert="~{fragments/aside}"></th:block>
<div class="container-fluid">
<h2>Goods with names</h2>
<table id="goods" aria-busy="true">
<thead></thead>
<tbody></tbody>
</table>
</div>
</main>
</body>
<script type="text/javascript" src="/file/_js/goods.js"></script>
</html>