{{ show_user(user) }}
{% endfor %}
-You can also specify more then one value:
+You can also specify more than one value:
.. sourcecode:: html+jinja
The most powerful part of Jinja is template inheritance. Template inheritance
allows you to build a base "skeleton" template that contains all the common
-elements of your site and defines **blocks** or **markers** that child
+elements of your site and defines **blocks** that child
templates can override.
Sounds complicated but is very basic. It's easiest to understand it by starting
</div>
<div id="footer">
- {% block "footer" %}
+ {% block footer %}
© Copyright 2006 by <a href="http://mydomain.tld">myself</a>.
{% endblock %}
</div>