Demo app using the Scala Play framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 lines
461 B

11 years ago
  1. @(title: String)(content: Html)
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>@title</title>
  6. <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
  7. <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
  8. <script src="@routes.Assets.at("javascripts/jquery-1.9.0.min.js")" type="text/javascript"></script>
  9. </head>
  10. <body>
  11. @content
  12. </body>
  13. </html>