breakout-custom/app/views/main.scala.html

17 lines
569 B
HTML
Raw Normal View History

2024-09-01 02:30:44 +00:00
@(title: String)(content: Html)
<!DOCTYPE html>
<html lang="en">
<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")">
</head>
<body>
2024-09-06 23:53:24 +00:00
<div id="gameContainer">
<h1 id="themeHeader"></h1>
@content
</div>
2024-09-01 02:30:44 +00:00
<script src="@routes.Assets.versioned("javascripts/main.js")" type="text/javascript"></script>
</body>
</html>