From 847facf04446ab5ca01faceb2a74162b8d3c5a0d Mon Sep 17 00:00:00 2001 From: Hari K T Date: Wed, 17 Aug 2016 23:04:46 +0530 Subject: [PATCH] render method don't need extension .php to locate the file. Fixes #74 . --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95a953d..725b9fc 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ In addition, the `setSection()` method can be used to set the section body direc ```php setSection('local-nav', $this->render('_local-nav.php')); +$this->setSection('local-nav', $this->render('_local-nav')); ?> ```