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

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

Reorganized for Node --- the SVN gods hate us all!

Lost all historical info on moved files, because SVN is a f *.

Also we have Node now, serving both the static content and forwarding
database requests.

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", location: "qed" },
20                    { name: "qed-client", location: "qed-client" }
21                ],
22                deps: [ "qed-client/index" ]
23            };
24        </script>
25        <script type="text/javascript" src="dojo/dojo.js"></script>
26        <div id="content" class="page" data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="region:'center'" style="width: 100%; height: 100%;">
27            <div class="topbar" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'top'">
28                <a href="#!/"><h1>QED</h1></a>
29                <div id="menu"></div>
30            </div>
31        </div>
32        <div id="toaster" data-dojo-type="qed-client/app/Notifications"></div>
33    </body>
34</html>
Note: See TracBrowser for help on using the repository browser.