Skip to content

Instantly share code, notes, and snippets.

@b1nary
Last active November 9, 2017 01:34
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 b1nary/a5284ff6bc99d07594f15feaa9ce874e to your computer and use it in GitHub Desktop.
Save b1nary/a5284ff6bc99d07594f15feaa9ce874e to your computer and use it in GitHub Desktop.
PHP yield?
<?php layout("Title goes here"){ ?>
Content in here should yield into the body
<?php } ?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo yield(:title) ?></title>
</head>
<body>
<?php echo yield(:body) ?> %>
</body>
<footer>
&copy; Blah
</footer>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment