Close <li> tag in tutorial (#2199)

Change was merged in the example code but wasn't changed in the docs. c54d67adee
This commit is contained in:
Elton Law 2017-03-05 07:07:49 -05:00 committed by Adrian
parent d9a28434af
commit 06112a555a

View file

@ -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 %}