Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/studio/templates/skel.html
diff options
context:
space:
mode:
Diffstat (limited to 'studio/templates/skel.html')
-rw-r--r--studio/templates/skel.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/studio/templates/skel.html b/studio/templates/skel.html
new file mode 100644
index 0000000..447ae4b
--- /dev/null
+++ b/studio/templates/skel.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+<head>
+ <meta charset="UTF-8" />
+ <title></title>
+ <link rel="stylesheet" href="/static/css/main.css" type="text/css" />
+ <link rel="stylesheet" href="/static/css/sugar-theme/jquery-ui-1.8.15.custom.css" />
+ <script src="/static/js/jquery-1.6.2.js" type="text/javascript"></script>
+ <script src="/static/js/jquery-ui-1.8.15.custom.min.js" type="text/javascript"></script>
+ <script src="/static/js/websdk-1.js" type="text/javascript"></script>
+</head>
+<body>
+ <div id="content" class="bling">
+ </div>
+ <script>
+ window.onload = function() {
+ $('#content').fadeIn(700);
+ }
+ </script>
+</body>
+</html>