Updated {% static %} tag examples in docs to use single quotes where appropriate.

This commit is contained in:
Nikita Sobolev 2020-11-02 12:34:24 +03:00 committed by GitHub
parent c8785b473f
commit 42f3fafdfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -307,7 +307,7 @@ Here's what the "base.html" template, including the use of :doc:`static files
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<img src="{% static "images/sitelogo.png" %}" alt="Logo">
<img src="{% static 'images/sitelogo.png' %}" alt="Logo">
{% block content %}{% endblock %}
</body>
</html>