layout skeleton

 avatar
unknown
php
2 years ago
880 B
2
Indexable
<?= $this->include('Views/layouts/header') ?>

<style>
    /* You can make your own css styling */
</style>

<body>

    <div id="wrapper">

        <!-- Sidebar -->
        <?= $this->include('Views/layouts/marketplace/sidebar2') ?>

        <!-- Page Content -->
        <div id="page-content-wrapper">

            <!-- Include Navbar -->
            <?= $this->include('Views/layouts/marketplace/navbar2') ?>

            <div class="container">
                CONTENT HERE
            </div>

        </div>
    </div>
    <!-- Include Footer -->
    <?= $this->include('Views/layouts/marketplace/footer') ?>

    <!-- Include Jquery -->
    <?= $this->include('Views/layouts/jquery') ?>

    <!-- Include Modal Login -->
    <?= $this->include('Views/layouts/modal/login_register') ?>

    <script>
        // You can make your own js script
    </script>

</body>

</html>
Editor is loading...