Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/app/templates/hello.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/hello.html')
-rw-r--r--app/templates/hello.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/templates/hello.html b/app/templates/hello.html
new file mode 100644
index 0000000..ca215c5
--- /dev/null
+++ b/app/templates/hello.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML>
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:py="http://genshi.edgewall.org/">
+<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.16.sugar.css" />
+ <script src="/static/js/jquery-1.6.2.js" type="text/javascript"></script>
+ <script src="/static/js/jquery-ui-1.8.16.sugar.min.js" type="text/javascript"></script>
+ <script src="/static/js/jquery.corner.js" type="text/javascript"></script>
+ <script src="/static/js/websdk-1.js" type="text/javascript"></script>
+ <style>
+ #message {
+ display: none;
+ font-weight: bold;
+ };
+ </style>
+</head>
+<body>
+ <p id="message">
+ ${get_flashed_messages()}
+ </p>
+ <script>
+ window.onload = function() {
+ $("#message").center().fadeIn(5000);
+ }
+ </script>
+</body>
+</html>