πŸ“„Page Structure

<?php include '../layouts/session.php'; ?>
<?php include '../layouts/main.php'; ?>

  <head>
    <?php includeFileWithVariables('../layouts/head-page-meta.php', array('title' => 'Home')); ?>
    <!-- map-vector css -->
    <link rel="stylesheet" href="../assets/css/plugins/jsvectormap.min.css">
    <?php include '../layouts/head-css.php'; ?>
  </head>
  <!-- [Head] end -->

  <body >
    <?php include '../layouts/layout-vertical.php'; ?>

    <!-- [ Main Content ] start -->
    <div class="pc-container">
      <div class="pc-content">
        <?php includeFileWithVariables('../layouts/breadcrumb.php', array('pagetitle' => 'Home', 'title' => 'Dashboard')); ?>
        <!-- [ Main Content ] start -->
       

      </div>
    </div>
    <!-- [ Main Content ] end -->
    <?php include '../layouts/footer-block.php'; ?>
    <?php include '../layouts/customizer.php'; ?>
    <!-- [Page Specific JS] start -->
    <?php include '../layouts/footer-js.php'; ?>
  </body>
  <!-- [Body] end -->
</html>

Layout settings

You can change the default layout in the routers/routes.js file in the body tag

Attribute
Description

data-pc-preset= "preset-1"

To set the your primary theme color you can change ['preset-1' to 'preset-10'] for different color.

data-pc-sidebar-theme = "light"

To set the Light color left Sidebar.

data-pc-sidebar-theme = "dark"

To set the Light color dark Sidebar.

data-pc-sidebar-caption = "true"

To set the caption on.

data-pc-sidebar-caption = "false"

To set the caption off.

data-pc-direction = "ltr"

To set the layout direction left to right.

data-pc-direction = "rtl"

To set the layout direction right to left.

data-pc-theme = "light"

To set the layout theme light.

data-pc-theme = "dark"

To set the layout theme dark.

Last updated