Ignore:
Timestamp:
Oct 8, 2007, 3:37:59 AM (17 years ago)
Author:
ecprice
Message:

Help!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web/templates/skeleton.tmpl

    r113 r139  
    11<html>
    2 <head><title>$title</title></head>
     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>
    325<body>
     26#if not $varExists('simple') or not $simple
    427<p>[You are logged in as $user.username.]</p>
     28#end if
    529$body
     30#if not $varExists('simple') or not $simple
    631<hr />
    732Questions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>.
     33#end if
    834</body>
    935</html>
Note: See TracChangeset for help on using the changeset viewer.