Used .html as filename extension for templates

In user_profile we're actually extending template.html and not
template.php
This commit is contained in:
Michael K
2014-11-21 02:24:27 +01:00
parent e0c2f9e792
commit 47010419e6

View File

@@ -37,7 +37,7 @@ Using the [Twig](http://twig.sensiolabs.org/) library.
{% highlight text %} {% highlight text %}
{% raw %} {% raw %}
// template.php // template.html
<html> <html>
<head> <head>
@@ -56,7 +56,7 @@ Using the [Twig](http://twig.sensiolabs.org/) library.
{% highlight text %} {% highlight text %}
{% raw %} {% raw %}
// user_profile.php // user_profile.html
{% extends "template.html" %} {% extends "template.html" %}