aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/common/layout.scala.html
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/twirl/common/layout.scala.html')
-rw-r--r--core/src/main/twirl/common/layout.scala.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/core/src/main/twirl/common/layout.scala.html b/core/src/main/twirl/common/layout.scala.html
new file mode 100644
index 0000000000..b9192060aa
--- /dev/null
+++ b/core/src/main/twirl/common/layout.scala.html
@@ -0,0 +1,35 @@
+@(title: String)(content: Html)
+
+<!DOCTYPE html>
+<html>
+
+ <head>
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8">
+ <link rel="stylesheet" href="static/bootstrap.min.css" type="text/css">
+ <link rel="stylesheet" href="static/bootstrap-responsive.min.css" type="text/css">
+ <script src="static/sorttable.js"></script>
+ <title>@title</title>
+ <style type="text/css">
+ table.sortable thead { cursor: pointer; }
+ </style>
+ </head>
+
+ <body>
+ <div class="container">
+
+ <!-- HEADER -->
+ <div class="row">
+ <div class="span12">
+ <img src="static/spark_logo.png">
+ <h1 style="vertical-align: bottom; margin-bottom: 10px; margin-left: 30px; display: inline-block;"> @title </h1>
+ </div>
+ </div>
+
+ <hr/>
+
+ @content
+
+ </div>
+ </body>
+
+</html> \ No newline at end of file