You are on page 1of 3

<?

php
print <<<EOT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>
EOT;
if (!$title) print "MIT Sigma Kappa";
else if ($title == "none") print "MIT Sigma Kappa";
else if ($sister) print "$title $subtitle: $sister";
else if ($article) print "SK News: $article";
else if ($subtitle) print "$title: $subtitle";
else print "$title | MIT Sigma Kappa";
print <<<EOT
</title>

<link rel="stylesheet" type="text/css" media="screen" href="/c/master.css" />


<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="screen" href="/c/ie.css" /><![endif]-->

EOT;
if ($morecss) print $morecss;

print <<<EOT
<link rel="shortcut icon" href="/images/favicon/favicon.ico" />
<script type="text/javascript" src="/c/prototype.js"></script>
<script type="text/javascript" src="/c/nav.js"></script>

EOT;
if ($scripts) print $scripts;
print <<<EOT

</head>

<body
EOT;
if ($bodyid) print " id=\"$bodyid\"";
print <<<EOT
>

<div id="wrap">

<div id="header">

<div id="logo">

EOT;
if ($bodyid == "home") print "<span href=\"/\" id=\"logotype\"><h1>Sigma Kappa: MIT Theta
Lambda</h1></span>";
else print "<a href=\"/\" id=\"logotype\"><h1>Sigma Kappa: MIT Theta Lambda</h1></a>";
print <<<EOT
<a id="login" href="http://sigmas.skmit.com/"><span>Sister Login</span></a>
</div>

<div id="nav">

<ul>
<li id="nabout" class="first"><a href="/about/">About SK</a><ul>
<li class="first"><a href="/about/thetalambda/">Our Chapter</a></li>
<li><a href="/about/philanthropy/">Philanthropy</a></li>
<li><a href="/about/social/">Social</a></li>
<li><a href="/about/officers/">Officers</a></li>
<li class="last"><a href="/about/nationals/">National</a></li>
</ul></li>
<li id="nsisters"><a href="/sisters/">Sisters</a><ul>
<li class="first"><a href="/sisters/2009/">2009</a></li>
<li><a href="/sisters/2010/">2010</a></li>
<li><a href="/sisters/2011/">2011</a></li>
<li><a href="/sisters/2012/">2012</a></li>
<li class="last"><a href="/sisters/involvement/">On
Campus</a></li>
</ul></li>
<li id="nrecruitment"><a href="/recruitment/">Recruitment</a><ul>
<li class="first"><a href="/recruitment/schedule/">2009
Schedule</a></li>
<li class="last"><a href="/recruitment/whysk/">Why Join SK</a></li>
</ul></li>
<li id="nscrapbook" class="last"><a href="/scrapbook/">Scrapbook</a><ul>
<li class="first"><a href="/scrapbook/news/">News</a></li>
<li class="last"><a href="/scrapbook/photos/">Photo Albums</a></li>
</ul></li>
</ul>
</div>

</div>

<div id="c">

<div id="main">

EOT;
if (!$title) print <<<EOT

<div id="ct"><h2>Sigma Kappa</h2></div>

EOT;
else if ($title == "none") print "";
else if ($subtitle) print <<<EOT

<div id="ct"><h2>$title</h2><h3>$subtitle</h3></div>

EOT;
else print <<<EOT

<div id="ct"><h2>$title</h2></div>

EOT;
?>

You might also like