| Line | |
|---|
| 1 | <html> |
|---|
| 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"> |
|---|
| 8 | var helpWin = null; |
|---|
| 9 | function closeWin(){ |
|---|
| 10 | if (helpWin != null){ |
|---|
| 11 | if(!helpWin.closed) |
|---|
| 12 | helpWin.close(); |
|---|
| 13 | } |
|---|
| 14 | } |
|---|
| 15 | |
|---|
| 16 | function 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> |
|---|
| 25 | <body> |
|---|
| 26 | #if not $varExists('simple') or not $simple |
|---|
| 27 | <p>[You are logged in as $user.username.]</p> |
|---|
| 28 | #end if |
|---|
| 29 | $body |
|---|
| 30 | #if not $varExists('simple') or not $simple |
|---|
| 31 | <hr /> |
|---|
| 32 | Questions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>. |
|---|
| 33 | #end if |
|---|
| 34 | </body> |
|---|
| 35 | </html> |
|---|
Note: See
TracBrowser
for help on using the repository browser.