Merge pull request #29 from magnetikonline/patch-1

Fixed variable name typo in template/layout example.
pull/33/head
Mike Cao 12 years ago
commit 78f86a15c6

@ -443,7 +443,7 @@ It is common for websites to have a single layout template file with interchangi
```php
Flight::render('header', array('heading' => 'Hello'), 'header_content');
Flight::render('body', array('message' => 'World'), 'body_content');
Flight::render('body', array('body' => 'World'), 'body_content');
```
Your view will then have saved variables called `header_content` and `body_content`. You can then render your layout by doing:

Loading…
Cancel
Save