Skip to content

Instantly share code, notes, and snippets.

@juriansluiman
Created November 25, 2011 15:11
Show Gist options
  • Save juriansluiman/1393738 to your computer and use it in GitHub Desktop.
Save juriansluiman/1393738 to your computer and use it in GitHub Desktop.
Three step based view
<?php echo $this->doctype() ?>
<html>
<head>
<?php echo $this->headTitle() ?>
<?php echo $this->headMeta() ?>
<?php echo $this->headLink() ?>
<?php echo $this->headScript() ?>
</head>
<body>
<?php echo $this->raw('layout'); ?>
</body>
</html>
<header>
<?php echo $this->raw('title'); ?>
</header>
<section>
<?php echo $this->raw('content'); ?>
</section>
<footer>
<?php echo $this->raw('footer'); ?>
</footer>
<article>
Lorem ipsum
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment