From: Benjamin Wiegand Date: Mon, 5 Mar 2007 19:12:28 +0000 (+0100) Subject: [svn] updated jinja docs X-Git-Tag: 2.0rc1~459 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7c3be90e60f8740f7d79a132a87f6615ee40e3c0;p=jinja2.git [svn] updated jinja docs --HG-- branch : trunk --- diff --git a/docs/src/designerdoc.txt b/docs/src/designerdoc.txt index c3db752..c872083 100644 --- a/docs/src/designerdoc.txt +++ b/docs/src/designerdoc.txt @@ -280,7 +280,7 @@ Now you can use it from everywhere in the code by passing it an item: {{ show_user(user) }} {% endfor %} -You can also specify more then one value: +You can also specify more than one value: .. sourcecode:: html+jinja @@ -298,7 +298,7 @@ Inheritance 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 @@ -327,7 +327,7 @@ document that you might use for a simple two-column page. It's the job of