<?php
  // Print xml version line correctly
  print '<?xml version="1.0" encoding="utf-8"?>';
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <!-- Page metadata -->
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
  // Add a timed refresh to certain pages
  $path = $HTTP_SERVER_VARS['SCRIPT_NAME'];
  if (($_GET['act'] == "action" && substr_count($path,'summary.php'))
     || substr_count($path,'unassignedissues.php')
     || substr_count($path,'myissues.php')
     || substr_count($path,'mysitesissues.php'))
{
?>
    <meta http-equiv="Refresh" content="<?php echo 120; ?>">
<?php
}
?>
        
    <!-- Stylesheets -->
    <link rel="stylesheet" type="text/css" media="print"
      href="share/themes/blue/css/print.css" />
    <link rel="stylesheet" type="text/css" media="screen"
      href="share/themes/blue/css/screen.css" />
          
    <!-- General links -->
    <link rel="Author" href="mailto:davethorne@gmail.com" />
    <link rel="Help" href="docs/index.html" />
    <link rel="alternate" type="application/rss+xml"
      href="rssfeed.php" title="Unassigned Issues Feed">
  </head>
  
  <body>