Skip to content

Instantly share code, notes, and snippets.

@hongsw
Created November 13, 2012 14:52
Show Gist options
  • Save hongsw/4066123 to your computer and use it in GitHub Desktop.
Save hongsw/4066123 to your computer and use it in GitHub Desktop.
@(title: String)(content: Html)
<!DOCTYPE html>
<html>
<head>
<title>@title</title>
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/bootstrap.css")">
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
</head>
<body>
<div class="container">
<h1>Welcome. Play 2.0 World.</h1>
<h5>@title</h5>
@if(flash.get("success")) {
<div class="alert-success"><strong>Well done!</strong>@flash.get("success")</div>
}
@if(flash.get("info")) {
<div class="alert-info"><strong>Heads up!</strong>@flash.get("info")</div>
}
@content
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment