ページの中央 (main.scala.html へのリンク) にコンテンツを持つテンプレートを開発しようとしています。
これが私のコードです
mainPage のテンプレート (名前: test.scala.html)
@(title: String)(content: Html)
<p> Some HTML Stuff </p>
@content
2 番目のページ (名前: test2.scala.html)
@(test:String)
@test("test2"){
<p> Hello World </p>
}
コントローラー
public class Admin extends Controller {
public static Result test(){
return ok(test.render("test"));
}
public static Result test2(){
return ok(test2.render("test2"));
}
}
このままではうまくいきません。私を助けてくれる人がいるかもしれません