I'm planning my website structure as following:
- header.scala.html
- XXX
- footer.scala.html
now, instead of "xxx" there should be a specific page (i.e. "UsersView.scala.html").
what I need is to include (like with well-known languages) the source of the footer and the
header into the the middle page's code.
so my questions are:
- How do you include a page in another with scala templating?
- Do you think it's a good paradigm for Play! framework based website?