56 lines
2.0 KiB
PHP
56 lines
2.0 KiB
PHP
|
|
<?php
|
|
require_once 'partials/header.php';
|
|
?>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<nav id="sidebar" class="col-md-3 col-lg-2 d-md-block bg-light sidebar collapse">
|
|
<div class="position-sticky pt-3">
|
|
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
|
|
<span>Components</span>
|
|
</h6>
|
|
<ul class="nav flex-column" id="component-list">
|
|
<li class="nav-item" data-component="header">
|
|
<a class="nav-link" href="#">
|
|
Header
|
|
</a>
|
|
</li>
|
|
<li class="nav-item" data-component="hero">
|
|
<a class="nav-link" href="#">
|
|
Hero Section
|
|
</a>
|
|
</li>
|
|
<li class="nav-item" data-component="gallery">
|
|
<a class="nav-link" href="#">
|
|
Gallery
|
|
</a>
|
|
</li>
|
|
<li class="nav-item" data-component="footer">
|
|
<a class="nav-link" href="#">
|
|
Footer
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="col-md-9 ms-sm-auto col-lg-10 px-md-4">
|
|
<div id="canvas" class="p-3 border bg-light" style="min-height: 80vh;">
|
|
<!-- Components will be dropped here -->
|
|
<div class="d-flex justify-content-center align-items-center h-100">
|
|
<p class="text-muted">Click on a component to add it to the page.</p>
|
|
</div>
|
|
|
|
</div>
|
|
<button id="save-page" class="btn btn-primary mt-3">Save Page</button>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
<?php
|
|
require_once 'partials/footer.php';
|
|
?>
|