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.

19 lines
658 B

4 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.versioned("stylesheets/main.css")">
  7. <link rel="shortcut icon" type="image/png" href="@routes.Assets.versioned("images/favicon.png")">
  8. <!-- <script src="../../../client/target/scala-2.13/client-jsdeps.js"></script> -->
  9. </head>
  10. <body>
  11. <div id="app"></div>
  12. @content
  13. @scalajs.html.scripts("client", routes.Assets.versioned(_).toString, name => getClass.getResource(s"/public/$name") != null)
  14. <!-- <script src="client-fastopt-bundle.js" defer></script> -->
  15. </body>
  16. </html>