60 lines
2.7 KiB
PHP
60 lines
2.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="<?php echo e(\App::getLocale()); ?>" dir="<?php echo e(htmldir()); ?>">
|
|
<head>
|
|
<base href="<?php echo e(url('/')); ?>/" />
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title><?php echo $__env->yieldContent('title', trans('app.application_title')); ?></title>
|
|
<link rel="manifest" href="manifest.webmanifest">
|
|
|
|
<link rel="stylesheet" href="<?php echo e(asset(mix('css/app-'.htmldir().'.css'))); ?>">
|
|
|
|
<?php if(Route::currentRouteName() == 'settings.subscriptions.upgrade' || Route::currentRouteName() == 'settings.subscriptions.confirm'): ?>
|
|
<link rel="stylesheet" href="<?php echo e(asset(mix('css/stripe.css'))); ?>">
|
|
<?php endif; ?>
|
|
|
|
<link rel="shortcut icon" href="img/favicon.png">
|
|
<script>
|
|
window.Laravel = <?php echo \Safe\json_encode([
|
|
'locale' => \App::getLocale(),
|
|
'htmldir' => htmldir(),
|
|
'profileDefaultView' => auth()->user()->profile_active_tab,
|
|
'timezone' => auth()->user()->timezone,
|
|
'env' => \App::environment(),
|
|
]);; ?>
|
|
|
|
</script>
|
|
</head>
|
|
<body data-account-id="<?php echo e(auth()->user()->account_id); ?>" class="bg-gray-monica min-vh-100 flex flex-column">
|
|
|
|
<div id="app" class="flex-grow-1">
|
|
<?php if(Route::currentRouteName() != 'settings.subscriptions.confirm'): ?>
|
|
<?php echo $__env->make('partials.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
<?php echo $__env->make('partials.subscription', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
<?php endif; ?>
|
|
<?php echo $__env->yieldContent('content'); ?>
|
|
</div>
|
|
|
|
<?php if(Route::currentRouteName() != 'settings.subscriptions.confirm'): ?>
|
|
<?php echo $__env->make('partials.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php $__env->startPush('scripts'); ?>
|
|
<script src="<?php echo e(asset(mix('js/manifest.js'))); ?>"></script>
|
|
<script src="<?php echo e(asset(mix('js/vendor.js'))); ?>"></script>
|
|
<?php $__env->stopPush(); ?>
|
|
|
|
|
|
<?php if(Route::currentRouteName() != 'settings.subscriptions.upgrade' && Route::currentRouteName() != 'settings.subscriptions.confirm'): ?>
|
|
<?php $__env->startPush('scripts'); ?>
|
|
<script src="<?php echo e(asset(mix('js/app.js'))); ?>"></script>
|
|
<?php $__env->stopPush(); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php echo $__env->yieldPushContent('scripts'); ?>
|
|
|
|
</body>
|
|
</html>
|
|
<?php /**PATH /var/www/html/resources/views/layouts/skeleton.blade.php ENDPATH**/ ?>
|