añadidor los ficheros que faltaban en el commit anterior

This commit is contained in:
Jaime Jiménez
2025-07-22 11:37:00 +02:00
parent 3a4e80b1d3
commit 14f6633b83
29 changed files with 1218 additions and 0 deletions

View File

@ -0,0 +1,42 @@
<html th:lang="${#locale.language}"
th:with="isAuth=${#authorization.expression('isAuthenticated()')}"
th:attrappend="data-layout=${isAuth} ? 'semibox' : 'horizontal'"
data-sidebar-visibility="show"
data-topbar="light"
data-sidebar="light"
data-sidebar-size="lg"
data-sidebar-image="none"
data-preloader="disable"
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head>
<th:block layout:fragment="pagetitle" />
<th:block th:replace="~{imprimelibros/partials/head-css :: head-css}" />
<th:block layout:fragment="pagecss" />
</head>
<body>
<div th:replace="~{imprimelibros/partials/topbar :: topbar}" />
<div th:if="${#authorization.expression('isAuthenticated()')}">
<div th:replace="~{imprimelibros/partials/sidebar :: sidebar}" />
</div>
<section class="main-content">
<div class="page-content">
<div class="container-fluid">
<section layout:fragment="content" th:remove="tag"></section>
</div>
</div>
<div th:replace="~{imprimelibros/partials/footer :: footer}" />
</section>
<th:block layout:fragment="modal" />
<!-- de momento comenta vendor-scripts si no lo usas -->
<th:block th:replace="~{theme/partials/vendor-scripts :: scripts}" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<th:block layout:fragment="pagejs" />
<script th:src="@{/assets/js/app.js}"></script>
</body>
</html>