<!DOCTYPE html>
<html lang="en" class="app">
<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()->scripts(); ?>

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

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

  </section>
  <!-- footer -->
  <footer id="footer">
    <div class="text-center padder clearfix">
      <p>
        <small>Kay Rules<br>&copy; <?php echo date('Y'); ?></small>
      </p>
    </div>
  </footer>

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

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


</body>
</html>