Scalajs-react-experiments/server/app/views/main.scala.html

20 lines
658 B
HTML
Raw Normal View History

2020-06-06 12:32:17 +00:00
@(title: String)(content: Html)
<!DOCTYPE html>
<html>
<head>
<title>@title</title>
<link rel="stylesheet" media="screen" href="@routes.Assets.versioned("stylesheets/main.css")">
<link rel="shortcut icon" type="image/png" href="@routes.Assets.versioned("images/favicon.png")">
<!-- <script src="../../../client/target/scala-2.13/client-jsdeps.js"></script> -->
</head>
<body>
<div id="app"></div>
@content
@scalajs.html.scripts("client", routes.Assets.versioned(_).toString, name => getClass.getResource(s"/public/$name") != null)
<!-- <script src="client-fastopt-bundle.js" defer></script> -->
</body>
</html>