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.

15 lines
481 B

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