Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/app/templates/hello.html
blob: ca215c5eceb739735e1d89f6b261d9d073e827cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>