<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title><?php echo $__env->yieldContent('title', e($title)); ?> - <?php echo e(siteSettings('siteName')); ?></title>
    <?php echo $__env->yieldContent('meta', '<meta name="description" content="'.siteSettings('description').'">'); ?>
    <link rel="shortcut icon" href="<?php echo e(asset('favicon.ico')); ?>" type="image/x-icon"/>
    <!--[if IE 8]>
        <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <link href='//fonts.googleapis.com/css?family=Lato:400,900italic,900,700,700italic,400italic,300italic,300,100italic,100' rel='stylesheet' type='text/css'>
    <?php echo HTML::style('static/css/main.css'); ?>

</head>
<body>
<?php echo $__env->make('master/notices', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php echo $__env->make('master.navbar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<div class="container">
    <?php echo $__env->yieldContent('content'); ?>
</div>
<?php echo $__env->make('master.footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php echo HTML::script('static/js/main.js'); ?>

<?php echo $__env->yieldContent('extra-js'); ?>
</body>
</html>