<!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 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; ?>
    <meta property="qc:admins" content="232452016063535256654" />
    <meta property="wb:webmaster" content="19a842dd7cc33de3" />
    <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/default/assets/plugins/bootstrap/css/bootstrap.min.css">
    <?php echo Theme::asset()->container('specific-css')->styles(); ?>

    <link rel="stylesheet" href="/themes/default/assets/plugins/ace/css/ace.min.css">
    <link rel="stylesheet" href="/themes/default/assets/css/font-awesome.min.css">
    <link rel="stylesheet" href="/themes/default/assets/css/main.css">
    <link rel="stylesheet" href="/themes/default/assets/css/header.css">
    <link rel="stylesheet" href="/themes/default/assets/css/footer.css">
    <link rel="stylesheet" href="/themes/default/assets/css/<?php echo Theme::get('color'); ?>/style.css">
    <?php echo Theme::asset()->container('custom-css')->styles(); ?>

    <script src="/themes/default/assets/plugins/ace/js/ace-extra.min.js"></script>
</head>
<body>

<header>
    <?php if(Module::exists('substation')  &&  Theme::get('is_substation') == 1): ?>
    <?php echo Theme::partial('substationheader'); ?>

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

    <?php endif; ?>
</header>

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



<section>
    <div class="container">
        <div class="row">
            <?php echo Theme::content(); ?>

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

</footer>

<script src="/themes/default/assets/plugins/jquery/jquery.min.js"></script>
<script src="/themes/default/assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="/themes/default/assets/js/nav.js"></script>
<script src="/themes/default/assets/js/common.js"></script>

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


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

</body>
