<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title><?php echo Theme::get('title'); ?></title>
    <meta name="description" content="">
    <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/main.css">
    <link rel="stylesheet" href="/themes/black/assets/css/index/index.css">
    <link rel="stylesheet" href="/themes/black/assets/css/header.css">
    <link rel="stylesheet" href="/themes/black/assets/css/footer.css">
    <link rel="stylesheet" href="/themes/black/assets/css/usercenter/finance/finance-layout.css">
    <link rel="stylesheet" href="/themes/black/assets/css/<?php echo Theme::get('color'); ?>/style.css">
    <link rel="stylesheet" href="/themes/black/assets/css/<?php echo Theme::get('color'); ?>/user.css">
    <?php echo Theme::asset()->container('custom-css')->styles(); ?>

</head>
<body>
<header>
    <div class="header-top">
        <div class="container clearfix col-left">

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


        </div>
    </div>
</header>

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

</section>

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

</footer>


<script src="/themes/black/assets/js/doc/jquery.min.js"></script>
<script src="/themes/black/assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="/themes/black/assets/js/common.js"></script>
<?php /*<script src="/themes/black/assets/js/usercenter.js"></script>*/ ?>
<?php echo Theme::asset()->container('specific-js')->scripts(); ?>

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


</body>
</html>