-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
53 lines (44 loc) · 1.61 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<!--
Copyright 2012 Philippe Poumaroux
This file is part of cucumber-json2report.
cucumber-json2report is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Cucumber HTML Report</title>
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="js/extjs/resources/css/ext-all.css" media="screen" rel="stylesheet" />
<link href="css/style.css" media="screen" rel="stylesheet" />
<script src="js/extjs/bootstrap.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div id="menus">
<a id="logo" href="/">
<span id="project">Cucumber</span><br/><span id="build"></span>
</a>
<div id="toolbar"></div>
</div>
<div id="content">
<h1 id="pageTitle"></h1>
<div id="graph"></div>
<div id="grid">
<h2 id="gridTitle"></h2>
<div id="gridPanel"></div>
</div>
<div id="listing"></div>
</div>
<div id="footer"></div>
</body>
</html>