Skip to content

Instantly share code, notes, and snippets.

@hexx
Created May 26, 2012 13:36
Show Gist options
  • Save hexx/2793973 to your computer and use it in GitHub Desktop.
Save hexx/2793973 to your computer and use it in GitHub Desktop.
main.scala.html
@(title: String)(content: Html)
<!DOCTYPE html>
<html>
<head>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<title>@title</title>
</head>
<body>
<div class="container">
<h1>@title</h1>
@content
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment