<?php
global $user;
?><!DOCTYPE html>
<html lang="<?php echo $language->language ?>">
<head>
<?php print $head ?>
<title><?php print $head_title ?></title>
<?php print $styles ?>
<?php print $scripts ?>
</head>
<body class="<?php print $body_classes; ?>">
<div id="header">
<div class="wrapper">
<h1 class="logo">
<?php print $site_name ?>
</h1>
</div>
</div>
<div id="body">
<div class="wrapper">
<div id="global-error">
<?php if (!empty($messages)): print $messages; endif; ?>
</div>
<div id="main">
<div id="content">
<?php if (!empty($title)): ?>
<div class="section-header">
<h2><?php print $title; ?></h2>
</div>
<?php endif; ?>
<?php print $content ?>
</div>
</div>
</div>
</div>
<div id="footer">
</div>
</body>
</html>