]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fixed improperly closed tag in menu example in tricks.rst 207/head
authorEugene Kalinin <e.v.kalinin@gmail.com>
Tue, 14 May 2013 02:59:53 +0000 (06:59 +0400)
committerEugene Kalinin <e.v.kalinin@gmail.com>
Tue, 14 May 2013 02:59:53 +0000 (06:59 +0400)
docs/tricks.rst

index 566575e52d94764361c0c2b44ecbe999ec935225..5427a3e8f1edff48fd140a9e1d9c24323249108d 100644 (file)
@@ -75,7 +75,7 @@ sense to defined a default for that variable::
     <ul id="navigation">
     {% for href, id, caption in navigation_bar %}
       <li{% if id == active_page %} class="active"{% endif
-      %}><a href="{{ href|e }}">{{ caption|e }}</a>/li>
+      %}><a href="{{ href|e }}">{{ caption|e }}</a></li>
     {% endfor %}
     </ul>
     ...