Welcome Guest, Not a member yet? Register   Sign In
Create a Layout-Template
#3

My central page looks like this:
Code:
<body class="hold-transition sidebar-mini">
<div class="wrapper"><!-- wrapper -->
<?= $this->include('Modules\Views\Admin\navigation') ?>
<?= $this->include('Modules\Views\Admin\sideNavigation') ?>
<div class="content-wrapper"><!-- /.content-wrapper -->
<?= view('Modules\Views\Admin\Header') ?>
<?= $this->renderSection('content') ?>
</div><!-- /.content-wrapper -->
<?= $this->include('Modules\Views\Admin\footer') ?>
</div><!-- ./wrapper -->
</body>

Then, any sub-page uses this format:
Code:
<?= $this->extend('Modules\Views\Admin\page') ?>
<?= $this->section('content') ?>

<p>All your code here</p>

<?= $this->endSection() ?>

This might not be perfect, but it works for me.
Reply


Messages In This Thread
Create a Layout-Template - by 4usol - 12-09-2024, 02:05 PM
RE: Create a Layout-Template - by ozornick - 12-09-2024, 11:42 PM
RE: Create a Layout-Template - by JustJohnQ - 12-10-2024, 01:34 AM
RE: Create a Layout-Template - by 4usol - 12-11-2024, 09:21 AM
RE: Create a Layout-Template - by JustJohnQ - 12-11-2024, 09:57 AM
RE: Create a Layout-Template - by 4usol - 12-11-2024, 10:45 AM
RE: Create a Layout-Template - by JustJohnQ - 12-12-2024, 01:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB