racket/collects/tests/web-server/template/examples/blog-posts.html
Jay McCarthy daff0abe15 Extended example
svn: r12550
2008-11-20 23:57:32 +00:00

17 lines
251 B
HTML

@in[p posts]{
<h2>@(post-title p)</h2>
<p>@(post-body p)</p>
<ul>
@in[c (post-comments p)]{
<li>@|c|</li>
}
</ul>
}
<h1>New Post</h1>
<form action="@|k-url|">
<input name="title" />
<input name="body" />
<input type="submit" />
</form>