app/views/main.scala.html (13 lines of code) (raw):

@(title: String)(content: Html) <!DOCTYPE html> <html> <head> <title>@title</title> <link rel="stylesheet" media="screen" href="@routes.Assets.at("/public", "stylesheets/main.css")"> <link rel="stylesheet" media="screen" href="@routes.Assets.at("/public","font-awesome-4.7.0/css/font-awesome.min.css")"> <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("/public","images/favicon.png")"> </head> <body> @content </body> </html>