Browse Source

Close <li> tag in tutorial (#2199)

Change was merged in the example code but wasn't changed in the docs. c54d67adee
pull/2201/head
Elton Law 8 years ago committed by Adrian
parent
commit
06112a555a
  1. 4
      docs/tutorial/templates.rst

4
docs/tutorial/templates.rst

@ -79,9 +79,9 @@ HTTP method:
{% endif %}
<ul class=entries>
{% for entry in entries %}
<li><h2>{{ entry.title }}</h2>{{ entry.text|safe }}
<li><h2>{{ entry.title }}</h2>{{ entry.text|safe }}</li>
{% else %}
<li><em>Unbelievable. No entries here so far</em>
<li><em>Unbelievable. No entries here so far</em></li>
{% endfor %}
</ul>
{% endblock %}

Loading…
Cancel
Save