Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.81 KB | None | 0 0
  1. //in Layout.ctp
  2. <section class="content">
  3.  <?php echo $this->fetch('/Common/contentHeader');?>
  4.  <?php echo $this->fetch('content'); ?>
  5. </section>
  6.  
  7.  
  8. //in /Common/contentHeader.ctp
  9.                 <section class="content-header">
  10.                     <h1>
  11.                         <?php echo $this->fetch('title'); ?>
  12.                         <small>Control panel</small>
  13.                     </h1>
  14.                     <ol class="breadcrumb">
  15.                         <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
  16.                         <li class="active">Blank page</li>
  17.                     </ol>
  18.                 </section>
  19.  
  20. //in my view with content
  21.  
  22. <?php $this->extend('/Common/contentHeader'); ?>
  23. <?php $this->assign('title', 'View Asset'); ?>
  24. <?php $this->start('contentHeader'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement