source: Dev/trunk/src/index.html @ 451

Last change on this file since 451 was 451, checked in by hendrikvanantwerpen, 12 years ago

Reorganizing for builds.

Mixing server and client doesn't play nice with builds. I'm going to
seperate them even more, so they don't share a Dojo version.

File size: 1.4 KB
RevLine 
[443]1<!DOCTYPE html>
2<html>
3    <head>
4        <title>QED - Researcher</title>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6        <link rel="stylesheet" type="text/css" href="qed-client/css/qed.css" />
7    </head>
8    <body class="dijitReset claro" id="rft">
9        <script type="text/javascript">
10            var dojoConfig = {
11                baseUrl: ".",
12                async: true,
13                parseOnLoad: false,
14                isDebug: true,
15                packages: [
16                    { name: "dojo", location: "dojo" },
17                    { name: "dijit", location: "dijit" },
18                    { name: "dojox", location: "dojox" },
19                    { name: "qed-client", location: "qed-client" }
20                ],
21                deps: [ "qed-client/index" ]
22            };
23        </script>
24        <script type="text/javascript" src="dojo/dojo.js"></script>
25        <div id="content" class="page" data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="region:'center'" style="width: 100%; height: 100%;">
26            <div class="topbar" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'top'">
27                <a href="#!/"><h1>QED</h1></a>
28                <div id="menu"></div>
29            </div>
30        </div>
31        <div id="toaster" data-dojo-type="qed-client/app/Notifications"></div>
32    </body>
33</html>
Note: See TracBrowser for help on using the repository browser.