/**
* demo how to composite a page with independent segments with the #{invoke } tag
*/
public static void composite() {
Post post = new Post();
post.title = "test post";
post.postedAt = new Date();
post.content = "this is perfect piece of content~!";
Author a = new Author();
a.name = "me";
a.birthDate = new Date();
a.gender = 'm';
post.setAuthor(a);
renderJapid(post);
}