source: Dev/branches/rest-dojo-ui/client/index.html @ 311

Last change on this file since 311 was 311, checked in by hendrikvanantwerpen, 13 years ago

[Client] Use toaster to show errors from server
[Client] Create widget for mainmenu, cleaner loading of index.html now.
[Server] Renamed answerset datetime to more meaningful creationdate

File size: 1.3 KB
Line 
1<!DOCTYPE html>
2<html>
3    <head>
4        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5        <title>Research Facilitator Tool</title>
6        <link rel="stylesheet" type="text/css" href="dojotoolkit/dijit/themes/claro/claro.css" />
7        <link rel="stylesheet" type="text/css" href="dojotoolkit/dojox/grid/resources/Grid.css" />
8        <link rel="stylesheet" type="text/css" href="dojotoolkit/dojox/grid/resources/claroGrid.css" />
9        <link rel="stylesheet" type="text/css" href="dojotoolkit/dojox/widget/Toaster/Toaster.css" />
10        <link rel="stylesheet" type="text/css" href="rft/css/main.css" />
11        <script type="text/javascript" src="dojotoolkit/dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: false, tlmSiblingOfDojo: false, isDebug: true, baseUrl: '', packagePaths: {'dojotoolkit':['dojo','dijit', 'dojox'], '.':['rft']}"></script>
12        <script type="text/javascript" src="rft/run.js"></script>
13    </head>
14    <body class="claro">
15        <div id="header" class="mainHeader">
16            <div id="menu" class="mainMenu"  data-dojo-type="rft.ui.MainMenu">
17            </div>
18        </div>
19        <div id="content" data-dojo-type="dijit.layout.ContentPane" style="width: 100%; height: 100%;">
20        </div>
21        <div id="toaster" data-dojo-type="rft.ui.Notifications">
22        </div>
23    </body>
24</html>
Note: See TracBrowser for help on using the repository browser.