aboutsummaryrefslogtreecommitdiff
path: root/app/views/main.scala.html
blob: 5025aa5b59bf6c190dcca580d4da2bda1d6daed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@(title: String)(content: Html)

<!DOCTYPE html>

<html>
    <head>
        <title>@title</title>
        <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
        <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
        <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
    </head>
    <body>
        @content
    </body>
</html>