Skip to content

Commit

Permalink
배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandokkang committed Apr 7, 2024
1 parent 2edb401 commit e1c4784
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/layout}">

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<th:block layout:fragment="head">
<title>관리자 페이지</title>
<link th:href="@{/css/admin.css}" rel="stylesheet"/>
Expand Down Expand Up @@ -51,5 +51,5 @@ <h3 class="table-title">회원 목록</h3>
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/board.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<link rel="stylesheet" href="/css/header.css">
<link rel="stylesheet" href="/css/board.css">

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<input type="hidden" id="user-id" th:value="${user.id}">
Expand Down Expand Up @@ -110,5 +110,5 @@ <h1 class="classification" th:text="${fullName}+' 게시판'"></h1>
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
<script src="/js/board.js"></script>
4 changes: 2 additions & 2 deletions src/main/resources/templates/boardConditionList.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="stylesheet" href="/css/boardConditionList.css"/>
</th:block>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<section class="board-table-section">
Expand Down Expand Up @@ -71,5 +71,5 @@ <h1 class="table-title lions-color" th:text="${searchQuery}+' 검색 결과'"></
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/boardList.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link rel="stylesheet" href="/css/boardList.css"/>
</th:block>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<section class="board-table-section" th:style="'background-color: '+${color}+';'">
Expand Down Expand Up @@ -69,5 +69,5 @@ <h1 class="table-title" th:text="${teamFullName}+' 게시판'"></h1>
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link th:href="@{/css/edit.css}" rel="stylesheet"/>
</th:block>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<section class="edit-section">
Expand Down Expand Up @@ -41,7 +41,7 @@ <h1>정보 수정</h1>
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
<script>
document.getElementById("edit-form").addEventListener("submit", async function(event) {
event.preventDefault(); // 폼 제출을 일단 방지
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/templates/gameResult.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link th:href="@{/css/gameResult.css}" rel="stylesheet"/>
</th:block>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<section class="game-selector-group">
Expand Down Expand Up @@ -280,6 +280,6 @@ <h1>투수 기록</h1>
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
<script th:src="@{/js/divClick.js}"></script>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/newBoard.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link th:href="@{/css/newBoard.css}" rel="stylesheet"/>
</th:block>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<input type="hidden" id="board-id" th:value="${board.id}">
<input type="hidden" id="team" th:value="${team}">
<main th:fragment="content">
Expand All @@ -34,6 +34,6 @@
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
<script src="/js/boardEditor.js"></script>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/player/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link th:href="@{/css/player/info.css}" rel="stylesheet"/>
</th:block>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<section class="info-section" th:classappend="${positionId == 1} ? 'gap-pitcher' : 'gap-batter'"
Expand Down Expand Up @@ -182,6 +182,6 @@
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
<script th:src="@{/js/divClick.js}"></script>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/record.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link href="/css/record.css" rel="stylesheet"/>
</th:block>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<div class="year-selector">
Expand Down Expand Up @@ -129,5 +129,5 @@
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<title>월간 일정</title>
<link th:href="@{/css/schedule.css}" rel="stylesheet"/>
</th:block>
<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<div class="month-selector">
Expand Down Expand Up @@ -79,6 +79,6 @@ <h2 class="table-title" th:text="${#temporals.format(date,'yyyy')} + '시즌 경
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
<script th:src="@{/js/divClick.js}"></script>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/startingLineup.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
integrity="sha512-zYXldzJsDrNKV+odAwFYiDXV2Cy37cwizT+NkuiPGsa9X1dOz04eHvUWVuxaJ299GvcJT31ug2zO4itXBjFx4w=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>

<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<th:block layout:fragment="head">
<title>라인업 작성하기</title>
<link th:href="@{/css/startingLineup.css}" rel="stylesheet"/>
Expand Down Expand Up @@ -76,7 +76,7 @@ <h1 class="title" th:text="${fullName}+' 선수 목록'"></h1>
</form>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script th:src="@{/js/dragNdropCreate.js}"></script>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/teamRanking/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link th:href="@{/css/common.css}" rel="stylesheet"/>
<link th:href="@{/css/team-ranking/detail.css}" rel="stylesheet"/>
</th:block>
<div th:replace="~{fragments/header.html::header}"></div>
<div th:replace="~{fragments/header.html}"></div>
<main th:fragment="content">
<div class="wrap">
<div class="year-selector">
Expand Down Expand Up @@ -56,4 +56,4 @@
</section>
</div>
</main>
<div th:replace="~{fragments/footer.html::footer}"></div>
<div th:replace="~{fragments/footer.html}"></div>

0 comments on commit e1c4784

Please sign in to comment.