mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
26 lines
894 B
HTML
26 lines
894 B
HTML
<div class="layout responsive-sidebar">
|
|
<div class="layout-cell">
|
|
<div class="padded-container">
|
|
|
|
<!-- Breadcrumb -->
|
|
<?php if ($breadcrumbContent = Block::placeholder('breadcrumb')): ?>
|
|
<div class="control-breadcrumb">
|
|
<?= $breadcrumbContent ?>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<?= Block::placeholder('form-contents') ?>
|
|
</div>
|
|
</div>
|
|
<div class="layout-cell width-300 form-sidebar control-scrollpanel">
|
|
<div class="layout-relative">
|
|
<div class="layout-absolute">
|
|
<div class="control-scrollbar" data-control="scrollbar">
|
|
<div class="padded-container">
|
|
<?= Block::placeholder('form-sidebar') ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |