-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.scala.html
More file actions
23 lines (19 loc) · 920 Bytes
/
main.scala.html
File metadata and controls
23 lines (19 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@(title: String, assets: AssetsFinder, webJarsUtil: org.webjars.play.WebJarsUtil)(content: Html)
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@title</title>
<link rel="shortcut icon" type="image/png" href="@assets.path("images/favicon.png")">
@webJarsUtil.locate("bootstrap.min.css").css()
@webJarsUtil.locate("dist/bootstrap-table.min.css").css()
@webJarsUtil.locate("bootstrap-icons.css").css()
<link rel="stylesheet" media="screen" href="@assets.path("stylesheets/icdwebserver.css")">
<link rel="stylesheet" href="@assets.path("stylesheets/icd.css")">
</head>
<body>
@findScript(assets, "icdwebclient-jsdeps.js", "icdwebclient-jsdeps.min.js")
@findScript(assets, "icdwebclient-opt/main.js", "icdwebclient-fastopt/main.js")
@content
</body>
</html>