summaryrefslogtreecommitdiff
path: root/contrib/playlib/test/resources
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/playlib/test/resources')
-rw-r--r--contrib/playlib/test/resources/hello-world/core/conf/routes2
-rw-r--r--contrib/playlib/test/resources/hello-world/core/views/hello.scala.html6
2 files changed, 8 insertions, 0 deletions
diff --git a/contrib/playlib/test/resources/hello-world/core/conf/routes b/contrib/playlib/test/resources/hello-world/core/conf/routes
new file mode 100644
index 00000000..7d5e5498
--- /dev/null
+++ b/contrib/playlib/test/resources/hello-world/core/conf/routes
@@ -0,0 +1,2 @@
+GET / controllers.HomeController.index
+GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)
diff --git a/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html b/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html
new file mode 100644
index 00000000..3603fe07
--- /dev/null
+++ b/contrib/playlib/test/resources/hello-world/core/views/hello.scala.html
@@ -0,0 +1,6 @@
+@this(title: String)
+<html>
+ <body>
+ <h1>@title</h1>
+ </body>
+</html> \ No newline at end of file