From 47010419e61925a997ae378f6cf09ea23964174e Mon Sep 17 00:00:00 2001 From: Michael K Date: Fri, 21 Nov 2014 02:24:27 +0100 Subject: [PATCH] Used .html as filename extension for templates In user_profile we're actually extending template.html and not template.php --- _posts/08-04-01-Compiled-Templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/08-04-01-Compiled-Templates.md b/_posts/08-04-01-Compiled-Templates.md index 02aabee..8481eb2 100644 --- a/_posts/08-04-01-Compiled-Templates.md +++ b/_posts/08-04-01-Compiled-Templates.md @@ -37,7 +37,7 @@ Using the [Twig](http://twig.sensiolabs.org/) library. {% highlight text %} {% raw %} -// template.php +// template.html @@ -56,7 +56,7 @@ Using the [Twig](http://twig.sensiolabs.org/) library. {% highlight text %} {% raw %} -// user_profile.php +// user_profile.html {% extends "template.html" %}