@Mapping("/blog/display/$1")
public Renderer display(long id) throws Exception {
List<Post> posts = DbUtils.queryForList("select id, title, content, creation from Post where id=?", id);
if (posts.isEmpty())
throw new IllegalArgumentException("Post not found with id: " + id);
return new TemplateRenderer("/display.htm", "post", posts.get(0));
}