Last active
November 9, 2017 01:34
-
-
Save b1nary/a5284ff6bc99d07594f15feaa9ce874e to your computer and use it in GitHub Desktop.
PHP yield?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php layout("Title goes here"){ ?> | |
Content in here should yield into the body | |
<?php } ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> | |
© Blah | |
</footer> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment