<!DOCTYPE html>
<html lang="en" class="">
<head>
  <meta charset="utf-8" />
  <title><?php echo Theme::get('title'); ?></title>
  <meta name="keywords" content="<?php echo Theme::get('keywords'); ?>">
  <meta name="description" content="<?php echo Theme::get('description'); ?>">
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> 
  <?php echo Theme::asset()->styles(); ?>

  <?php echo Theme::asset()->container('post-styles')->styles(); ?>

  <?php echo Theme::asset()->scripts(); ?>

  <!--[if lt IE 9]>
    <?php echo Theme::asset()->container('ie9')->scripts(); ?>

  <![endif]-->
</head>
<body>

    <section id="top-menu">
        <?php echo Theme::partial('menu-top'); ?>

    </section>

	<section id="content">
        <div style="margin-top:65px;">
	        <?php echo Theme::content(); ?>

        </div>
	</section>

    <section id="footer">
        <?php if(Request::url() === '/public/'): ?>
            <?php echo Theme::partial('footer'); ?>

        <?php endif; ?>
    </section>

  <?php echo Theme::asset()->container('core-scripts')->scripts(); ?>

  <?php echo Theme::asset()->container('post-scripts')->scripts(); ?>


</body>
</html>