From: Fabien Potencier Date: Sat, 18 Dec 2010 13:20:48 +0000 (+0100) Subject: fixed markup X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=f9507d8883e4a695dac19b6aefb06fc0319e0090;p=konrad%2Ftwig.git fixed markup --- diff --git a/doc/recipes.rst b/doc/recipes.rst index 47ecb40..2099fe0 100644 --- a/doc/recipes.rst +++ b/doc/recipes.rst @@ -56,7 +56,7 @@ Let's say that your templates are loaded from both ``.../templates/mysite`` and ``.../templates/default`` in this order. The ``page.twig`` template, stored in ``.../templates/default`` reads as follows: -.. node-block:: jinja +.. code-block:: jinja {# page.twig #} {% extends "layout.twig" %} @@ -68,7 +68,7 @@ You can replace this template by putting a file with the same name in ``.../templates/mysite``. And if you want to extend the original template, you might be tempted to write the following: -.. node-block:: jinja +.. code-block:: jinja {# page.twig in .../templates/mysite #} {% extends "page.twig" %} {# from .../templates/default #} @@ -84,7 +84,7 @@ time you will use the "normal" paths, but in the special case of wanting to extend a template with an overriding version of itself we can reference its parent's full, unambiguous template path in the extends tag: -.. node-block:: jinja +.. code-block:: jinja {# page.twig in .../templates/mysite #} {% extends "default/page.twig" %} {# from .../templates #}