Fixed #29038 -- Removed closing slash from HTML void tags.

This commit is contained in:
Jon Dufresne 2018-01-20 23:09:10 -08:00 committed by Tim Graham
parent 4b0f39d9fb
commit ff05de760c
112 changed files with 1487 additions and 1483 deletions

View file

@ -30,7 +30,7 @@ Configuring static files
.. code-block:: html+django
{% load static %}
<img src="{% static "my_app/example.jpg" %}" alt="My image"/>
<img src="{% static "my_app/example.jpg" %}" alt="My image">
4. Store your static files in a folder called ``static`` in your app. For
example ``my_app/static/my_app/example.jpg``.