mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
51 lines
2.0 KiB
HTML
51 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="no-js <?= $this->makeLayoutPartial('browser_detector') ?>">
|
|
<head>
|
|
<?= $this->makeLayoutPartial('head') ?>
|
|
</head>
|
|
<body class="<?= $this->bodyClass ?>">
|
|
<div id="layout-canvas">
|
|
<div class="layout">
|
|
|
|
<!-- Main Menu -->
|
|
<div class="layout-row min-size">
|
|
<?= $this->makeLayoutPartial('mainmenu') ?>
|
|
</div>
|
|
|
|
<div class="layout-row">
|
|
<div class="layout">
|
|
|
|
<!-- Side Navigation -->
|
|
<?= $this->makeLayoutPartial('sidenav') ?>
|
|
|
|
<!-- Side panel -->
|
|
<?php if ($sidePanelContent = Block::placeholder('sidepanel')): ?>
|
|
<div class="layout-cell width-300 hide-on-small" id="layout-side-panel" data-control="layout-sidepanel">
|
|
<?= $sidePanelContent ?>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<!-- Content Body -->
|
|
<div class="layout-cell layout-container" id="layout-body" >
|
|
<div class="layout-relative">
|
|
<!-- Flash Messages -->
|
|
<div id="layout-flash-messages"><?= $this->makeLayoutPartial('flash_messages') ?></div>
|
|
|
|
<!-- Breadcrumb -->
|
|
<?php if ($breadcrumbContent = Block::placeholder('breadcrumb')): ?>
|
|
<div class="control-breadcrumb">
|
|
<?= $breadcrumbContent ?>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<?= Block::placeholder('body') ?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |