Created
November 13, 2012 14:52
-
-
Save hongsw/4066123 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@(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