@( front:Option[(models.Post,models.User,Seq[models.Comment])], older:Seq[(models.Post,models.User,Seq[models.Comment])] ) @main(title = "Home") { @front.map { front => @display(front, mode = "home") @Option(older).filterNot(_.isEmpty).map { posts =>

Older posts from this blog

@posts.map { post => @display(post, mode = "teaser") }
} }.getOrElse {
There is currently nothing to read here.
} }