comparison index.html @ 926:f427b5805b69

Merge in main
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Sat, 30 May 2015 11:39:53 +0100
parents
children 759c2ace3c65
comparison
equal deleted inserted replaced
-1:000000000000 926:f427b5805b69
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8" />
5
6
7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
8 Remove this if you use the .htaccess -->
9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
10
11 <title>apeTool</title>
12 <meta name="description" content="" />
13 <meta name="author" content="" />
14
15 <!-- Load up the default core JS and CSS files-->
16 <link rel='stylesheet' type='text/css' href='graphics.css'>
17 <link rel='stylesheet' type='text/css' href='structure.css'>
18 <!-- Use jQuery hosted from Google CDN -->
19 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
20 <script src="jquery-2.1.4.js"></script>
21 <script src='core.js'></script>
22 <script type="text/javascript">
23 window.onbeforeunload = function() {
24 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
25 };
26 </script>
27 <!-- Uncomment the following script for automatic loading of projects -->
28 <script>
29 url = 'example_eval/project.xml'; //Project XML document location
30 loadProjectSpec(url);
31 </script>
32
33 </head>
34
35 <body>
36 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
37 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
38 <div id='topLevelBody'>
39 <p>HTML5 APE Tool</p>
40 </div>
41 </body>
42 </html>