목록.html

팡태(❁´◡`❁)·2022년 4월 11일
0

PROJECT

목록 보기
6/14
<!DOCTYPE html>
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>게시판목록</title>
</head>

<body>

    <div style="padding:20px">
        <h3>게시판 목록</h3>
        <hr />
        
        <a th:href="@{/board/insert}">게시판글쓰기</a>
        <hr />

        <form th:action="@{/board/selectlist}" method="get">
            <input type="hidden" value="1" name="page" />
            <input type="text" name="title" placeholder="검색어" />
            <input type="submit" value="검색" />
        </form>

        <table>
            <tr>
                <th>글번호</th>
                <th>제목</th>
                <th>작성자</th>
                <th>조회수</th>
                <th>날짜</th>
            </tr>
            <tr th:each="brd : ${list}">
                <td th:text="${brd.no}"></td>
                <td th:text="${brd.title}"></td>
                <td th:text="${brd.writer}"></td>
                <td th:text="${brd.hit}"></td>
                <td th:text="${brd.regdate}"></td>
            </tr>
        </table>
    </div>
</body>
</html>

0개의 댓글