Loading docs/intro/overview.txt +3 −2 Original line number Diff line number Diff line Loading @@ -276,12 +276,13 @@ Here's what the "base.html" template, including the use of :doc:`static files .. code-block:: html+django {% load static %} <html> <head> <title>{% block title %}{% endblock %}</title> </head> <body> <img src="{{ STATIC_URL }}images/sitelogo.png" alt="Logo" /> <img src="{% static "images/sitelogo.png" %}" alt="Logo" /> {% block content %}{% endblock %} </body> </html> Loading Loading
docs/intro/overview.txt +3 −2 Original line number Diff line number Diff line Loading @@ -276,12 +276,13 @@ Here's what the "base.html" template, including the use of :doc:`static files .. code-block:: html+django {% load static %} <html> <head> <title>{% block title %}{% endblock %}</title> </head> <body> <img src="{{ STATIC_URL }}images/sitelogo.png" alt="Logo" /> <img src="{% static "images/sitelogo.png" %}" alt="Logo" /> {% block content %}{% endblock %} </body> </html> Loading