Welcome Guest, Not a member yet? Register   Sign In
Integrating a Template with CodeIgniter 3
#3

I am using AdminLTE as admin console and I have split the template in multiple files:
  • Topnavigation
  • leftnavigation
  • footer
  • and main page
On the main page all necessary css and scripts are loaded. Then I put the different template pieces together:


Code:
<body class="hold-transition skin-black sidebar-mini">
      <div class="wrapper">
        <?= $top_navigation ?>
        <?= $side_navigation ?>
          <div id="content">
            <div class="content-wrapper">
              <section class="content-header">
                <h1>
                  <?= $page_title ?>                 
                </h1>
                <ol class="breadcrumb">
                  <?php echo $breadcrumb; ?>
                </ol>
              </section>
              <?= $content ?>
            </div>
            <?= $footer ?>
          </div>
      </div>
</body>

I hope this helps you.
Reply


Messages In This Thread
RE: Integrating a Template with CodeIgniter 3 - by JustJohnQ - 11-05-2022, 02:33 AM



Theme © iAndrew 2016 - Forum software by © MyBB