<?php
use Orchard\Service\SegmentAnalyticsTracking;
?>
<!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>
<?=$this->headMeta()?>

<?php
    $this->loadcss();
    $this->headLink()->appendStylesheet('/styles/orchAdminPrint.css');
    $this->loadjs();
?>
<?=$this->headTitle("OrchAdmin")?>
<?=$this->headLink()?>
<?=$this->headStyle()?>
<?=$this->headScript()?>
<?=$this->inlineScript()?>
<?php echo $this->partial('partials/site-analytics.phtml', array(
    "configs" => array(
        'consumerKey' => \Service_GoogleAnalyticsTracking::getTrackingCode(APPLICATION_ENV, 'oa'),
        'userId' => $_SESSION['S_USERID']
    )
));

echo $this->partial('partials/segment-analytics.phtml', array(
    'configs' => array(
        'key' => SegmentAnalyticsTracking::getKey('oa'),
        'userId' => $_SESSION['S_USERID']
    )
));

?>
</head>
<body scroll="no" bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

<div id="loginBox">
<!-- OrchAdmin Logo
*****************************************************************************-->
<div id="logo">
    <a href="/relationships.php"><h1>OrchAdmin</h1></a>
</div>

</div>
<?php
    // javascript apps
    echo $this->bottomScripts();
?>
</body>
</html>
