Skip to content

Instantly share code, notes, and snippets.

@DarkMukke
Created November 21, 2012 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DarkMukke/4127528 to your computer and use it in GitHub Desktop.
Save DarkMukke/4127528 to your computer and use it in GitHub Desktop.
Sub layouts in Yii
#file : overall.php
<html>
<head> <title> stuff </title> </head>
<body>
<header>
this is my header
</header>
<?php echo $content; ?>
<footer>
this is my footer with copyright etc
</footer>
</body>
</html>
#file : someLayout.php
<?php
/**
* Created by Mukke's Brain.
*/
$this->beginContent( '//layouts/overall' );
?>
<section>
this is a layout specific sub section
</section>
<section id="mainContent">
<?php echo $content; ?>
</section>
<?php $this->endContent(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment