<!DOCTYPE html>
<html lang="en" class="app">
<head>
  <meta charset="utf-8" />
  <title><?php echo e(Theme::get('title')); ?></title>
  <meta name="keywords" content="<?php echo e(Theme::get('keywords')); ?>">
  <meta name="description" content="<?php echo e(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()->scripts(); ?>

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

  <![endif]-->
</head>
<body>
  <section id="content">
    <?php echo Theme::content(); ?>

  </section>

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

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


</body>
</html>