<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <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="csrf-token" content="<?php echo e(csrf_token()); ?>">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <?php /*<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=0">*/ ?>
    <?php if(isset(Theme::get('basis_config')['css_adaptive']) && Theme::get('basis_config')['css_adaptive'] == 1): ?>
        <meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=0">
    <?php else: ?>
        <meta name="viewport" content="initial-scale=0.1">
    <?php endif; ?>
    <link rel="shortcut icon" href="<?php echo e(Theme::asset()->url('images/favicon.ico')); ?>" />
    <!-- Place favicon.ico in the root directory -->
    <link rel="stylesheet" href="/themes/black/assets/plugins/bootstrap/css/bootstrap.min.css">
    <?php echo Theme::asset()->container('specific-css')->styles(); ?>

    <link rel="stylesheet" href="/themes/black/assets/plugins/ace/css/ace.min.css">
    <link rel="stylesheet" href="/themes/black/assets/css/font-awesome.min.css">
    <link rel="stylesheet" href="/themes/black/assets/css/index/index.css">
    <?php echo Theme::asset()->container('custom-css')->styles(); ?>

</head>
<body>

<header>
    <?php echo Theme::partial('homeheader'); ?>

</header>

    <?php echo Theme::content(); ?>


<footer>
    <?php echo Theme::partial('footer'); ?>

</footer>

<script src="/themes/black/assets/plugins/jquery/jquery.min.js"></script>
<script src="/themes/black/assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/themes/black/assets/plugins/jquery/modernizr.custom.97074.js"></script>
<script type="text/javascript" src="/themes/black/assets/plugins/jquery/jquery.hoverdir.js"></script>
<script type="text/javascript" src="/themes/black/assets/plugins/jquery/jquery.grid-a-licious.min.js"></script>
<script type="text/javascript" src="/themes/black/assets/plugins/jquery/jquery.barrager.min.js"></script>
<script type="text/javascript" src="/themes/black/assets/js/index.js"></script>
<script type="text/javascript" src="/themes/black/assets/js/common.js"></script>

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


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

</body>