summaryrefslogtreecommitdiffstats
path: root/report-generators/templates/boiler_plate.rhtml
blob: 23f01cbdf7b922e04da1c8b978a150bbd89691d2 (plain)
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
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title><%= title %></title>
<link title="Style" type="text/css" rel="stylesheet" href="stylesheet.css">
</head>

<body>
<div id="banner">
<h2><%= title %></h2>
</div>
<div id="main">
  <div id="controls">
    <table>
      <tr><td><a href="index.html">Generation times</a></td></tr>
      <tr><td><a href="unit.html">Unit tests</a></td></tr>
      <tr><td><a href="memcheck.html">Memory tests</a></td></tr>
    </table>
  </div>

  <div id="body">
    <%= body %>
  </div>
</div>
</body>