`extends Layout.html
`import models.japidsample.Post
`args String blogTitle, List allPost
`stopwatch on
`set title:"Home"
`for (Post p: allPost) {
*{ now we call a tag, with a body content that take a parameter title of String type }*
`tag Display p, "home" | String title
The real title is: $title;
`
`}
`tag Tag2 blogTitle
cool