APITester 기본 기능 완료

This commit is contained in:
현성필
2023-05-09 14:36:33 +09:00
parent 6f6b9cde1d
commit f2f235d2ee
12 changed files with 639 additions and 188 deletions
@@ -0,0 +1,35 @@
<!doctype html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head th:replace="fragment/head :: headFragment">
<meta charset="utf-8">
</head>
<body>
<!-- header -->
<header th:replace="fragment/header :: headerFragment"></header>
<th:block th:replace="fragment/header :: headerScript"></th:block>
<nav th:replace="fragment/header :: navFragment"></nav>
<!-- csrf -->
<input id="csrf" type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}">
<div class="pt-layout">
<aside th:replace="page/apiCollection :: collectionFragment"></aside>
<th:block th:replace="page/apiCollection :: collectionScript"></th:block>
<section class="pt-main order-1" layout:fragment="contentFragment">
</section>
<th:block layout:fragment="contentScript">
</th:block>
</div>
<footer th:replace="fragment/footer :: footerFragment"></footer>
</body>
</html>