14 lines
386 B
HTML
14 lines
386 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{default}">
|
|
|
|
<head>
|
|
<title>Продукты</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main layout:fragment="content">
|
|
<th:block th:replace="products :: products (items=${items}, totalPages=${totalPages}, currentPage=${currentPage}, title='Продукты')" />
|
|
</main>
|
|
</body>
|
|
|
|
</html> |