Skip to content

Instantly share code, notes, and snippets.

@jihoon-jang
Created December 11, 2022 14:22
{{>anonymous_board/layout/header}}
<div class="col-lg-10 mx-auto p-3 py-md-5">
<table class="table table-hover table-striped">
<thead>
<tr>
<th scope="col">번호</th>
<th scope="col">제목</th>
<th scope="col">작성자</th>
<th scope="col">작성일</th>
</tr>
</thead>
<tbody>
{{#anonymousPosts}}
<tr>
<td>
{{#isNotice}}공지{{/isNotice}}
{{^isNotice}}{{id}}{{/isNotice}}
</td>
<td>
<a href="/anonymous-posts/{{id}}">{{title}}</a>
</td>
<td>
{{writer}}
</td>
<td>
{{createdAt}}
</td>
</tr>
{{/anonymousPosts}}
</tbody>
</table>
</div>
{{>anonymous_board/layout/footer}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment