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 %} {% endif %}
<ul class=entries> <ul class=entries>
{% for entry in entries %} {% for entry in entries %}
<li><h2>{{ entry.title }}</h2>{{ entry.text|safe }} <li><h2>{{ entry.title }}</h2>{{ entry.text|safe }}</li>
{% else %} {% else %}
<li><em>Unbelievable. No entries here so far</em> <li><em>Unbelievable. No entries here so far</em></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endblock %} {% endblock %}

Loading…
Cancel
Save