aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/common/layout.scala.html
blob: b9192060aa5aefee60a78a31a84a70920e57a6c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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>