app/views/index.scala.html (12 lines of code) (raw):
@(title:String)(cacheBuster:String)
<!DOCTYPE html>
<html lang="en">
<head>
<title>@title</title>
<link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
</head>
<body>
<div id="app"></div>
<script src="@routes.Assets.at("javascripts/bundle.js?")?=@(cacheBuster)" type="text/javascript"></script>
</body>
</html>