Created
November 13, 2012 14:58
-
-
Save hongsw/4066151 to your computer and use it in GitHub Desktop.
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
@(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