2014-05-14 23:24:20 +10:00
|
|
|
<!DOCTYPE html>
|
2015-08-15 09:49:51 +10:00
|
|
|
<html lang="<?= App::getLocale() ?>" class="no-js <?= $this->makeLayoutPartial('browser_detector') ?>">
|
2014-05-14 23:24:20 +10:00
|
|
|
<head>
|
|
|
|
<?= $this->makeLayoutPartial('head') ?>
|
2019-02-25 12:56:55 -06:00
|
|
|
<?= $this->fireViewEvent('backend.layout.extendHead', ['layout' => 'default.htm']) ?>
|
2014-05-14 23:24:20 +10:00
|
|
|
</head>
|
|
|
|
<body class="<?= $this->bodyClass ?>">
|
|
|
|
<div id="layout-canvas">
|
|
|
|
<div class="layout">
|
|
|
|
|
|
|
|
<!-- Main Menu -->
|
|
|
|
<div class="layout-row min-size">
|
|
|
|
<?= $this->makeLayoutPartial('mainmenu') ?>
|
|
|
|
</div>
|
|
|
|
|
2015-07-07 21:37:18 -07:00
|
|
|
<?php $flyoutContent = Block::placeholder('sidepanel-flyout') ?>
|
|
|
|
|
2014-05-14 23:24:20 +10:00
|
|
|
<div class="layout-row">
|
2016-04-05 20:04:11 +10:00
|
|
|
<div class="layout flyout-container"
|
2015-07-07 21:37:18 -07:00
|
|
|
<?php if ($flyoutContent): ?>
|
|
|
|
data-control="flyout"
|
|
|
|
data-flyout-width="400"
|
|
|
|
data-flyout-toggle="#layout-sidenav"
|
|
|
|
<?php endif ?>
|
|
|
|
>
|
|
|
|
<?php if ($flyoutContent): ?>
|
|
|
|
<div class="layout-cell flyout"> <?= $flyoutContent ?></div>
|
|
|
|
<?php endif ?>
|
2014-05-14 23:24:20 +10:00
|
|
|
|
|
|
|
<!-- Side Navigation -->
|
|
|
|
<?= $this->makeLayoutPartial('sidenav') ?>
|
|
|
|
|
|
|
|
<!-- Side panel -->
|
|
|
|
<?php if ($sidePanelContent = Block::placeholder('sidepanel')): ?>
|
2019-08-09 16:07:32 +08:00
|
|
|
<div class="layout-cell w-350 hide-on-small" id="layout-side-panel" data-control="layout-sidepanel">
|
2014-05-14 23:24:20 +10:00
|
|
|
<?= $sidePanelContent ?>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
<!-- Content Body -->
|
2015-04-04 14:54:18 +11:00
|
|
|
<div class="layout-cell layout-container" id="layout-body">
|
2014-05-14 23:24:20 +10:00
|
|
|
<div class="layout-relative">
|
|
|
|
|
2014-11-12 07:33:58 +11:00
|
|
|
<div class="layout">
|
|
|
|
<?php if ($breadcrumbContent = Block::placeholder('breadcrumb')): ?>
|
2015-04-04 14:54:18 +11:00
|
|
|
<!-- Breadcrumb -->
|
2019-08-09 16:07:32 +08:00
|
|
|
<div class="control-breadcrumb">
|
2014-11-12 07:33:58 +11:00
|
|
|
<?= $breadcrumbContent ?>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
|
|
|
|
2015-04-04 14:54:18 +11:00
|
|
|
<!-- Content -->
|
2019-08-09 16:07:32 +08:00
|
|
|
<div class="layout-row">
|
2014-11-12 07:33:58 +11:00
|
|
|
<?= Block::placeholder('body') ?>
|
2014-05-14 23:24:20 +10:00
|
|
|
</div>
|
2014-11-12 07:33:58 +11:00
|
|
|
</div>
|
2014-05-14 23:24:20 +10:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-11-12 07:33:58 +11:00
|
|
|
|
|
|
|
<!-- Flash Messages -->
|
|
|
|
<div id="layout-flash-messages"><?= $this->makeLayoutPartial('flash_messages') ?></div>
|
|
|
|
|
2014-05-14 23:24:20 +10:00
|
|
|
</body>
|
|
|
|
</html>
|