source: trunk/web/templates/skeleton.tmpl @ 139

Last change on this file since 139 was 139, checked in by ecprice, 17 years ago

Help!

File size: 857 bytes
RevLine 
[113]1<html>
[139]2<head><title>$title</title>
3  <link href="/static/favicon.ico" type="image/x-icon" rel="shortcut icon">
4  <style media="screen" type="text/css">
5    @import "static/css/all.css";
6  </style>
7  <script type="text/javascript">
8var helpWin = null;
9function closeWin(){
10        if (helpWin != null){
11                if(!helpWin.closed)
12                        helpWin.close();
13        }
14}
15
16function helppopup(name){
17   closeWin()
18   helpWin = window.open("help?simple=true&subject="+encodeURIComponent(name), "HMMTHelp",
19"status, height = 300, width = 400");
20   if (window.focus){helpWin.focus();}
21   return false;
22}
23</script>
24</head>
[113]25<body>
[139]26#if not $varExists('simple') or not $simple
[113]27<p>[You are logged in as $user.username.]</p>
[139]28#end if
[113]29$body
[139]30#if not $varExists('simple') or not $simple
[113]31<hr />
32Questions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>.
[139]33#end if
[113]34</body>
35</html>
Note: See TracBrowser for help on using the repository browser.