How do you declare and initialize a variable to be used locally in a Play2 Scala template?
I have this:
@var title : String = \"Home\"
If you don't want to wrap all your content with @defining, you can do this :
@yourVariable = { yourValue }
The @defining directive is really unreadable in a template...