/list.mustache Secret
Created
December 11, 2022 14:22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{>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