mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Added missing slots to the backend layout file
This commit is contained in:
parent
4a49800674
commit
12a12caa36
1 changed files with 6 additions and 0 deletions
|
@ -13,6 +13,9 @@
|
|||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title><?= $page_title ?? lang('backend_section') ?> | Easy!Appointments</title>
|
||||
|
||||
<?php slot('meta') ?>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/vendor/bootstrap/bootstrap.min.css') ?>">
|
||||
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/vendor/jquery-ui-dist/jquery-ui.min.css') ?>">
|
||||
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/vendor/trumbowyg/trumbowyg.min.css') ?>">
|
||||
|
@ -22,6 +25,8 @@
|
|||
<link rel="icon" type="image/x-icon" href="<?= asset_url('assets/img/favicon.ico') ?>">
|
||||
<link rel="icon" sizes="192x192" href="<?= asset_url('assets/img/logo.png') ?>">
|
||||
|
||||
<?php slot('styles') ?>
|
||||
|
||||
<script>
|
||||
// Global JavaScript Variables - Used in all backend pages.
|
||||
var availableLanguages = <?= json_encode(config('available_languages')) ?>;
|
||||
|
@ -52,5 +57,6 @@
|
|||
|
||||
<?php require 'backend_footer.php' ?>
|
||||
|
||||
<?php slot('scripts') ?>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue