mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
Moved the footer and header templates to the component directory
This commit is contained in:
parent
271be99f05
commit
885dcbf5c8
6 changed files with 4 additions and 4 deletions
|
@ -30,11 +30,11 @@
|
|||
</head>
|
||||
<body>
|
||||
|
||||
<?php require 'backend_header.php' ?>
|
||||
<?php component('backend_header') ?>
|
||||
|
||||
<?php slot('content') ?>
|
||||
|
||||
<?php require 'backend_footer.php' ?>
|
||||
<?php component('backend_footer') ?>
|
||||
|
||||
<script>
|
||||
const EALang = <?= json_encode($this->lang->language) ?>;
|
||||
|
|
|
@ -45,11 +45,11 @@
|
|||
<div class="row wrapper">
|
||||
<div id="book-appointment-wizard" class="col-12 col-lg-10 col-xl-8">
|
||||
|
||||
<?php require 'booking_header.php' ?>
|
||||
<?php component('booking_header') ?>
|
||||
|
||||
<?php slot('content') ?>
|
||||
|
||||
<?php require 'booking_footer.php' ?>
|
||||
<?php component('booking_footer') ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue