Moved the footer and header templates to the component directory

This commit is contained in:
Alex Tselegidis 2021-12-13 07:34:51 +01:00
parent 271be99f05
commit 885dcbf5c8
6 changed files with 4 additions and 4 deletions

View file

@ -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) ?>;

View file

@ -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>