Skip to content

Instantly share code, notes, and snippets.

@hongsw
Created November 13, 2012 14:58
Show Gist options
  • Save hongsw/4066151 to your computer and use it in GitHub Desktop.
Save hongsw/4066151 to your computer and use it in GitHub Desktop.
@(list: List[Guestbook])
@main("GuestBook") {
<ul class="media-list">
@for(post <- list) {
<li class="[email protected]">
<div class="media-body">
<span class="media-heading">@post.name</span>
<span class="info" >@post.postAt.format("yyyy년 MMM d일")</span>
<span class="info" ><a href="mailto:@post.email">Contact</a></span>
<div>@post.content</div>
</div>
</li>
}
</ul>
<a href="@routes.Application.write()">Write</a>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment