I'm looking for an alternative to rails templates and yield in playframework, version 2.0.
Is there something similar to that? I couldn't find it by browsing the docs.
I'm looking for an alternative to rails templates and yield in playframework, version 2.0.
Is there something similar to that? I couldn't find it by browsing the docs.
我不知道rails,但在我看来,这里对playframework的解释很像: http ://www.playframework.org/documentation/2.0.1/ScalaTemplateUseCases
@(title: String)(content: Html)
<!DOCTYPE html>
<html>
<head>
<title>@title</title>
</head>
<body>
<section class="content">@content</section>
</body>
</html>